/* ============================================================
   STOXBELL — Minimal Premium CSS
   Pure white · Monochromatic · Production-ready
   ============================================================ */



/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-soft:     #f8f8f8;
  --bg-muted:    #f2f2f2;
  --border:      #e5e5e5;
  --border-dark: #d0d0d0;

  --ink:         #0a0a0a;
  --ink-2:       #1a1a1a;
  --ink-3:       #3a3a3a;
  --ink-muted:   #595959;
  --ink-faint:   #9a9a9a;

  --accent:      #00c851;
  --accent-dark: #009e40;
  --accent-bg:   rgba(0, 200, 81, 0.06);
  --accent-border: rgba(0, 200, 81, 0.2);

  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-xs:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:   0 4px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.09);
  --shadow-lg:   0 20px 50px rgba(0,0,0,0.10);

  --t:           all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      all 0.16s ease;

  --nav-h:       72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-3);
  line-height: 1.7;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -200px;
  left: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  z-index: 99999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
  white-space: nowrap;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Focus Visible ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 3px; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography helpers ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.section-eyebrow svg { flex-shrink: 0; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-title em { font-style: normal; color: var(--accent-dark); }

.section-body {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 560px;
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-body { margin: 0 auto; }

/* On mobile, let section body flow to full width */
@media (max-width: 768px) {
  .section-body, .hero-body { max-width: 100%; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: var(--t);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,200,81,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-dark);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent-border);
}
.btn-outline-accent:hover {
  background: var(--accent-bg);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

/* Touch device: always show reveal animations as done (no hover on touch) */
@media (hover: none) {
  .service-arrow { opacity: 1 !important; transform: none !important; color: var(--ink-3) !important; }
  .service-card:active { background: var(--ink); }
  .service-card:active h3 { color: white; }
  .service-card:active p  { color: rgba(255,255,255,0.6); }
  .service-card:active .service-arrow { color: var(--accent) !important; }
  .btn { min-height: 48px; }
  .nav-link { min-height: 44px; display: flex !important; align-items: center; }
  .mobile-nav-link { min-height: 48px; }
  .faq-q { min-height: 56px; }
}

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal        { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left   { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right  { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  /* Fixed height — never changes, prevents layout jump */
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  /* Only transition background & box-shadow, never height */
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  /* NO height change here */
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
  /* Logo size stays consistent — no resize on scroll */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
  letter-spacing: 0.1px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
  background: var(--bg-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-actions .btn {
  padding: 9px 20px;
  font-size: 13px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: var(--t-fast);
}
.hamburger:hover { border-color: var(--ink); }
.hamburger span {
  display: block;
  height: 1.5px;
  width: 18px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Nav — uses visibility+opacity (not display:none) for smooth transition */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 0 24px 28px;
  display: block;         /* always in DOM, controlled by visibility */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: all;
}
/* Nav links inside mobile nav */
.mobile-nav .mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-3);
  border-bottom: 1px solid var(--border);
  background: none;
  transition: var(--t-fast);
}
.mobile-nav .mobile-nav-link:hover { color: var(--ink); padding-left: 6px; }
/* Button area — completely separate from nav links */
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 4px;
}
.mobile-nav-actions .btn {
  width: 100%;
  justify-content: center;
  /* Override any inherited 'a' styles from .mobile-nav */
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: none !important;
  display: flex;
  text-align: center;
}
.mobile-nav-actions .btn-dark {
  background: var(--ink) !important;
  color: white !important;
  border: none !important;
}
.mobile-nav-actions .btn-ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--border-dark) !important;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle grid bg */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 20%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em { font-style: normal; color: var(--accent-dark); }

.hero-body {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 72px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
}
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stat {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: var(--t);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--bg-soft); }

.stat-value {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value sup { font-size: 0.45em; vertical-align: super; color: var(--accent-dark); font-weight: 700; }
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--bg);
}

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

.about-visual-block {
  position: relative;
}

.about-card-main {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.about-card-main img {
  width: 120px;
  height: auto;
}

.about-card-main-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.about-card-tagline {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Floating stat cards */
.about-float {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}
.about-float-top-right {
  top: -20px;
  right: -24px;
}
.about-float-bottom-left {
  bottom: -20px;
  left: -24px;
}
.float-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.float-value span { color: var(--accent-dark); }
.float-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

/* About text */
.about-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--t-fast);
}
.about-point:last-child { border-bottom: none; }
.about-point:hover { padding-left: 4px; }

.about-point-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-soft);
  color: var(--ink-3);
  transition: var(--t-fast);
}
.about-point:hover .about-point-icon {
  border-color: var(--accent-border);
  background: var(--accent-bg);
  color: var(--accent-dark);
}

.about-point h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.about-point p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
#services {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: white;
  padding: 40px 32px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--ink);
  z-index: 1;
}
.service-card:hover .service-icon { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: white; }
.service-card:hover h3 { color: white; }
.service-card:hover p  { color: rgba(255,255,255,0.6); }
.service-card:hover .service-arrow { color: var(--accent); opacity: 1; transform: translateX(0); }

