/* ─────────────────────────────────────────────
   Vantage Point Services — Global Stylesheet
   ───────────────────────────────────────────── */

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

:root {
  --navy:        #0a1628;
  --navy-mid:    #0d1f3c;
  --navy-card:   #0f2244;
  --navy-light:  #162d52;
  --cyan:        #22d3ee;
  --cyan-dim:    rgba(34,211,238,0.10);
  --cyan-glow:   rgba(34,211,238,0.22);
  --white:       #ffffff;
  --muted:       #7a9ab8;
  --muted-light: #a8c4d8;
  --border:      rgba(34,211,238,0.14);
  --radius:      12px;
  --radius-lg:   20px;
  --ff-head:     'Syne', sans-serif;
  --ff-body:     'Karla', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--white); font-family: var(--ff-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--ff-head); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ── Tags ── */
.tag {
  display: inline-block; font-family: var(--ff-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid var(--border); background: var(--cyan-dim);
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: 8px; cursor: pointer;
  transition: all 0.25s ease; border: none; text-decoration: none;
}
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { background: #38e4f8; transform: translateY(-2px); box-shadow: 0 8px 28px var(--cyan-glow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.22); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-lg { font-size: 16px; padding: 16px 36px; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; transition: background 0.3s, border-color 0.3s;
}
nav.scrolled { background: rgba(10,22,40,0.93); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 38px; height: 38px; }
.logo-text { font-family: var(--ff-head); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; line-height: 1.2; color: var(--white); }
.logo-text span { display: block; font-weight: 400; font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button {
  font-family: var(--ff-head); font-size: 14px; font-weight: 500;
  color: var(--muted-light); transition: color 0.2s; letter-spacing: 0.02em;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-links a:hover, .nav-links button:hover { color: var(--white); }
.has-dropdown { display: flex; align-items: center; gap: 4px; }
.has-dropdown svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.2s; }
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 260px; background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px; opacity: 0; visibility: hidden;
  transition: all 0.2s; z-index: 200;
}
.nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-links > li:hover .has-dropdown svg { transform: rotate(180deg); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 8px; font-size: 14px; color: var(--muted-light);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--cyan-dim); color: var(--cyan); }
.dropdown-menu a svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 32px 24px; flex-direction: column; gap: 0; z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  font-family: var(--ff-head); font-size: 20px; font-weight: 700; color: var(--white);
  padding: 16px 0; border-bottom: 1px solid var(--border); display: block;
  background: none; border-left: none; border-right: none; border-top: none; cursor: pointer; text-align: left; width: 100%;
}
.mobile-menu .mobile-sub { display: none; padding-left: 16px; }
.mobile-menu .mobile-sub a { font-size: 16px; font-weight: 500; color: var(--muted-light); border-bottom: none; padding: 10px 0; }
.mobile-menu .mobile-sub.open { display: flex; flex-direction: column; }
.mobile-cta { margin-top: 24px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(34,211,238,0.06) 0%, transparent 70%);
}
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(34,211,238,0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero-content h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.page-hero-content h1 em { font-style: normal; color: var(--cyan); }
.page-hero-content p { font-size: 18px; color: var(--muted-light); max-width: 560px; margin-bottom: 36px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--muted-light); }

/* ── Section headings ── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--muted-light); max-width: 520px; margin: 0 auto; }
.section-head.left { text-align: left; }
.section-head.left p { margin: 0; }

/* ── Service Cards (overview) ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-card {
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(34,211,238,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; background: var(--cyan-dim); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted-light); font-size: 15px; line-height: 1.65; flex: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 24px;
  font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--cyan);
  transition: gap 0.2s;
}
.service-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.service-card:hover .service-card-link { gap: 10px; }
.service-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.service-features li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); margin-top: 8px; flex-shrink: 0; }

/* ── Includes List ── */
.includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.include-item {
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.2s;
}
.include-item:hover { border-color: rgba(34,211,238,0.3); }
.include-check {
  width: 32px; height: 32px; background: var(--cyan-dim); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.include-check svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.include-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.include-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Two column layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; margin-bottom: 20px; }
