:root {
  --bg: #edf3ff;
  --surface: #f9fbff;
  --surface-strong: #ffffff;
  --ink: #081737;
  --muted: #4b5f83;
  --primary: #1d8df7;
  --primary-strong: #0f2f78;
  --accent: #2f9cfb;
  --line: #c7d7f0;
  --ok: #0d8e57;
  --error: #c63645;
  --shadow: 0 24px 60px rgba(8, 23, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, #d8e8ff 0%, transparent 42%),
    radial-gradient(circle at 90% 85%, #c8ddff 0%, transparent 36%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.ambient-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.55;
}

.shape-one {
  width: 320px;
  height: 320px;
  background: #14397f;
  top: -120px;
  right: 5vw;
}

.shape-two {
  width: 260px;
  height: 260px;
  background: #2f9cfb;
  bottom: 12vh;
  left: -80px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(237, 243, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199, 215, 240, 0.8);
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-word {
  color: #07163d;
  font-weight: 800;
}

.brand-word span {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  opacity: 0.9;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font: inherit;
}

.hero {
  padding: 5.8rem 0 3.3rem;
}

.hero-logo-wrap {
  margin-bottom: 1rem;
}

.hero-logo {
  width: min(320px, 68vw);
  height: auto;
  object-fit: contain;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--primary-strong);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  max-width: 15ch;
}

.hero-copy {
  margin-top: 1rem;
  max-width: 64ch;
  color: var(--muted);
}

.hero-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary-strong), var(--primary));
  color: #f7fbff;
}

.btn-primary:hover {
  background: linear-gradient(120deg, #0a245f, #1a80df);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.metrics {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metrics article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.metrics h2 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section h2 {
  max-width: 24ch;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin-bottom: 0.6rem;
}

.info-card p,
.about p,
.steps li,
.contact p,
.portfolio-card p,
.testimonial-card p,
.price-card p {
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.portfolio-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.portfolio-card h3 {
  margin: 0.75rem 0 0.45rem;
}

.project-shot {
  height: 155px;
  border-radius: 12px;
  display: block;
  overflow: hidden;
  color: #eef5ff;
  font-weight: 700;
  text-align: center;
  padding: 0;
}

.project-shot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-school {
  background: linear-gradient(130deg, #0f2f78, #1d8df7);
}

.shot-game {
  background: linear-gradient(130deg, #17264f, #2f9cfb);
}

.shot-web {
  background: linear-gradient(130deg, #0f3b6c, #2790ff);
}

.text-link {
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration-thickness: 1px;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 30px 65px rgba(15, 47, 120, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 12px;
  background: linear-gradient(120deg, var(--primary-strong), var(--primary));
  color: #f7fbff;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
}

.price-tag {
  font-weight: 700;
  color: var(--primary-strong);
  margin-top: 0.45rem;
}

.feature-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.testimonial-card h3 {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: var(--primary-strong);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}

.contact a {
  color: var(--primary-strong);
  font-weight: 600;
  text-decoration-thickness: 1px;
}

.contact-form {
  display: grid;
  gap: 0.72rem;
}

label {
  font-size: 0.9rem;
  display: grid;
  gap: 0.32rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(199, 215, 240, 0.95);
  border-radius: 11px;
  padding: 0.65rem 0.72rem;
  font: inherit;
  background: #f7faff;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(29, 141, 247, 0.32);
  border-color: var(--primary);
}

.form-status {
  min-height: 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--ok);
}

.form-status.is-error {
  color: var(--error);
}

.site-footer {
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid rgba(199, 215, 240, 0.8);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-strong);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  background: linear-gradient(135deg, #0ea55a, #21cf74);
  color: #f6fff9;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 0.62rem 0.92rem;
  box-shadow: 0 18px 30px rgba(11, 86, 42, 0.28);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 4vw;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    min-width: 210px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .metrics,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }
}