.service-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ink-3);
  transition: var(--t);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  transition: var(--t);
}
.service-card p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  transition: var(--t);
}

.service-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0.6;
  transform: translateX(-4px);
  transition: var(--t);
}

/* 7th service — full-width dark highlight strip */
.service-highlight {
  margin-top: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.service-highlight-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.service-highlight-text {
  flex: 1;
}
.service-highlight-text h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.service-highlight-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 600px;
}

@media (max-width: 768px) {
  .service-highlight {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    gap: 18px;
  }
  .service-highlight .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════ */
#why-us {
  padding: 100px 0;
  background: var(--bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.why-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  transition: var(--t);
  position: relative;
}
.why-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.why-card-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.why-card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--ink-3);
  margin-bottom: 18px;
  transition: var(--t-fast);
}
.why-card:hover .why-card-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* Horizontal rule testimonial */
.why-testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: white;
}

.testimonial-q {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 28px;
}
.testimonial-q::before {
  content: '\201C';
  font-size: 3em;
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 44px; height: 44px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.t-role {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.t-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.t-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
  min-width: 130px;
}
.t-stat-val {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.t-stat-val span { color: var(--accent-dark); }
.t-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   IPO PROCESS
   ════════════════════════════════════════════════════════════ */
#process {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  background: white;
  padding: 36px 32px;
  position: relative;
  transition: var(--t);
}
.process-step:hover { background: var(--bg-soft); }

.process-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.process-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  margin-bottom: 18px;
  transition: var(--t-fast);
}
.process-step:hover .process-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.process-step h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
#contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  background: white;
}

.form-heading {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: var(--t);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-group select option { background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-faint); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ink);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
}

.form-legal {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-top: 14px;
}
.form-legal a { color: var(--ink-muted); text-decoration: underline; }

/* Success */
.success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
}
.success-msg.show { display: flex; }
.success-msg svg { flex-shrink: 0; }

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
}
.info-card-head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.3px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--t-fast);
}
.info-row:last-child { border-bottom: none; }
.info-row:hover { background: var(--bg-soft); }

.info-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-3);
}

.info-text {
  flex: 1;
}
.info-text span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-faint);
  margin-bottom: 3px;
}
.info-text a, .info-text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  transition: var(--t-fast);
}
.info-text a:hover { color: var(--accent-dark); }

/* CTA */
.cta-card {
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--ink);
  color: white;
  padding: 32px 28px;
  text-align: center;
}
.cta-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cta-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.cta-card .btn {
  width: 100%;
  justify-content: center;
  background: white;
  color: var(--ink);
  border: none;
}
.cta-card .btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}

.footer-main {
  padding: 72px 0 48px;
}

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

.footer-brand img {
  height: 36px;
  width: auto;
  opacity: 0.92;
  margin-bottom: 18px;
  display: block;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}
.s-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--t-fast);
  text-decoration: none;
}
.s-btn:hover { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.25); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: var(--t-fast);
}
.footer-links a:hover { color: white; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
}
.footer-contact-row svg { flex-shrink: 0; opacity: 0.5; margin-top: 1px; }
.footer-contact-row a { color: rgba(255,255,255,0.45); transition: var(--t-fast); }
.footer-contact-row a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-inner p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-inner p span { color: rgba(255,255,255,0.55); }

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  transition: var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* Disclaimer */
.sebi-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  background: #050505;
}
.sebi-bar p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}
.sebi-bar p strong { color: rgba(255,255,255,0.35); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ════════════════════════════════════════════════════════════ */
#scrollTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--t);
  box-shadow: var(--shadow-md);
}
#scrollTop.visible { opacity: 1; transform: none; }
#scrollTop:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* WhatsApp */
.wa-float {
  position: fixed;
  bottom: 88px; right: 32px;
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: var(--shadow-md);
  transition: var(--t);
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37,211,102,0.35); }
.wa-float svg { width: 22px; height: 22px; fill: white; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats     { grid-template-columns: repeat(2, 1fr); }
  .why-testimonial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .t-divider { display: none; }
  .t-stats { flex-direction: row; gap: 32px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 18px; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  /* .mobile-nav is always display:block — open/close via visibility/opacity in CSS */

  .hero-inner { padding: 36px 0 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 24px 18px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Keep position:relative so the absolute float badges still overlay correctly */
  .about-visual-block {
    position: relative;
  }
  /* Give the main card extra padding so the overflowing badges aren't clipped */
  .about-card-main {
    padding: 56px 28px;
    margin: 24px 8px; /* room for the badges that poke outside */
  }
  /* Scale badges down slightly to fit the narrower mobile width */
  .about-float {
    padding: 12px 16px;
  }
  .float-value {
    font-size: 22px;
  }
  /* Reposition badges to stay within visible bounds on small screens */
  .about-float-top-right {
    top: -8px;
    right: 8px;
  }
  .about-float-bottom-left {
    bottom: -8px;
    left: 8px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid   { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }

  .contact-grid  { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .why-testimonial { padding: 28px 22px; }
  .t-stats { flex-direction: column; gap: 16px; }

  #scrollTop { bottom: 18px; right: 18px; }
  .wa-float  { bottom: 72px; right: 18px; }

  .section-header { margin-bottom: 48px; }
  #about, #services, #why-us, #process, #contact { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -0.02em; }
  .hero-trust { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   SERVICE MODAL
   ════════════════════════════════════════════════════════════ */
#service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#service-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.svc-modal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--border-dark) transparent;
}
#service-modal-overlay.open .svc-modal {
  transform: none;
}

/* Scrollbar inside modal */
.svc-modal::-webkit-scrollbar { width: 4px; }
.svc-modal::-webkit-scrollbar-track { background: transparent; }
.svc-modal::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 2px; }

/* Header */
.svc-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1;
}
.svc-modal-meta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
}
.svc-modal-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  margin-top: 2px;
}
.svc-modal-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.svc-modal-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 5px;
}
.svc-modal-subtitle {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.svc-modal-close {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-muted);
  transition: var(--t-fast);
  margin-top: 4px;
}
.svc-modal-close:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.svc-modal-close:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

