/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --blue-light: #3b82f6;
  --violet:     #7c3aed;
  --cyan:       #06b6d4;
  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-3:     #334155;
  --mid:        #64748b;
  --light:      #f1f5f9;
  --white:      #ffffff;
  --green:      #22c55e;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(15,23,42,.10);
  --shadow-lg:  0 12px 48px rgba(15,23,42,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--sm  { padding: 8px 20px; font-size: 14px; }
.btn--lg  { padding: 16px 36px; font-size: 16px; }
.btn:not(.btn--sm):not(.btn--lg) { padding: 12px 28px; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 0 rgba(37,99,235,.4);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn--outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(59,130,246,.08);
}
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.2);
}
.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

.section__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section__title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section__sub { color: var(--mid); font-size: 17px; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 8px;
  color: white;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

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

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

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  bottom: -50px; right: -50px;
  animation: blobFloat 16s ease-in-out infinite reverse;
}
.blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  top: 50%; right: 20%;
  animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(.95); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s ease-in-out infinite;
}
.badge-dot--green { background: var(--green); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.0); }
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-item { text-align: left; }
.proof-item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-item span { font-size: 13px; color: var(--mid); font-weight: 500; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 13px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ===== SERVICES ===== */
.services { background: var(--dark-2); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(59,130,246,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: rgba(37,99,235,.35);
  background: linear-gradient(135deg, rgba(37,99,235,.1) 0%, rgba(124,58,237,.06) 100%);
}
.service-card--ai {
  border-color: rgba(124,58,237,.25);
}
.service-card--ai .service-card__icon { color: var(--violet); }
.service-card--ai .service-card__icon { background: rgba(124,58,237,.1); }

.service-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  padding: 4px 12px;
  border-radius: 50px;
  color: white;
}

.service-card__icon {
  width: 56px; height: 56px;
  background: rgba(59,130,246,.1);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--blue-light);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card__cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  transition: letter-spacing var(--transition);
}
.service-card--link:hover .service-card__cta { letter-spacing: .03em; }
.service-card--ai .service-card__cta { color: #a78bfa; }

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.service-card__tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-light);
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  padding: 4px 12px;
  border-radius: 50px;
}
.service-card--ai .service-card__tags li {
  color: #a78bfa;
  background: rgba(124,58,237,.1);
  border-color: rgba(124,58,237,.2);
}

/* ===== WHY US ===== */
.why-us { background: var(--dark); }

.why-us__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-us__left .section__tag { display: inline-block; margin-bottom: 18px; }
.why-us__left .section__title { margin-bottom: 16px; text-align: left; }
.why-us__left .section__sub { text-align: left; margin-bottom: 36px; }

.why-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 16px;
  transition: all var(--transition);
  background: rgba(255,255,255,.02);
}
.why-card:hover {
  border-color: rgba(59,130,246,.2);
  background: rgba(59,130,246,.04);
  transform: translateX(4px);
}
.why-card__num {
  font-size: 13px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--blue-light);
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.2);
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
  align-self: flex-start;
}
.why-card h4 { font-size: 16px; margin-bottom: 6px; font-weight: 600; }
.why-card p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, rgba(37,99,235,.12) 0%, rgba(124,58,237,.08) 100%);
  border-top: 1px solid rgba(59,130,246,.15);
  border-bottom: 1px solid rgba(59,130,246,.15);
  padding: 80px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.stat-item__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item__label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.stat-item__desc { font-size: 13px; color: var(--mid); }

/* ===== PROCESS ===== */
.process { background: var(--dark-2); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.process-step__num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(37,99,235,.15);
}
.process-step__line {
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  right: -24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59,130,246,.4), rgba(124,58,237,.1));
}
.process-step:last-child .process-step__line { display: none; }
.process-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--dark);
}
.cta-banner__inner {
  background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.cta-banner__inner .blob--cta {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.3) 0%, transparent 70%);
  top: -200px; right: -200px;
  filter: blur(60px);
}
.cta-banner__inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner__inner p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-banner__inner .btn { position: relative; }

/* ===== CONTACT ===== */
.contact { background: var(--dark-2); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section__tag { display: inline-block; margin-bottom: 18px; }
.contact__info .section__title { text-align: left; margin-bottom: 16px; }
.contact__info > p { color: var(--mid); font-size: 16px; margin-bottom: 40px; line-height: 1.7; }

.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail__icon {
  width: 42px; height: 42px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue-light);
}
.contact-detail__icon svg { width: 18px; height: 18px; }
.contact-detail strong { display: block; font-size: 13px; color: var(--mid); font-weight: 500; margin-bottom: 2px; }
.contact-detail a, .contact-detail span { font-size: 15px; font-weight: 500; color: var(--white); }
.contact-detail a:hover { color: var(--blue-light); }

.contact__response-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
  background: rgba(34,197,94,.06);
  border: 1px solid rgba(34,197,94,.15);
  padding: 10px 18px;
  border-radius: 50px;
}

/* FORM */
.contact__form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.required { color: var(--blue-light); }

input, select, textarea {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.3); }
select { appearance: none; cursor: pointer; }
select option { background: var(--dark-2); color: var(--white); }
textarea { resize: vertical; min-height: 130px; }

input:focus, select:focus, textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
input.error, select.error, textarea.error {
  border-color: #ef4444;
}

.form-error {
  font-size: 12px;
  color: #f87171;
  font-weight: 500;
  min-height: 18px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 500;
  font-size: 15px;
}
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 56px;
}
.footer__brand { max-width: 280px; }
.footer__brand p { font-size: 14px; color: var(--mid); margin-top: 16px; line-height: 1.7; }
.footer__brand .nav__logo { margin-bottom: 0; }

.footer__links {
  display: flex;
  gap: 80px;
}
.footer__col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: 13px; color: var(--mid); }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .process-step:nth-child(3) .process-step__line { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(1),.stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .why-us__layout { grid-template-columns: 1fr; gap: 48px; }
  .why-us__left { max-width: 560px; }
}

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

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 24px;
    transition: right .3s ease;
    border-left: 1px solid rgba(255,255,255,.08);
    z-index: 99;
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 17px; }
  .nav__burger { display: flex; z-index: 100; }
  .nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__burger.active span:nth-child(2) { opacity: 0; }
  .nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__title { font-size: 36px; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__proof { gap: 20px; }
  .proof-item strong { font-size: 22px; }

  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step { padding: 0; text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .process-step__num { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
  .process-step__line { display: none !important; }
  .process-step:nth-child(4),
  .process-step:nth-child(5) { grid-column: auto; }

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

  .contact__layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 24px; }

  .cta-banner__inner { padding: 48px 28px; }

  .footer__top { flex-direction: column; }
  .footer__links { gap: 48px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: none; }
  .hero__proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { display: none; }
  .footer__links { flex-direction: column; gap: 40px; }
}