.two-col p { color: var(--muted-light); font-size: 16px; margin-bottom: 20px; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 20px; }
.stat-card {
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
}
.stat-card strong { display: block; font-family: var(--ff-head); font-size: 40px; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.stat-card span { font-size: 13px; color: var(--muted-light); }

/* ── Pillars ── */
.pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 18px; align-items: flex-start; }
.pillar-num {
  font-family: var(--ff-head); font-size: 12px; font-weight: 700; color: var(--cyan);
  background: var(--cyan-dim); border: 1px solid var(--border); border-radius: 8px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pillar-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pillar-text p { font-size: 14px; color: var(--muted); }

/* ── Process steps ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; }
.step { padding: 40px 32px; border-left: 1px solid var(--border); }
.step:first-child { border-left: none; }
.step-num { font-family: var(--ff-head); font-size: 44px; font-weight: 800; -webkit-text-stroke: 1px var(--cyan); color: transparent; line-height: 1; margin-bottom: 20px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-card) 0%, var(--navy-light) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.cta-inner p { color: var(--muted-light); font-size: 17px; margin-bottom: 36px; }

/* ── Feature rows (alt sections) ── */
.alt-section { background: var(--navy-mid); }
.alt-section-2 { background: var(--navy); }

/* ── Why cards ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.why-card {
  background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px;
}
.why-card .why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Value list ── */
.value-list { display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-bullet {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); margin-top: 8px; flex-shrink: 0;
}
.value-item p { font-size: 15px; color: var(--muted-light); }
.value-item strong { color: var(--white); }

/* ── Footer ── */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand > p { font-size: 15px; color: var(--muted); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-family: var(--ff-head); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 15px; color: var(--muted-light); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-col .footer-btn { background: none; border: none; cursor: pointer; font-family: var(--ff-body); font-size: 15px; color: var(--muted-light); transition: color 0.2s; padding: 0; }
.footer-col .footer-btn:hover { color: var(--cyan); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--muted-light);
  font-size: 16px; transition: all 0.2s;
}
.social-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted);
}

/* ── Fade animations ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* ── Form styles (contact) ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; margin-bottom: 20px; }
.contact-info p { color: var(--muted-light); font-size: 16px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--cyan-dim); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; }
.contact-detail h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-detail p { font-size: 14px; color: var(--muted); margin: 0; }
.tally-frame { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; min-height: 500px; }

/* ── Privacy / legal ── */
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; color: var(--white); }
.legal-body p { color: var(--muted-light); font-size: 15px; margin-bottom: 16px; line-height: 1.75; }
.legal-body ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-body ul li { color: var(--muted-light); font-size: 15px; margin-bottom: 8px; }
.legal-body a { color: var(--cyan); text-decoration: underline; }

