/* ============================================================
   TombolUP - Landing Page Styles
   ============================================================ */

/* 1. Reset & Custom Properties */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #2D7DD2;
  --primary-dark:   #1B62B5;
  --primary-light:  #A5B8CF;
  --primary-faint:  rgba(45, 125, 210, 0.10);

  --yellow:         #ECDE97;
  --yellow-dark:    #C8B96A;
  --brown:          #A8763E;
  --dark-brown:     #6F1A07;
  --darkest:        #2B2118;

  --cream:          #E7DFC6;
  --cream-light:    #FAF8F3;
  --white:          #ffffff;

  --text:           #2B2118;
  --text-secondary: #5C4F3D;
  --text-muted:     #9C8E7E;
  --border:         #E5DDD0;

  --font: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.10);
  --shadow:    0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.09), 0 4px 8px rgba(0,0,0,0.06);

  --max-w:  1200px;
  --nav-h:  72px;
  --ease:   0.2s ease;
  --ease-md: 0.35s ease;
}

/* 2. Base */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--darkest); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

/* 3. Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--alt { background: var(--cream-light); }
.section--dark { background: var(--darkest); }

.section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
}

.section__header { margin-bottom: 56px; }
.section__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 4. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 125, 210, 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* 5. Navbar */
.navbar {
  position: fixed;
  top: 12px; left: 16px; right: 16px;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229,221,208,0.6);
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo img { height: 38px; width: auto; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.navbar__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease), background var(--ease);
}
.navbar__links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }

.navbar__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
}
.lang-switch a {
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--ease);
  letter-spacing: 0.03em;
}
.lang-switch a.active {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
  transform-origin: center;
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: fixed;
  top: calc(var(--nav-h) + 20px);
  left: 16px; right: 16px;
  z-index: 99;
  /* animation state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.navbar__mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.navbar__mobile a:not(.btn) {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--ease);
}
.navbar__mobile a:hover { color: var(--text); background: var(--cream-light); }
.navbar__mobile .btn { margin-top: 8px; justify-content: center; }

/* 6. Hero */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + 28px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 45%, rgba(236,222,151,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(45,125,210,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 96px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236,222,151,0.45);
  border: 1px solid rgba(168,118,62,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 24px;
}
.hero__badge-icon {
  font-size: 18px;
  line-height: 1;
}

.hero__title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--darkest);
}
.hero__title em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--darkest);
  line-height: 1;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.hero__stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-blob {
  position: absolute;
  width: 85%;
  height: 85%;
  background: var(--yellow);
  opacity: 0.2;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  animation: blobmorph 10s ease-in-out infinite;
}
@keyframes blobmorph {
  0%,100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  33%      { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
  66%      { border-radius: 45% 55% 60% 40% / 40% 60% 45% 55%; }
}

.hero__img {
  position: relative;
  z-index: 1;
  max-width: 90%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.14));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Decorative balls */
.hero__ball {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
  user-select: none;
}
.hero__ball--1 { top: 8%;  right: 4%;  background: var(--primary);      animation-delay: -1s; }
.hero__ball--2 { bottom: 12%; left: 2%; background: var(--brown);       animation-delay: -3s; color: var(--white); }
.hero__ball--3 { top: 52%; right: -2%; background: var(--yellow-dark);  animation-delay: -5s; color: var(--darkest); }

/* 7. How it works */
.how__tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.how__tabs {
  display: flex;
  gap: 4px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.how__tab {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  background: none;
  font-family: var(--font);
}
.how__tab.active {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.how__panel { display: none; }
.how__panel.active { display: block; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
/* Dashed connector between steps (desktop only) */
.how__steps::before {
  content: '';
  position: absolute;
  top: 24px; left: calc(50% / 3 + 24px); right: calc(50% / 3 + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 5px, transparent 5px, transparent 11px);
  pointer-events: none;
}

.how__step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.how__step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--darkest);
}
.how__step-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 8. Features */
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.features__col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.features__col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.features__col-label--base    { color: var(--primary); }
.features__col-label--premium { color: var(--brown); }

.features__tag {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.features__tag--base    { background: var(--primary-faint); color: var(--primary); }
.features__tag--premium { background: rgba(168,118,62,0.10); color: var(--brown); }

.features__list { display: flex; flex-direction: column; gap: 14px; }

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-card--premium:hover { border-color: rgba(168,118,62,0.35); }

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.feature-card__icon--base    { background: rgba(45,125,210,0.09); }
.feature-card__icon--premium { background: rgba(168,118,62,0.09); }

.feature-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--darkest);
}
.feature-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* 9. Pricing */
.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 48px;
}

.pricing__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.pricing__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pricing__card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.pricing__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--darkest);
}

.pricing__card-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.pricing__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pricing__cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .pricing__cards { grid-template-columns: 1fr; }
}

/* 10. Stats */
.stats { background: var(--darkest); padding: 80px 0; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__value {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}

/* 10. Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card__stars { color: var(--yellow-dark); font-size: 16px; letter-spacing: 2px; }

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
}

.testimonial-card__author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--darkest);
}
.testimonial-card__author-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Placeholder state */
.testimonials__placeholder {
  text-align: center;
  padding: 48px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 15px;
}
.testimonials__placeholder strong { color: var(--text-secondary); display: block; margin-bottom: 8px; font-size: 17px; }

/* 11. FAQ */
.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--primary-light); }

.faq-item__btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--darkest);
  text-align: left;
  transition: background var(--ease);
}
.faq-item__btn:hover { background: var(--cream-light); }

.faq-item__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  color: var(--text-muted);
  transition: all var(--ease);
}
.faq-item.open .faq-item__icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-md) ease;
}
.faq-item.open .faq-item__answer { max-height: 400px; }

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* 12. Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact__info-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact__info-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__socials { display: flex; flex-direction: column; gap: 12px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--ease);
}
.social-link:hover {
  border-color: var(--primary);
  background: rgba(45,125,210,0.04);
  transform: translateX(4px);
}

.social-link__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.social-link__icon--ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link__icon--tt { background: #010101; }
.social-link__arrow { margin-left: auto; color: var(--text-muted); font-size: 18px; }

.contact__form {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,125,210,0.13);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

.form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.form__privacy { font-size: 12px; color: var(--text-muted); line-height: 1.55; max-width: 260px; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.30);
  border-radius: var(--radius-sm);
  color: #166534;
  font-size: 14px;
  font-weight: 500;
}

/* 13. Footer */
.footer { background: var(--darkest); padding: 48px 0; }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo img { height: 28px; }

.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.footer__links a:hover { color: rgba(255,255,255,0.85); }

.footer__copy { font-size: 13px; color: rgba(255,255,255,0.35); }

/* 14. Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* 15. Responsive */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding: 64px 0 80px; }
  .hero__subtitle { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0 auto; }

  .features__grid { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .how__steps { grid-template-columns: 1fr; }
  .how__steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .navbar__links { display: none; }
  .navbar__actions .btn--primary { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__stats {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: stretch;
  }
  .hero__stat,
  .hero__stat:first-child {
    padding: 12px 16px;
    background: var(--cream-light);
    border-radius: var(--radius);
    flex: 1;
    min-width: 100px;
    max-width: 160px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .hero__stat-value { font-size: 18px; }
  .hero__stat-label { font-size: 11px; }
  .hero__stat-sep { display: none; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }

  .contact__form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }

  .how__tab { padding: 9px 18px; font-size: 13px; }
}
