/* ============================================================
   UNFOLD INFOTECH — Master Stylesheet
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Greens */
  --green:         #16a34a;
  --green-light:   #22c55e;
  --green-dark:    #15803d;
  --green-darker:  #166534;
  --green-pale:    #f0fdf4;
  --green-50:      #dcfce7;
  --green-900:     #052e16;

  /* Emerald–Teal accents (brighter palette) */
  --emerald:       #10b981;
  --emerald-light: #34d399;
  --teal:          #06b6d4;
  --teal-light:    #22d3ee;
  --teal-pale:     #ecfeff;
  --mint:          #d1fae5;

  /* Gradients (brightened) */
  --grad-primary:  linear-gradient(135deg, #17b455 0%, #10c88f 48%, #08c4e6 100%);
  --grad-primary-hover: linear-gradient(135deg, #15a34a 0%, #0bb87f 48%, #06aecf 100%);
  --grad-bright:   linear-gradient(120deg, #2bd267 0%, #14d19a 45%, #34e0f5 100%);
  --grad-soft:     linear-gradient(135deg, #edfdf3 0%, #e6fcff 100%);
  --grad-hero:     linear-gradient(140deg, #0a3f28 0%, #0d5940 28%, #0a7357 58%, #0a8378 100%);
  --grad-cta:      linear-gradient(120deg, #12a052 0%, #10c88f 45%, #08c4e6 100%);

  /* Neutrals */
  --navy:          #0f172a;
  --navy-light:    #1e293b;
  --slate:         #334155;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --white:         #ffffff;
  --off-white:     #f8fafc;

  /* Dark sections */
  --dark-bg:       #071b12;
  --dark-card:     rgba(255,255,255,0.05);
  --dark-border:   rgba(255,255,255,0.1);

  /* Glassmorphism */
  --glass-bg:      rgba(255,255,255,0.08);
  --glass-border:  rgba(255,255,255,0.18);
  --glass-blur:    16px;

  /* Spacing */
  --section-py:    100px;
  --section-py-sm: 64px;

  /* Typography */
  --font-sans:     'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display:  'Plus Jakarta Sans', 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Radii */
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-full:   100px;

  /* Shadows */
  --shadow:        0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.12);
  --shadow-glow:   0 0 30px rgba(16,185,129,.28);
  --shadow-glow-teal: 0 10px 30px rgba(6,182,212,.25);

  /* Transitions */
  --transition:    0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--green-50); color: var(--green-darker); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; }
.logo-text { font-family: var(--font-display); }

.section-tag {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-tag::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-primary); display: inline-block;
}
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle { color: var(--muted); max-width: 580px; font-size: 1.05rem; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

.highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Soft tinted section */
.soft-section { background: var(--grad-soft); }

/* Dark section text overrides */
.dark-section { background: var(--dark-bg); color: rgba(255,255,255,.9); }
.dark-section .section-tag { -webkit-text-fill-color: initial; }
.dark-section .section-title { color: var(--white); }
.dark-section .section-subtitle { color: rgba(255,255,255,.6); }

.green-section {
  background: var(--grad-hero);
  color: rgba(255,255,255,.9);
}
.green-section .section-title { color: var(--white); }
.green-section .section-subtitle { color: rgba(255,255,255,.65); }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: var(--section-py) 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .95rem; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap; position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-primary); color: var(--white); border-color: transparent;
  background-size: 150% 150%; background-position: 0% 50%;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(16,185,129,.4);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1); border-color: var(--white);
}
.btn-white {
  background: var(--white); color: var(--green-dark); border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-pale); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-ghost {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-ghost:hover {
  background: var(--green); color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; border-radius: var(--radius); }
.btn-full { width: 100%; }

.btn .btn-arrow {
  transition: transform var(--transition);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== CARDS ===== */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: var(--transition);
}
.card-hover:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-8px);
}
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.card-dark {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
}

/* ===== ICON CONTAINERS ===== */
.icon-box {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(16,185,129,.28);
  background-size: 150% 150%; background-position: 0% 50%;
}
.icon-box svg { width: 24px; height: 24px; }
.card-hover:hover .icon-box {
  background-position: 100% 50%; transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 12px 26px rgba(6,182,212,.4);
}

/* Soft (pale) icon variant */
.icon-box-soft {
  background: var(--grad-soft); color: var(--emerald);
  box-shadow: none; border: 1px solid var(--mint);
}
.card-hover:hover .icon-box-soft { background: var(--grad-primary); color: var(--white); }