/* ── 404 ── */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.not-found-inner h1 { font-size: clamp(80px, 14vw, 160px); font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 8px; opacity: 0.2; }
.not-found-inner h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.not-found-inner p { color: var(--muted-light); font-size: 17px; margin-bottom: 36px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links, nav > .nav-inner > .btn { display: none; }
  .hamburger { display: flex; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--border); }
  .step:nth-child(odd) { border-left: none; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section-pad { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-left: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .page-hero { padding: 120px 0 60px; }
}

/* ── Fix: nav text visibility ── */
.nav-links a, .nav-links button { color: rgba(255,255,255,0.90) !important; }
.nav-links a:hover, .nav-links button:hover { color: #22d3ee !important; }
.has-dropdown { color: rgba(255,255,255,0.90) !important; }

/* ── Real logo image ── */
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

/* ── Tally form: white container ── */
.tally-frame {
  background: #ffffff !important;
  border: none !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  min-height: 520px;
}

/* ── Logo alignment hardfix ── */
.logo { display:flex !important; align-items:center !important; gap:12px !important; flex-shrink:0; }
.logo img { height:40px !important; width:auto !important; max-width:none !important; display:block !important; flex-shrink:0; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }

/* ══════════════════════════════════════
   MOBILE OPTIMISATION PASS
   ══════════════════════════════════════ */

/* Hide scroll indicator on mobile — it overlaps the hero buttons */
@media (max-width: 768px) {
  .hero-scroll { display: none !important; }
}

/* Hero: reduce oversized headline on small phones, add bottom padding
   so content never hides behind the scroll indicator */
@media (max-width: 480px) {
  .hero-h1 { font-size: 38px !important; line-height: 1.08 !important; }
  #home { padding-bottom: 60px; }
  .hero-sub { font-size: 16px !important; }
}

/* Buttons: full-width stack on mobile, proper touch target */
@media (max-width: 640px) {
  .hero-btns { flex-direction: column !important; gap: 12px !important; }
  .hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 24px !important;
    min-height: 52px;
  }
  /* Hide the "View Services" secondary btn on mobile to keep hero clean */
  .hero-btns .btn-outline { display: none; }
}

/* Nav: ensure hamburger and logo don't crowd each other */
@media (max-width: 960px) {
  .nav-inner { padding: 0 4px; }
  nav { padding: 0 16px; }
  /* Hide the CTA button in the nav on mobile — it's in the mobile menu */
  .nav-inner > .btn { display: none !important; }
}

/* Mobile menu: better spacing & typography */
@media (max-width: 960px) {
  .mobile-menu { padding: 24px 20px 40px; gap: 0; }
  .mobile-menu a,
  .mobile-menu button:not(.btn) {
    font-size: 18px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .mobile-sub a { font-size: 15px !important; padding: 10px 0 !important; }
  .mobile-cta { margin-top: 28px; }
  .mobile-cta .btn { min-height: 52px; font-size: 16px; }
}

/* Page hero (inner pages): reduce top padding on mobile */
@media (max-width: 640px) {
  .page-hero { padding: 110px 0 48px !important; }
  .page-hero-content h1 { font-size: 32px !important; }
  .page-hero-content p { font-size: 16px !important; }
  .breadcrumb { font-size: 12px; }
}

/* Services grid: single column, tighter cards */
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .service-card { padding: 28px 24px !important; }
  .includes-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .why-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
}

/* Process steps: single column on mobile */
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr !important; }
  .step { border-left: none !important; border-bottom: 1px solid var(--border); padding: 28px 0 !important; }
  .step:last-child { border-bottom: none; }
  .step-num { font-size: 36px !important; margin-bottom: 12px !important; }
}

/* Two-column layouts: stack on mobile */
@media (max-width: 640px) {
  .two-col { grid-template-columns: 1fr !important; gap: 36px !important; }
  .two-col.reverse { direction: ltr !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .contact-wrap { grid-template-columns: 1fr !important; gap: 36px !important; }
}

/* Stats grid: 2 columns on mobile */
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .stat-card { padding: 20px 16px !important; }
  .stat-card strong { font-size: 32px !important; }
}

/* Footer: single column on mobile */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column !important; gap: 10px !important; text-align: center !important; font-size: 12px; }
}

/* CTA strip: tighter on mobile */
@media (max-width: 640px) {
  .cta-strip { padding: 60px 0 !important; }
  .cta-inner h2 { font-size: 26px !important; }
  .cta-inner p { font-size: 15px !important; margin-bottom: 28px !important; }
  .cta-inner .btn { width: 100%; justify-content: center; }
}

/* General: section padding tighter on mobile */
@media (max-width: 640px) {
  .section-pad { padding: 60px 0 !important; }
  .section-head { margin-bottom: 40px !important; }
  .section-head h2 { font-size: 26px !important; }
  .section-head p { font-size: 15px !important; }
  .container { padding: 0 18px !important; }
}

/* Tally iframe: full width on mobile */
@media (max-width: 640px) {
  .tally-frame { border-radius: 10px !important; }
  .tally-frame iframe { min-height: 560px; }
}

/* Touch targets: all buttons at least 44px tall */
@media (max-width: 960px) {
  .btn { min-height: 44px; }
}

/* Restore View Services button on mobile */
.hero-btns .btn-outline { display: inline-flex !important; }