/* Body */
.svc-modal-body {
  padding: 32px 40px 40px;
}
.svc-modal-intro {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

/* Points */
.svc-modal-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.svc-modal-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bg-muted);
  transition: var(--t-fast);
}
.svc-modal-point:last-child { border-bottom: none; }
.svc-modal-point:hover { padding-left: 6px; }
.svc-mp-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  margin-top: 1px;
  transition: var(--t-fast);
}
.svc-modal-point:hover .svc-mp-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.svc-mp-head {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.svc-mp-body {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* Footer */
.svc-modal-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  flex-wrap: wrap;
}
.svc-modal-cta { flex-shrink: 0; }
.svc-modal-back {
  font-size: 13px;
  padding: 11px 20px;
  color: var(--ink-muted);
  background: transparent;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--t-fast);
}
.svc-modal-back:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg-soft);
}

/* Service card — upgrade arrow into a real button-like element */
.service-arrow {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-arrow:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile modal adjustments */
@media (max-width: 600px) {
  .svc-modal-header { padding: 24px 22px 20px; }
  .svc-modal-body   { padding: 24px 22px 32px; }
  .svc-modal-meta   { flex-direction: row; gap: 14px; }
  .svc-modal-footer { flex-direction: column; align-items: stretch; }
  .svc-modal-footer .btn { justify-content: center; width: 100%; }
}

/* ════════════════════════════════════════════════════════════
   DARK MODE (prefers-color-scheme)
   ════════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  .svc-modal {
    background: var(--bg);
    border-color: var(--border);
  }
  .svc-modal-header { background: var(--bg); }
}

/* ════════════════════════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════════════════════════ */
#faq {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 32px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.18s ease;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q[aria-expanded="true"] { background: var(--bg-soft); }

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  background: var(--bg);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a.faq-open { max-height: 600px; }

.faq-a-inner {
  padding: 0 32px 24px;
  border-top: 1px solid var(--border);
}
.faq-a-inner p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.85;
  padding-top: 20px;
}
.faq-a-inner p strong { color: var(--ink); font-weight: 700; }
.faq-a-inner p a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.faq-a-inner p a:hover { color: var(--ink); }

@media (max-width: 768px) {
  #faq { padding: 72px 0; }
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a-inner { padding: 0 20px 20px; }
  .faq-list { border-radius: var(--radius-md); }
}

/* ════════════════════════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════════════════════════ */
@media print {
  .navbar, .mobile-nav, .hamburger,
  .wa-float, #scrollTop, .hero-actions,
  .service-arrow, #service-modal-overlay { display: none !important; }

  body { font-size: 11pt; line-height: 1.6; color: #000; background: #fff; }
  a { color: #000; text-decoration: none; }
  a[href^="http"]:after { content: " (" attr(href) ")"; font-size: 0.75em; color: #555; }
  a[href^="tel"]:after, a[href^="mailto"]:after { content: " (" attr(href) ")"; font-size: 0.85em; }
  h1, h2, h3 { page-break-after: avoid; color: #000; }
  section { page-break-inside: avoid; padding: 20pt 0; }
  .container { max-width: 100%; padding: 0; }
  .services-grid, .why-us-grid, .process-grid { display: block; }
  .service-card, .why-card, .process-step { border: 1pt solid #ccc; margin-bottom: 10pt; padding: 10pt; break-inside: avoid; }
  footer { background: #fff !important; color: #000 !important; border-top: 1pt solid #ccc; }
  footer * { color: #000 !important; }
}