.icon-box-dark {
  background: rgba(16,185,129,.15); color: var(--emerald-light);
  box-shadow: none;
}
.card-hover:hover .icon-box-dark,
.card-glass:hover .icon-box-dark { background: var(--grad-primary); color: var(--white); }

/* ===== NAVBAR ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  height: 80px;
}
.header.scrolled {
  height: 68px; background: rgba(255,255,255,.96);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header-inner {
  display: flex; align-items: center; gap: 18px; height: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; }
.logo-text { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.logo-text span { color: var(--green); }

.logo-white .logo-text { color: var(--white); }
.logo-white .logo-text span { color: var(--green-light); }

/* Nav */
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 2px; }
.nav-link {
  display: block; padding: 8px 12px; border-radius: 6px;
  color: var(--slate); font-weight: 500; font-size: .9rem;
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--green); background: var(--green-pale); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.5); opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 80vw; background: var(--white);
  padding: 80px 24px 32px; transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block; padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 1.05rem; font-weight: 500; color: var(--navy);
  transition: var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--green); background: var(--green-pale); }
.mobile-nav .btn { margin-top: 20px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 80px;
  background: var(--grad-hero);
  color: var(--white);
}
.hero-gradient-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 640px 520px at 18% 45%, rgba(20,209,154,.46) 0%, transparent 70%),
    radial-gradient(ellipse 520px 440px at 78% 18%, rgba(43,210,103,.38) 0%, transparent 62%),
    radial-gradient(ellipse 480px 400px at 62% 82%, rgba(8,196,230,.36) 0%, transparent 62%),
    radial-gradient(ellipse 360px 340px at 92% 62%, rgba(52,224,245,.26) 0%, transparent 55%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}
.hero-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
}
.hero-float {
  position: absolute; pointer-events: none; opacity: .12;
}
.hero-float-1 { top: 15%; right: 10%; width: 120px; height: 120px; animation: float 6s ease-in-out infinite; }
.hero-float-2 { bottom: 20%; right: 25%; width: 80px; height: 80px; animation: float 8s ease-in-out infinite 1s; }
.hero-float-3 { top: 40%; left: 5%; width: 60px; height: 60px; animation: float 7s ease-in-out infinite 2s; }

.hero-content {
  position: relative; z-index: 2; max-width: 720px;
  padding: 60px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.14); border: 1px solid rgba(34,211,238,.35);
  color: var(--emerald-light); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-full);
  margin-bottom: 28px; backdrop-filter: blur(6px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light);
  box-shadow: 0 0 10px var(--teal-light);
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 900;
  line-height: 1.08; margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  max-width: 540px; margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Wave Divider */
.wave-divider {
  position: absolute; bottom: 0; left: 0; width: 100%;
  line-height: 0; z-index: 3;
}
.wave-divider svg { width: 100%; height: auto; }

/* ===== MARQUEE ===== */
.marquee-section { padding: 40px 0; overflow: hidden; background: var(--white); }
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  flex-shrink: 0; padding: 12px 32px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; color: var(--muted);
  letter-spacing: .04em; white-space: nowrap;
  background: var(--off-white);
}
.marquee-wrapper {
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }

/* ===== SERVICES ===== */
.services-section { background: var(--grad-soft); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card { text-align: left; }
.service-card .icon-box { margin-bottom: 20px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .93rem; line-height: 1.65; margin-bottom: 16px; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-weight: 600; font-size: .9rem;
  transition: var(--transition);
}
.service-card .learn-more svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .learn-more svg { transform: translateX(4px); }

/* ===== STATS ===== */
.stats-section {
  position: relative;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-value { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-plus {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; line-height: 1;
  background: var(--grad-bright);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900;
  background: var(--grad-bright);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px; font-variant-numeric: tabular-nums;
}
.stat-label { font-size: .95rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ===== PROCESS / TIMELINE ===== */
.process-section { background: var(--white); }
.process-track {
  display: flex; gap: 0; position: relative; padding: 20px 0;
}
.process-step {
  flex: 1; text-align: center; position: relative; padding: 0 12px;
}
.process-step::before {
  content: ''; position: absolute; top: 28px; left: 50%; right: -50%;
  height: 2px; background: var(--border);
}
.process-step:last-child::before { display: none; }
.step-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--grad-soft); border: 2px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 1;
  color: var(--emerald); font-weight: 800; font-size: 1.1rem;
  transition: var(--transition);
}
.process-step:hover .step-circle {
  background: var(--grad-primary); color: var(--white); border-color: transparent;
  box-shadow: 0 0 0 8px rgba(16,185,129,.14), 0 10px 24px rgba(6,182,212,.3);
}
.step-icon { width: 24px; height: 24px; }
.process-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: .82rem; color: var(--muted); max-width: 140px; margin: 0 auto; }

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--off-white); }
.industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.industry-card {
  text-align: center; padding: 32px 20px;
}
.industry-card .icon-box {
  margin: 0 auto 16px; width: 52px; height: 52px;
}
.industry-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.industry-card p { font-size: .82rem; color: var(--muted); }

