/* ============================================================
   FINSITARA TECHNOLOGIES — Main Stylesheet
   ============================================================ */

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

:root {
  --cyan:    #00d4ff;
  --cyan-d:  #00a8cc;
  --violet:  #8b5cf6;
  --violet-d:#6d28d9;
  --green:   #10b981;
  --amber:   #f59e0b;
  --bg:      #040c18;
  --bg2:     #071220;
  --bg3:     #0a1a2e;
  --surface: #0d1f35;
  --border:  rgba(255,255,255,0.07);
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --white:   #ffffff;
  --grad:    linear-gradient(135deg, var(--cyan), var(--violet));
  --grad2:   linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #ec4899 100%);
  --radius:  16px;
  --shadow:  0 25px 60px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

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

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

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

.section { padding: 100px 0; }

/* ── Gradient text ─────────────────────────────────────── */
.gradient-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 30px rgba(0,212,255,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,212,255,.4);
}
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.15);
}
.btn-nav {
  background: var(--grad);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(0,212,255,.2);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 0 35px rgba(0,212,255,.35); }
.btn-white {
  background: #fff;
  color: #040c18;
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,.2); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }


/* ══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(4,12,24,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.logo-icon {
  font-size: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-text { color: var(--white); }
.logo-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links li a:hover { color: var(--white); }

.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(--text);
  border-radius: 2px;
  transition: all .3s;
}


/* ══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
}
.glow-1 {
  width: 600px; height: 600px;
  background: var(--cyan);
  top: -200px; left: -150px;
  opacity: .12;
}
.glow-2 {
  width: 500px; height: 500px;
  background: var(--violet);
  top: 100px; right: -100px;
  opacity: .15;
}
.glow-3 {
  width: 400px; height: 400px;
  background: #ec4899;
  bottom: -100px; left: 40%;
  opacity: .1;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 40px;
  backdrop-filter: blur(12px);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator span {
  width: 3px; height: 8px;
  background: var(--cyan);
  border-radius: 3px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}


/* ══════════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}
.section-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}


/* ══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
}
.about-orb {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  border: 1px solid rgba(0,212,255,.1);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  50% { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
}
.about-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 210px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.about-card:nth-child(1) { top: 20px; left: 0; }
.about-card:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.about-card:nth-child(3) { bottom: 20px; left: 30px; }
.card-float { animation: float 6s ease-in-out infinite; }
.delay-1 { animation-delay: 2s; }
.delay-2 { animation-delay: 4s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-card:nth-child(2).card-float {
  animation: float-mid 6s ease-in-out 2s infinite;
}
@keyframes float-mid {
  0%,100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}
.about-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-icon-wrap.purple { background: rgba(139,92,246,.15); color: var(--violet); }
.about-icon-wrap.teal   { background: rgba(16,185,129,.15); color: var(--green); }
.about-icon-wrap.orange { background: rgba(245,158,11,.15); color: var(--amber); }
.card-mini-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.card-mini-sub   { font-size: 12px; color: var(--muted); }
.about-text { }
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  color: var(--cyan);
}


/* ══════════════════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════════════════ */
.products { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products-grid .coming-soon-card {
  grid-column: 1 / -1;
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.15);
}
.product-card.coming-soon-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto auto;
  column-gap: 32px;
  align-items: start;
}
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.product-status.ready {
  background: rgba(16,185,129,.12);
  color: var(--green);
  border: 1px solid rgba(16,185,129,.25);
}
.product-status.coming {
  background: rgba(245,158,11,.12);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,.25);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}
.status-dot.coming { animation: none; }

.product-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.product-icon-wrap.cyan   { background: rgba(0,212,255,.12);  color: var(--cyan); border: 1px solid rgba(0,212,255,.2); }
.product-icon-wrap.violet { background: rgba(139,92,246,.12); color: var(--violet); border: 1px solid rgba(139,92,246,.2); }
.product-icon-wrap.green  { background: rgba(16,185,129,.12); color: var(--green); border: 1px solid rgba(16,185,129,.2); }
.product-icon-wrap.amber  { background: rgba(245,158,11,.12); color: var(--amber); border: 1px solid rgba(245,158,11,.2); }

.product-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.product-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.product-features li svg { color: var(--cyan); flex-shrink: 0; }
.product-btn { padding: 12px 24px; font-size: 14px; }

/* coming soon card layout overrides */
.coming-soon-card .product-status { grid-column: 1 / -1; }
.coming-soon-card .product-icon-wrap { grid-row: 2; grid-column: 1; margin-bottom: 0; align-self: start; }
.coming-soon-card .product-title    { grid-row: 2; grid-column: 2; align-self: center; margin-bottom: 0; }
.coming-soon-card .product-desc     { grid-column: 1 / -1; grid-row: 3; margin-top: 16px; }
.coming-soon-card .product-features { grid-column: 1 / -1; grid-row: 4; flex-direction: row; flex-wrap: wrap; gap: 16px 32px; }
.coming-soon-card .coming-soon-tag  { grid-column: 1 / -1; grid-row: 5; }

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--amber);
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  padding: 10px 18px;
  border-radius: 50px;
}
.coming-soon-tag a { color: var(--amber); font-weight: 700; text-decoration: underline; }

/* glows */
.product-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  bottom: -60px; right: -60px;
  opacity: 0;
  transition: opacity .4s;
}
.product-card:hover .product-glow { opacity: 1; }
.glow-cyan   { background: var(--cyan); }
.glow-violet { background: var(--violet); }
.glow-green  { background: var(--green); }
.glow-amber  { background: var(--amber); }


/* ══════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════ */
.why-us { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .3s, border-color .3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,.2);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
}
.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }


/* ══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, #042233 0%, #0d0d2b 50%, #1a042b 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.cta-text p { color: var(--muted); font-size: 16px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.14); }
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-icon.cyan   { background: rgba(0,212,255,.12);  color: var(--cyan);   border: 1px solid rgba(0,212,255,.2); }
.contact-icon.violet { background: rgba(139,92,246,.12); color: var(--violet); border: 1px solid rgba(139,92,246,.2); }
.contact-icon.green  { background: rgba(16,185,129,.12); color: var(--green);  border: 1px solid rgba(16,185,129,.2); }
.contact-card h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-card p  { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.contact-card a, .contact-card span { font-size: 15px; font-weight: 600; color: var(--cyan); }

.contact-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,212,255,.06), rgba(139,92,246,.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.contact-cta p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.email-link {
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity .2s;
}
.email-link:hover { opacity: .8; }


/* ══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding: 64px 24px 48px;
}
.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 6px;
}
.footer-llp {
  font-size: 12px;
  color: rgba(148,163,184,.5);
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--white); }
.badge-soon {
  font-size: 10px;
  background: rgba(245,158,11,.15);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,.25);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid var(--border);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-bottom p { font-size: 13px; color: rgba(148,163,184,.5); }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid .coming-soon-card { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(4,12,24,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
  }
  .nav-links li:last-child { padding: 12px 24px; }
  .hamburger { display: flex; }
  .hero-title { font-size: 40px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .stat-divider { width: 80px; height: 1px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid .coming-soon-card { grid-column: 1; }
  .coming-soon-card { display: flex; flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .email-link { font-size: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { width: 100%; }
  .cta-actions { flex-direction: column; }
}
