/* ═══════════════════════════════════════════════
   CANMA-Biz — Main Stylesheet
   Design: Dark Blue · White · Black
═══════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Palette ── */
  --blue:       #1B4FD8;        /* primary CTA blue        */
  --blue-dk:    #1440B8;        /* hover darker blue       */
  --blue-lt:    #2563EB;        /* lighter interactive     */
  --navy:       #0A1628;        /* deepest dark navy       */
  --navy-mid:   #0F2044;        /* hero / section bg       */
  --navy-soft:  #162550;        /* cards on dark           */
  --black:      #050A14;        /* pure near-black         */
  --white:      #FFFFFF;
  --off-white:  #F0F4FF;        /* light sections          */
  --text:       #1E293B;        /* body text               */
  --muted:      #64748B;        /* secondary text          */
  --border:     #E2E8F0;        /* light borders           */
  --border-dk:  rgba(255,255,255,.10); /* dark bg borders  */

  /* ── UI ── */
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 10px rgba(10,22,40,.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,.14);
  --shadow-lg:  0 24px 64px rgba(10,22,40,.20);
  --shadow-blue:0 8px 28px rgba(27,79,216,.35);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.bg-light { background: var(--off-white); }
.accent { color: var(--blue); }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary, .btn-outline, .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

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

/* White outline variant (on dark bg) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; margin-top: 12px; }

.btn-nav {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  font-size: .875rem;
}
.btn-nav:hover { background: var(--blue-dk); }

/* ══════════════════════════════
   SECTION ELEMENTS
══════════════════════════════ */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 10px 0 16px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  background: rgba(27,79,216,.10);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* White tag variant (on dark bg) */
.section-tag-white {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 12px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .35s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding: 12px 0;
}

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

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  transition: opacity var(--transition);
}
.logo span { color: var(--blue-lt); }
.logo:hover { opacity: .85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 13px;
  font-family: 'Poppins', sans-serif;
  font-size: .845rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links .btn-nav { margin-left: 10px; }
.nav-links .btn-nav:hover { background: rgba(255,255,255,.08); }

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

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--black) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  z-index: 0;
}

/* Grid dot pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(27,79,216,.18) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 0;
}

/* Blue glow accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,79,216,.25) 0%, transparent 65%);
  border-radius: 50%;
  animation: glow 6s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(27,79,216,.18);
  color: #93C5FD;
  border: 1px solid rgba(27,79,216,.35);
  font-size: .78rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 .accent {
  color: #60A5FA;
  position: relative;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}
.stat span { font-size: .78rem; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  text-align: center;
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card .card-icon { font-size: 2rem; margin-bottom: 8px; }
.hero-card p { font-size: .78rem; margin-bottom: 4px; }
.hero-card strong { font-size: 1.25rem; font-family: 'Poppins', sans-serif; }

.card-1 {
  top: 5%; left: 0%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  animation-delay: 0s;
}
.card-1 p { color: rgba(255,255,255,.55); }

.card-2 {
  top: 36%; right: 0%;
  background: var(--blue);
  border: 1px solid rgba(27,79,216,.5);
  color: var(--white);
  animation-delay: .9s;
  box-shadow: 0 12px 40px rgba(27,79,216,.4);
}
.card-2 p { color: rgba(255,255,255,.7); }

.card-3 {
  bottom: 5%; left: 15%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  animation-delay: 1.8s;
}
.card-3 p { color: rgba(255,255,255,.55); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; height: 40px; }
  50% { opacity: 1; height: 56px; }
}

/* ══════════════════════════════
   INTRO
══════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .section-tag { display: inline-block; margin-bottom: 12px; }
.intro-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.intro-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.intro-text .btn-primary { margin-top: 8px; }

.feature-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--white);
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(27,79,216,.08);
  transform: translateX(4px);
}

.feature-icon {
  width: 36px; height: 36px;
  background: rgba(27,79,216,.08);
  color: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  font-weight: 700;
}

.feature-item h4 { font-size: .95rem; margin-bottom: 4px; color: var(--navy); }
.feature-item p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2.4rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--navy); }
.service-card p { font-size: .9rem; color: var(--muted); margin-bottom: 20px; line-height: 1.65; }

.card-link {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

.services-cta { text-align: center; }

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

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

.why-content .section-tag-white { display: inline-block; margin-bottom: 12px; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; color: var(--white); }
.why-content > p { color: rgba(255,255,255,.6); margin-bottom: 32px; }

.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-check {
  width: 28px; height: 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h4 { font-size: .95rem; margin-bottom: 4px; color: var(--white); }
.why-item p { font-size: .875rem; color: rgba(255,255,255,.5); margin: 0; }

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

.number-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.number-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(27,79,216,.4);
}

.number-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.number-card strong span { font-size: 1.4rem; color: #60A5FA; }
.number-card p { font-size: .85rem; color: rgba(255,255,255,.45); margin: 0; }

.accent-card {
  background: var(--blue);
  border-color: rgba(27,79,216,.5);
}
.accent-card:hover { background: var(--blue-dk); }
.accent-card strong { color: var(--white); }
.accent-card strong span { color: rgba(255,255,255,.65); }
.accent-card p { color: rgba(255,255,255,.75); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonial-slider { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.stars { color: var(--blue); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { color: var(--text); font-size: .93rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }

.client-info { display: flex; align-items: center; gap: 12px; }

.client-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.client-info strong { display: block; font-size: .95rem; color: var(--navy); }
.client-info span { font-size: .8rem; color: var(--muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(27,79,216,.15);
}

.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

.testimonials-cta { text-align: center; margin-top: 40px; }

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.cta-box {
  background: var(--black);
  border-radius: 24px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27,79,216,.2);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(27,79,216,.2) 0%, transparent 65%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,79,216,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box .section-tag-white { margin-bottom: 16px; }
.cta-box h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; position: relative; z-index: 1; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 280px; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }

.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: all var(--transition);
}
.social-links a:hover {
  border-color: var(--blue);
  color: #60A5FA;
  background: rgba(27,79,216,.12);
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: #60A5FA; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.25); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.25);
  transition: color var(--transition);
}
.footer-legal a:hover { color: #60A5FA; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp .75s ease forwards .15s;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight .75s ease forwards .35s;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right .32s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,.75); width: 100%; padding: 12px 14px; }
  .nav-links a:hover, .nav-links a.active { color: #60A5FA; background: rgba(27,79,216,.12); border-radius: 8px; }
  .nav-links .btn-nav { margin: 8px 0 0; width: 100%; justify-content: center; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 120px; }
  .hero-visual { height: 280px; }
  .hero-stats { gap: 16px; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-numbers { grid-template-columns: 1fr 1fr; }

  .testimonial-card { min-width: 85vw; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }

  .cta-box { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-visual { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .why-numbers { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