/* ===== TECH STACK ===== */
.tech-section { background: var(--white); }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 24px; border-radius: var(--radius-full); border: 1px solid var(--border);
  background: var(--white); color: var(--slate); font-weight: 600; font-size: .9rem;
  transition: var(--transition); cursor: pointer;
}
.tab-btn:hover { border-color: var(--green); color: var(--green); }
.tab-btn.active { background: var(--grad-primary); color: var(--white); border-color: transparent; box-shadow: 0 6px 16px rgba(16,185,129,.3); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s ease; }
.tech-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px;
}
.tech-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--off-white); transition: var(--transition);
}
.tech-item:hover { border-color: var(--emerald); transform: translateY(-4px); box-shadow: var(--shadow-glow); background: var(--white); }
.tech-item .tech-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; line-height: 1;
}
.tech-item .tech-icon i { font-size: 2.6rem; }
.tech-item .tech-icon.mono {
  font-size: 1.4rem; font-weight: 800; color: var(--white);
  background: var(--grad-primary); border-radius: 12px;
}
.tech-item span { font-size: .84rem; font-weight: 600; color: var(--slate); text-align: center; }

/* ===== WHY CHOOSE US ===== */
.why-section {
  position: relative; overflow: hidden;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.why-card .icon-box-dark { margin-bottom: 20px; width: 52px; height: 52px; border-radius: 14px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--grad-cta);
  background-size: 180% 180%; animation: gradientShift 10s ease infinite;
  padding: 84px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle 300px at 15% 20%, rgba(255,255,255,.18) 0%, transparent 60%),
    radial-gradient(circle 260px at 85% 80%, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; color: var(--white); }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: var(--white); border: none; width: 100%;
  text-align: left; font-weight: 600; font-size: 1rem; color: var(--navy);
  cursor: pointer; transition: var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--green); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px; color: var(--slate); font-size: .95rem; line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding-top: 72px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-col h4 {
  color: var(--white); font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-brand p { margin-top: 14px; font-size: .9rem; line-height: 1.6; }
.footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-social a:hover {
  background: var(--green); border-color: var(--green); color: var(--white);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem; color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }

.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--green-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item p { font-size: .9rem; line-height: 1.6; }

/* Newsletter */
.footer-newsletter { border-top: 1px solid rgba(255,255,255,.08); padding: 32px 0; }
.newsletter-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: space-between;
}
.newsletter-inner p { font-size: .9rem; color: rgba(255,255,255,.6); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  padding: 12px 18px; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm); background: rgba(255,255,255,.05);
  color: var(--white); font-size: .9rem; width: 260px; outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--green); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.gst-mono { font-family: var(--font-mono); letter-spacing: .04em; color: var(--green-light); font-weight: 600; }

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
  position: relative; padding: 150px 0 90px;
  background: var(--grad-hero);
  color: var(--white); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 520px 380px at 15% 40%, rgba(16,185,129,.32) 0%, transparent 68%),
    radial-gradient(ellipse 460px 360px at 82% 30%, rgba(6,182,212,.26) 0%, transparent 62%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-dot-grid { position: absolute; inset: 0; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,.65); margin-top: 12px; max-width: 520px; font-size: 1.05rem; }

/* ===== ABOUT PAGE ===== */
.story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.story-content p { color: var(--slate); margin-bottom: 16px; line-height: 1.75; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { padding: 40px 32px; }
.vm-card .icon-box { margin-bottom: 20px; }
.vm-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.vm-card p { color: var(--muted); line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 32px 20px; }
.value-card .icon-box { margin: 0 auto 16px; }
.value-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: .88rem; color: var(--muted); }

.leader-card {
  max-width: 400px; margin: 0 auto; text-align: center; padding: 48px 32px;
}
.leader-avatar {
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--grad-primary); border: none;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--white);
  box-shadow: 0 12px 28px rgba(16,185,129,.35);
}
.leader-avatar svg { width: 48px; height: 48px; }
.leader-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.leader-card .leader-role { color: var(--green); font-weight: 600; font-size: .9rem; margin-bottom: 16px; }
.leader-card p { color: var(--slate); font-size: .93rem; line-height: 1.7; }

