/* ============================================
   KODIGO — Amazon Growth Agency
   Design System & Styles
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-0: #ffffff;
  --bg-1: #f7f5f2;
  --bg-2: #f0ece6;
  --bg-card: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.14);

  --white: #1a1a1a;
  --white-80: rgba(0,0,0,0.75);
  --white-50: rgba(0,0,0,0.50);
  --white-20: rgba(0,0,0,0.18);

  --gold: #e07020;
  --gold-light: #f08030;
  --gold-dark: #c05e10;
  --orange: #c85010;

  --gradient: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 80px rgba(245,166,35,0.15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-0);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--white-50);
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), box-shadow 200ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  border: none;
  outline: none;
}

.btn--primary {
  background: var(--gradient);
  color: #ffffff;
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(245,166,35,0.35);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    transform: translateY(-2px);
  }
}

.btn--ghost {
  background: transparent;
  color: var(--white-80);
  border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
  background: rgba(0,0,0,0.05);
  color: var(--white);
  border-color: rgba(0,0,0,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.35);
}

.btn--outline:hover {
  background: rgba(245,166,35,0.08);
  border-color: var(--gold);
}

.btn--nav {
  background: rgba(245,166,35,0.1);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.25);
  font-size: 0.85rem;
  padding: 9px 18px;
}

.btn--nav:hover {
  background: rgba(245,166,35,0.18);
}

.btn--large {
  font-size: 1rem;
  padding: 16px 32px;
}

.btn:active,
.btn--primary:active,
.btn--ghost:active,
.btn--outline:active,
.btn--nav:active {
  transform: scale(0.97);
  box-shadow: none;
  transition-duration: 100ms;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav__logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  flex-shrink: 0;
}

.nav__logo .dot {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links li a {
  font-size: 0.875rem;
  color: var(--white-50);
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links li a:not(.btn):hover {
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 280ms var(--ease-out), opacity 200ms ease;
}

.nav__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  gap: 16px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.nav__mobile a {
  font-size: 0.95rem;
  color: var(--white-80);
  font-weight: 500;
}

.nav__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.hero__glow--1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(224,112,32,0.18) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__glow--2 {
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,80,16,0.12) 0%, transparent 70%);
  bottom: 0;
  right: -100px;
}

.hero__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,112,32,0.08);
  border: 1px solid rgba(224,112,32,0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 28px;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-50);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat__num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.78rem;
  color: var(--white-50);
  font-weight: 500;
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border-hover);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(0,0,0,0.18);
  border-radius: 100px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 16px; }
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-wrap {
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
  padding: 0 12px;
}

.marquee .sep {
  color: var(--gold);
  padding: 0 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 100px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(224,112,32,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(224,112,32,0.25);
  box-shadow: 0 8px 32px rgba(224,112,32,0.1);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-4px);
  }
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  border-color: rgba(224,112,32,0.3);
  background: linear-gradient(160deg, rgba(224,112,32,0.05) 0%, var(--bg-card) 50%);
  box-shadow: 0 4px 20px rgba(224,112,32,0.08);
}

.service-card--featured::before {
  opacity: 1;
}

.service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(224,112,32,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-card__list li {
  font-size: 0.85rem;
  color: var(--white-80);
  padding-left: 18px;
  position: relative;
}

.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-card__note {
  font-size: 0.75rem;
  color: var(--white-50);
  font-style: italic;
}

/* ============================================
   DIFFERENTIATOR
   ============================================ */

.differentiator {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff__left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.diff__left p {
  font-size: 1rem;
  color: var(--white-50);
  line-height: 1.75;
  margin-bottom: 32px;
}

.diff__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.diff__item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.diff__item:hover {
  background: rgba(0,0,0,0.02);
}

.diff__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(224,112,32,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff__icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.diff__item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.diff__item p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: 100px 0;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.process__step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.process__step:hover {
  border-color: rgba(224,112,32,0.25);
  box-shadow: 0 8px 24px rgba(224,112,32,0.08);
}

@media (hover: hover) and (pointer: fine) {
  .process__step:hover {
    transform: translateY(-4px);
  }
}

.step__num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.process__step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process__step p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.65;
}

.process__arrow {
  font-size: 1.4rem;
  color: var(--white-20);
  align-self: center;
  padding-top: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 100px 0 120px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta__glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(224,112,32,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta__inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta__inner > p {
  font-size: 1rem;
  color: var(--white-50);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* FORM */
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-80);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(0,0,0,0.25);
}

.form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.35)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form__group select option {
  background: #ffffff;
  color: #1a1a1a;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: rgba(224,112,32,0.5);
  box-shadow: 0 0 0 3px rgba(224,112,32,0.08);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.cta__form .btn--large {
  align-self: center;
  margin-top: 8px;
}

.form__note {
  font-size: 0.78rem;
  color: var(--white-50);
  margin-top: 16px;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer__inner {
  display: flex;
  gap: 64px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.footer__brand {
  flex: 1;
  min-width: 200px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.6;
  margin-top: 12px;
}

.footer__links {
  display: flex;
  gap: 48px;
}

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

.footer__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--white-50);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--white-20);
}

/* ============================================
   FORM SUCCESS STATE
   ============================================ */

.form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(224,112,32,0.2);
  border-radius: var(--radius-xl);
  animation: fadeIn 0.4s ease;
  box-shadow: 0 4px 20px rgba(224,112,32,0.08);
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: rgba(224,112,32,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--white-50);
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

  .process__arrow {
    display: none;
  }

  .process__steps {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .stat {
    padding: 12px 0;
    border-right: 1px solid var(--border-hover);
  }

  .stat:last-child {
    border-right: none;
  }

  .stat__divider {
    display: none;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    gap: 32px;
  }

  .diff__inner {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__badge {
    font-size: 0.72rem;
    text-align: center;
  }

  .stat__num {
    font-size: 1.6rem;
  }

  .stat__label {
    font-size: 0.7rem;
  }

  .process__step {
    min-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .reveal.visible {
    transform: none;
  }

  .badge__dot {
    animation: none;
  }

  .hero__scroll span::after {
    animation: none;
  }

  .marquee {
    animation-duration: 60s;
  }

  .service-card,
  .process__step {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
}