.company-details {
  max-width: 600px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.detail-row {
  display: flex; padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-row:nth-child(even) { background: var(--off-white); }
.detail-label { font-weight: 600; color: var(--muted); font-size: .88rem; min-width: 160px; }
.detail-value { color: var(--navy); font-size: .95rem; }

/* ===== SERVICES PAGE ===== */
.service-detail { padding: var(--section-py) 0; }
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }

.service-detail h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-detail > .container > .service-detail-inner > div > p { color: var(--slate); margin-bottom: 24px; line-height: 1.7; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .93rem; font-weight: 500; color: var(--navy);
}
.feature-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

.service-illustration {
  background: var(--grad-soft); border: 1px solid var(--mint);
  border-radius: var(--radius-lg);
  padding: 48px; display: flex; align-items: center; justify-content: center;
  min-height: 320px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.service-illustration::before {
  content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: var(--grad-bright); opacity: .12; top: -60px; right: -60px;
}
.service-illustration svg { width: 100%; max-width: 300px; color: var(--emerald); position: relative; z-index: 1; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info p { color: var(--slate); margin-bottom: 32px; line-height: 1.7; }
.contact-blocks { display: flex; flex-direction: column; gap: 24px; }
.contact-block { display: flex; gap: 14px; }
.contact-block .icon-box { width: 48px; height: 48px; }
.contact-block h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.contact-block p { color: var(--slate); font-size: .9rem; line-height: 1.6; }

.contact-form-card {
  background: var(--grad-soft); border: 1px solid var(--mint);
  border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.contact-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-primary);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: .88rem;
  color: var(--slate); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  color: var(--navy); background: var(--white); outline: none;
  transition: var(--transition); 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='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

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

.form-note { margin-top: 12px; font-size: .88rem; text-align: center; }
.form-note.success { color: var(--green-dark); }

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

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero { min-height: auto; padding-top: 80px; padding-bottom: 0; }
  .hero-content { padding: 48px 24px 80px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .process-track { flex-direction: column; align-items: flex-start; gap: 24px; }
  .process-step { text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 0; }
  .process-step::before { top: 28px; left: 28px; right: auto; bottom: -24px; width: 2px; height: calc(100% + 24px); }
  .process-step:last-child::before { display: none; }
  .step-circle { margin: 0; flex-shrink: 0; }
  .process-step p { margin: 0; max-width: none; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form input { width: 200px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tabs { gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: .82rem; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   PHASE 2 — RICH HEADER, FOOTER & NEW PAGE COMPONENTS
   ============================================================ */

/* ===== TOP UTILITY BAR ===== */
.topbar {
  background: var(--grad-hero); color: rgba(255,255,255,.8);
  font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 40px; flex-wrap: nowrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; color: var(--emerald-light); }
.topbar a.topbar-item:hover { color: var(--white); }
.topbar-gst { color: var(--emerald-light); font-weight: 600; font-family: var(--font-mono); letter-spacing: .03em; }

/* ===== HEADER (Phase 2 overrides) ===== */
.site-header-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.site-header-wrap .header { position: static; }
.header .container { max-width: 1280px; }
.has-fixed-header { padding-top: 120px; }         /* topbar(40) + header(80) */
.has-fixed-header.no-topbar { padding-top: 80px; }

/* Dropdown / mega menu nav */
.nav-list > li { position: relative; }
.nav-item-toggle {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  background: none; border: none;
}
.nav-item-toggle .caret { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-list > li:hover .nav-item-toggle .caret,
.nav-list > li.open .nav-item-toggle .caret { transform: rotate(180deg); }

/* Simple dropdown */
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1200;
}
.nav-list > li:hover .dropdown,
.nav-list > li.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--radius-sm); color: var(--slate); font-size: .9rem; font-weight: 500;
  transition: var(--transition);
}
.dropdown a:hover { background: var(--grad-soft); color: var(--green-dark); }
.dropdown a svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }

/* Mega menu (Services) */
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 620px; max-width: 90vw; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px;
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1200;
}
.nav-list > li:hover .mega,
.nav-list > li.open .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mega-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--radius); transition: var(--transition); }
.mega-item:hover { background: var(--grad-soft); }
.mega-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: var(--grad-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(16,185,129,.28);
}
.mega-ico svg { width: 20px; height: 20px; }
.mega-item h5 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.mega-item p { font-size: .78rem; color: var(--muted); line-height: 1.45; }
.mega-foot {
  margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.mega-foot span { font-size: .85rem; color: var(--muted); }

/* ===== MOBILE NAV (Phase 2 groups) ===== */
.m-group { border-bottom: 1px solid var(--border); }
.m-group-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 4px; background: none; border: none; font-size: 1.02rem;
  font-weight: 600; color: var(--navy); cursor: pointer;
}
.m-group-toggle svg { width: 18px; height: 18px; transition: transform var(--transition); color: var(--muted); }
.m-group.open .m-group-toggle svg { transform: rotate(180deg); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.m-sub a { display: block; padding: 10px 16px; color: var(--slate); font-size: .95rem; }
.m-sub a:hover { color: var(--green); }

/* ===== FOOTER (Phase 2) ===== */
.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-cta {
  background: var(--grad-cta); border-radius: var(--radius-lg);
  padding: 40px 44px; margin-bottom: 56px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.footer-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 240px at 12% 20%, rgba(255,255,255,.18), transparent 60%);
}
.footer-cta > * { position: relative; z-index: 1; }
.footer-cta h3 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 6px; }
.footer-cta p { color: rgba(255,255,255,.85); font-size: .95rem; }

/* ===== SIMPLE HERO CTA ROW (page hero buttons) ===== */
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ===== FEATURE / VALUE GRID (generic 3-col cards) ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.info-card { padding: 32px 26px; text-align: left; }
.info-card .icon-box { margin-bottom: 18px; }
.info-card h3, .info-card h4 { font-size: 1.08rem; margin-bottom: 10px; color: var(--navy); }
.info-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ===== NUMBERED STEP CARDS ===== */
.step-num-card { position: relative; padding: 36px 28px 30px; }
.step-num {
  font-size: 2.4rem; font-weight: 900; line-height: 1;
  background: var(--grad-primary); -webkit-background-clip: text; background-clip: text;
  color: transparent; margin-bottom: 12px; display: block;
}
.step-num-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step-num-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ===== SPLIT (text + illustration) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.split-body > p { color: var(--slate); line-height: 1.75; margin-bottom: 20px; }

/* ===== PRICING / ENGAGEMENT CARDS ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 30px;
  background: var(--white); transition: var(--transition); position: relative;
}
.price-card.featured { border-color: transparent; box-shadow: var(--shadow-lg), var(--shadow-glow); }
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
  background: var(--grad-primary); color: var(--white); font-size: .72rem; font-weight: 700;
  padding: 5px 16px; border-radius: var(--radius-full); letter-spacing: .04em;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.price-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.price-card .price-sub { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.price-card .price-tag { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; }
.price-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--slate); }
.price-list svg { width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

/* ===== CASE STUDY CARDS ===== */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); transition: var(--transition); display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--shadow-glow); border-color: transparent; }
.case-thumb {
  height: 170px; background: var(--grad-primary); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.case-thumb svg { width: 64px; height: 64px; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.case-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 160px at 80% 20%, rgba(255,255,255,.25), transparent 60%);
}
.case-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.case-tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--emerald); background: var(--mint);
  padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.case-body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.case-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.case-metrics { display: flex; gap: 20px; margin-bottom: 18px; }
.case-metric strong { display: block; font-size: 1.3rem; font-weight: 900; background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-metric span { font-size: .75rem; color: var(--muted); }

/* ===== STAT / METRIC STRIP (light) ===== */
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.metric-strip .stat-number { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric-strip .stat-label { color: var(--muted); }

/* ===== PROSE (privacy / legal) ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--navy); }
.prose h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--navy); }
.prose p, .prose li { color: var(--slate); line-height: 1.8; font-size: .96rem; margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 16px; list-style: disc; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }

/* ===== SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sitemap-col h4 { font-size: .95rem; margin-bottom: 14px; color: var(--navy); }
.sitemap-col a { display: block; padding: 7px 0; color: var(--slate); font-size: .92rem; transition: var(--transition); }
.sitemap-col a:hover { color: var(--green); padding-left: 5px; }

/* ===== MAP ===== */
.map-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); line-height: 0;
}
.map-card iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(1.05); }

/* ===== CALLOUT / CHIP LISTS ===== */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border: 1px solid var(--mint); background: var(--grad-soft); border-radius: var(--radius-full);
  font-size: .85rem; font-weight: 600; color: var(--green-dark);
}
.chip svg { width: 15px; height: 15px; color: var(--emerald); }

/* ===== CHECK LIST (generic) ===== */
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--slate); font-size: .95rem; line-height: 1.55; }
.check-list svg { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

/* ===== FORM CARD (careers / generic light) ===== */
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}

/* ============================================================
   PHASE 2 — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mega { width: 520px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-item.hide-sm { display: none; }
  .topbar-inner { justify-content: center; gap: 16px; height: auto; padding: 8px 0; flex-wrap: wrap; }
  .has-fixed-header { padding-top: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .case-grid { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
}
