:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.085);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.12);
  --brand1:#2563EB; /* blue */
  --brand2:#10B981; /* green */
  --brand3:#22C55E; /* green accent */
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 20px;
  --radius2: 28px;
  
  /* Apple-style easing curves */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(37,99,235,.35), transparent 60%),
    radial-gradient(900px 700px at 90% 0%, rgba(16,185,129,.28), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(34,197,94,.18), transparent 55%),
    var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}
/* ── Navigation ── */
.nav{
  position:sticky; top:0; z-index:100;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(7,10,18,.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: padding .35s var(--ease-out), background .35s;
}
.nav-scrolled{
  background: rgba(7,10,18,.92);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  transition: padding .35s var(--ease-out);
}
.nav-scrolled .nav-inner{ padding: 10px 0; }

/* Brand */
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700; font-size:16px; letter-spacing:.2px;
  transition: opacity .3s;
}
.brand:hover{ opacity:.8 }
.brand-badge{
  width:34px; height:34px; border-radius:12px; flex-shrink:0;
  background: linear-gradient(135deg, #2563EB, #10B981);
  box-shadow: 0 8px 20px rgba(37,99,235,.3);
  position:relative;
  transition: transform .3s var(--ease-spring);
}
.brand:hover .brand-badge{ transform: rotate(-6deg) scale(1.08) }
.brand-badge::after{
  content:''; position:absolute; inset:8px;
  border-radius:8px;
  background: rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.25);
}
.brand-text{ color: var(--text); }
/* Pulsing green availability dot next to brand */
.nav-status-dot{
  width:7px; height:7px; border-radius:50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: statusPulse 2.4s ease-out infinite;
  margin-left:2px;
  flex-shrink:0;
}
@keyframes statusPulse{
  0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.55) }
  60% { box-shadow: 0 0 0 6px rgba(34,197,94,0) }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0) }
}

/* Nav links */
.nav-links{ display:flex; gap:2px; align-items:center; }
.nav-links a{
  font-size:14px; color:var(--muted); font-weight:500;
  padding:8px 13px; border-radius:10px;
  position:relative; transition: color .25s, background .25s;
}
.nav-links a::after{
  content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%);
  width:0; height:2px; border-radius:1px;
  background: linear-gradient(to right, var(--brand1), var(--brand2));
  transition: width .3s var(--ease-out);
}
.nav-links a:hover{ color:var(--text); background:rgba(255,255,255,.06) }
.nav-links a:hover::after{ width:16px }
.nav-links a.active{ color:var(--text); font-weight:600 }
.nav-links a.active::after{ width:20px }

/* Nav dropdown */
.nav-has-drop{ position: relative; }
.nav-drop-trigger{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-drop-chevron{
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
  opacity: .6;
}
.nav-drop-trigger[aria-expanded="true"] .nav-drop-chevron{ transform: rotate(180deg); opacity: 1; }
.nav-dropdown{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 270px;
  background: rgba(10,13,24,.97);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 16px;
  padding: 10px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .22s var(--ease-out), transform .22s var(--ease-out), visibility .22s;
  box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(37,99,235,.12) inset;
  backdrop-filter: blur(20px);
  z-index: 200;
}
.nav-dropdown::before{
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: rgba(10,13,24,.97);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid rgba(37,99,235,.25);
  border-right: 1px solid rgba(37,99,235,.25);
}
.nav-dropdown--open{
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
  transition: background .18s, color .18s;
  text-decoration: none;
}
.nav-dropdown a:hover{
  background: rgba(37,99,235,.12);
  color: var(--text);
}
.nav-dropdown a strong{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.nav-dropdown a em{
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 1px;
}
.nav-drop-divider{
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 4px 2px;
}
/* "All Services" first link — plain, no number */
.nav-dropdown a:first-child{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #2563EB;
  padding: 8px 12px;
}
.nav-dropdown a:first-child:hover{ color: #93C5FD; background: rgba(37,99,235,.1); }
.nav-drop-num{
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.25);
  color: #93C5FD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .03em;
}

/* Mobile sub-menu */
.mobile-sub{
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0 4px 20px;
  border-left: 2px solid rgba(37,99,235,.25);
  margin-left: 20px;
}
.mobile-sub a{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px !important;
  padding: 10px 12px !important;
  color: var(--muted) !important;
}
.mobile-sub a:hover{ color: var(--text) !important; }
.mobile-drop-toggle .nav-drop-chevron{ display: inline; vertical-align: middle; }
.mobile-drop-open .nav-drop-chevron{ transform: rotate(180deg); }

/* Single CTA */
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-book-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(16,185,129,.14));
  border: 1px solid rgba(37,99,235,.35);
  color: var(--text);
  font-size: 14px; font-weight:600;
  transition: background .25s, border-color .25s, transform .25s var(--ease-spring), box-shadow .25s;
  white-space:nowrap;
}
.nav-book-btn:hover{
  background: linear-gradient(135deg, rgba(37,99,235,.32), rgba(16,185,129,.24));
  border-color: rgba(37,99,235,.6);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.2);
}
.nav-book-dot{
  width:7px; height:7px; border-radius:50%;
  background: linear-gradient(135deg, #2563EB, #10B981);
  flex-shrink:0;
}

/* Hamburger */
.nav-hamburger{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px;
  border-radius:10px; transition: background .2s;
}
.nav-hamburger:hover{ background:rgba(255,255,255,.07) }
.nav-hamburger span{
  display:block; width:22px; height:2px; border-radius:2px;
  background:var(--muted);
  transition: transform .3s var(--ease-out), opacity .3s, width .3s;
}
.nav-hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2){ opacity:0; width:0 }
.nav-hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg) }

/* Mobile menu */
.mobile-menu{
  border-top:1px solid rgba(255,255,255,.07);
  padding:16px 0 20px;
  background: rgba(7,10,18,.97);
}
.mobile-menu nav{
  display:flex; flex-direction:column; gap:2px;
  margin-bottom:16px;
}
.mobile-menu nav a{
  font-size:16px; color:var(--muted); font-weight:500;
  padding:12px 20px; border-radius:10px;
  transition: color .2s, background .2s;
}
.mobile-menu nav a:hover, .mobile-menu nav a.active{
  color:var(--text); background:rgba(255,255,255,.06);
}
.mobile-menu .btn{
  display:block; text-align:center; margin:0 20px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 22px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  backdrop-filter: blur(10px);
}
.btn:hover{transform: translateY(-2px) scale(1.02); background:rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); box-shadow: 0 8px 24px rgba(0,0,0,.2)}
.btn:active{transform: translateY(0) scale(0.98)}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(16,185,129,.92));
  box-shadow: 0 20px 50px rgba(16,185,129,.2), 0 0 0 1px rgba(255,255,255,.1) inset;
}
.btn.primary:hover{transform: translateY(-3px) scale(1.03); box-shadow: 0 30px 70px rgba(16,185,129,.3), 0 0 0 1px rgba(255,255,255,.15) inset}
.btn.primary:active{transform: translateY(-1px) scale(0.99)}
.btn .icon{width:18px; height:18px; opacity:.95}

.hero{padding:120px 0 100px; min-height:90vh; display:flex; align-items:center; position:relative; overflow:hidden; background: radial-gradient(ellipse 900px 500px at 50% 40%, rgba(37,99,235,.09) 0%, transparent 70%); contain: layout;}

/* Hero bottom fade — creates a clean cut-off */
.hero::after{
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events:none;
  z-index:3;
}

/* Hero Single Column Layout */
.hero-main-center{text-align:center; max-width:980px; margin:0 auto 60px; position:relative; z-index:2}
.hero-main-center .h1{margin:0 auto 32px}
.hero-main-center .lead{margin:0 auto 36px; max-width:75ch; will-change: transform, opacity;}
.hero-main-center .hero-actions{justify-content:center; will-change: transform, opacity;}
.hero-main-center .hero-badges{justify-content:center}
.hero-eyebrow{ will-change: transform, opacity; }

/* Hero Stats Row */
.hero-stats-row{display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; margin-bottom:48px; position:relative; z-index:2}

/* Hero Metrics Grid */
.hero-metrics-grid{display:grid; grid-template-columns:repeat(2, 1fr); gap:24px; position:relative; z-index:2; margin-bottom:20px}

/* Hero Metric Card */
.hero-metric-card{padding:32px; display:flex; gap:20px; align-items:flex-start; transition:all .4s var(--ease-in-out); position:relative; overflow:hidden}
.hero-metric-card:before{content:''; position:absolute; inset:0 0 0 auto; width:0; height:100%; background:linear-gradient(90deg, transparent, rgba(37,99,235,.1)); transition:width .4s var(--ease-out)}
.hero-metric-card:hover{transform:translateY(-6px); border-color:rgba(255,255,255,.24)}
.hero-metric-card:hover:before{width:100%}
.hero-metric-card .metric-ico{flex-shrink:0}

/* ── Hero schematic SVG background ── */
.hero-schematic{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:0;
  opacity:1;
  /* Promote to own compositor layer so SVG never triggers scroll repaints */
  will-change: opacity;
  contain: strict;
}
/* Ensure hero content always sits above the decorative schematic/orb layer */
.hero > .container{ position:relative; z-index:1; }
/* Scan line: animate only opacity (GPU-composited, zero layout cost) --
   translateY on an SVG rect is not composited; opacity is.            */
.hero-scan{
  animation: scanSweep 5s linear infinite;
}
@keyframes scanSweep{
  0%   { opacity: 0   }
  5%   { opacity: .65 }
  85%  { opacity: .25 }
  100% { opacity: 0   }
}

/* ── Kill old blobs/mesh (kept in DOM for safety but invisible) ── */
.hero-particles{ display:none }
.hero-mesh{ display:none }

/* Animated Gradient Mesh - Optimized (kept for other pages that may use it) */
.hero-eyebrow{
  font-size:14px;
  font-weight:500;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin:0 0 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after{
  content:'';
  display:block;
  width:40px;
  height:1px;
  background:linear-gradient(to right, transparent, rgba(255,255,255,.3));
}
.hero-eyebrow::after{
  background:linear-gradient(to left, transparent, rgba(255,255,255,.3));
}
.h1{
  margin:20px 0 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height:1.1;
  letter-spacing:-1.5px;
  font-weight:700;
  position:relative;
  transition: opacity 0.3s ease;
}
.h1 .word{
  margin-right:0.25em; 
  display:inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead{
  margin:28px 0 28px;
  font-size:21px;
  line-height:1.5;
  color:var(--muted);
  max-width: 60ch;
  font-weight:400;
}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-top:36px}

/* Hero Badges */
.hero-badges{display:flex; gap:12px; flex-wrap:wrap; margin-top:24px}
.hero-badge{display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:999px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); font-size:13px; color:rgba(255,255,255,.75); backdrop-filter:blur(8px); transition:all .3s var(--ease-in-out)}
.hero-badge:hover{background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.24); transform:translateY(-2px)}
.hero-badge .icon{opacity:.85}

/* Enhanced Button Glow - More Visible */
.btn-glow{position:relative; overflow:hidden}
.btn-glow:before{content:''; position:absolute; inset:-4px; background:linear-gradient(135deg, rgba(37,99,235,.8), rgba(16,185,129,.8)); border-radius:20px; opacity:0; filter:blur(24px); transition:opacity .5s; z-index:-1}
.btn-glow:hover:before{opacity:1; animation:pulse 2s infinite}
.btn-glow:after{content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(255,255,255,.1), transparent); border-radius:16px; opacity:0; transition:opacity .3s}
.btn-glow:hover:after{opacity:1}
.panel{
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--radius2);
  box-shadow: 0 20px 70px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06) inset;
  backdrop-filter: blur(10px);
  will-change: transform;
}
.hero-card{padding:28px; transition: transform .5s var(--ease-out)}

/* Stat Cards */
.stat-card{padding:28px; text-align:center; position:relative; overflow:hidden}
.stat-card:before{content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% 0%, rgba(37,99,235,.2), transparent 70%); opacity:0; transition:opacity .5s}
.stat-card:hover:before{opacity:1}
.stat-number{font-size:56px; font-weight:800; line-height:1; background:linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:8px}
.stat-label{font-size:16px; font-weight:600; color:var(--text); margin-bottom:4px}
.stat-sublabel{font-size:13px; color:var(--muted)}

/* Hero Orb - Optimized */
.hero-orb{position:absolute; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle at 30% 30%, rgba(37,99,235,.35), rgba(16,185,129,.25), transparent 70%); filter:blur(70px); top:50%; left:50%; transform:translate(-50%, -50%); animation:orbPulse 8s infinite ease-in-out; pointer-events:none; z-index:0; will-change:transform, opacity}

@keyframes orbPulse{
  0%, 100%{transform:translate(-50%, -50%) scale(1); opacity:0.55}
  50%{transform:translate(-50%, -50%) scale(1.25); opacity:0.85}
}
.hero-metric{display:flex; gap:16px; align-items:flex-start; padding:20px 18px; border-radius:20px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); transition: all .4s var(--ease-in-out); position:relative; overflow:hidden}
.hero-metric:before{content:''; position:absolute; inset:0 0 0 auto; width:0; height:100%; background:linear-gradient(90deg, transparent, rgba(37,99,235,.1)); transition:width .4s var(--ease-out)}
.hero-metric:hover{background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateX(4px)}
.hero-metric:hover:before{width:100%}
.hero-metric + .hero-metric{margin-top:12px}

@media (max-width: 768px){
  .hero-stats-row{grid-template-columns:1fr}
  .hero-metrics-grid{grid-template-columns:1fr}
}
.metric-ico{
  width:44px; height:44px; border-radius:18px;
  background: linear-gradient(135deg, rgba(37,99,235,.5), rgba(16,185,129,.35));
  border:1px solid rgba(255,255,255,.18);
  display:grid; place-items:center;
  box-shadow: 0 8px 24px rgba(37,99,235,.2);
}
.metric-ico svg{width:22px;height:22px}
.metric-t{font-weight:700; font-size:16px; letter-spacing:-.3px; color:rgba(255,255,255,.92)}
.metric-d{color:var(--muted); font-size:13.5px; margin-top:8px; line-height:1.6}

/* ── Gradient line icons ─────────────────────────────────── */
/* Step cards: icon sits left, step number sits right in one row */
.step-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}
.step-ico{
  width:32px; height:32px; display:block; flex-shrink:0;
  filter:
    drop-shadow(0 0 8px rgba(37,99,235,.6))
    drop-shadow(0 0 20px rgba(16,185,129,.28));
  transition: filter .4s var(--ease-out);
}
.step:hover .step-ico{
  filter:
    drop-shadow(0 0 14px rgba(37,99,235,.85))
    drop-shadow(0 0 32px rgba(16,185,129,.5));
}

/* Service & experience cards: icon sits inline left of the h3 */
.card-heading{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.card-heading h3{ margin:0; }
.card-ico{
  width:26px; height:26px; display:block; flex-shrink:0;
  filter:
    drop-shadow(0 0 8px rgba(37,99,235,.55))
    drop-shadow(0 0 18px rgba(16,185,129,.25));
  transition: filter .4s var(--ease-out);
}
.card:hover .card-ico{
  filter:
    drop-shadow(0 0 14px rgba(37,99,235,.8))
    drop-shadow(0 0 30px rgba(16,185,129,.45));
} 
.section{padding:100px 0; scroll-margin-top:80px; position:relative;}

/* Gradient top border line — visually separates sections */
.section::before{
  content:'';
  position:absolute;
  top:0; left:50%; transform:translateX(-50%);
  width:min(800px, 80vw);
  height:1px;
  background: linear-gradient(to right, transparent, rgba(37,99,235,.5), rgba(16,185,129,.5), transparent);
}
.section h2{
  margin:0; 
  font-size:clamp(36px, 5vw, 64px); 
  letter-spacing:-.8px; 
  font-weight:700; 
  line-height:1.1;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section p{color:var(--muted); margin:16px 0 0; max-width: 72ch; font-size:19px; line-height:1.5}
.grid{
  display:grid; gap:20px;
  grid-template-columns: repeat(12, 1fr);
  margin-top:48px;
}
.card{
  grid-column: span 6;
  padding:28px;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  position:relative;
  overflow:hidden;
  transition: all .4s var(--ease-in-out);
  backdrop-filter: blur(10px);
  will-change: transform;
}
.card:hover{
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
}
.card:before{
  content:"";
  position:absolute; inset:-80px -80px auto auto;
  width:280px; height:280px;
  background: radial-gradient(circle at 30% 30%, rgba(16,185,129,.4), transparent 65%);
  filter: blur(40px);
  transform: rotate(15deg);
  pointer-events:none;
  opacity:0;
  transition: opacity .5s var(--ease-in-out);
}
.card:hover:before{
  opacity:1;
}
.card h3{
  margin:0 0 8px; 
  font-size:24px; 
  font-weight:600; 
  letter-spacing:-.3px;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card ul{margin:12px 0 0; padding-left:18px; color:var(--muted); font-size:15px}
.card li{margin:8px 0}
.card .tag{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 14px;
  border-radius: 999px;
  font-size:13px;
  font-weight:600;
  color: rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.card .tag svg{width:15px;height:15px; opacity:.9}

@media (max-width: 900px){
  .card{grid-column: span 12}
  .nav-links{display:none}
  .nav-hamburger{display:flex}
  .hero{padding:80px 0 60px; min-height:auto; overflow:hidden}
  .hero-main-center{margin-bottom:40px}
  .hero-stats-row{grid-template-columns:1fr; gap:16px; margin-bottom:32px}
  .hero-metrics-grid{grid-template-columns:1fr; gap:16px}
  .hero-metric-card{padding:24px; gap:16px}
  .h1{font-size: clamp(42px, 10vw, 72px); line-height:1.08}
  .lead{font-size:18px; max-width:100%}
  .section{padding:70px 0}
  .section h2{font-size: clamp(32px, 8vw, 48px)}
  .hero-card{padding:24px}
  .card{padding:24px}
  .step{padding:22px}
  .nav-cta{gap:8px}
  .btn{padding:12px 18px; font-size:14px}
  .stat-card{padding:24px}
  .stat-number{font-size:48px}
  .particle{opacity:0.4; filter:blur(40px)}
  .particle-1{width:250px; height:250px}
  .particle-2{width:200px; height:200px}
  .particle-3{width:220px; height:220px}
  .particle-4{width:180px; height:180px}
  .particle-5{width:200px; height:200px}
  .particle-6{width:150px; height:150px}
  .hero-orb{width:350px; height:350px}
  .hero-badges{gap:8px}
  .hero-badge{padding:7px 12px; font-size:12px}
  .hero-mesh{opacity:0.6}
}

.split{
  display:grid; gap:24px; align-items:start;
  grid-template-columns: 1fr 1fr;
  margin-top:48px;
}
@media (max-width: 900px){.split{grid-template-columns:1fr}}

.step{
  padding:28px; border-radius: 20px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  position:relative;
  transition: all .3s var(--ease-in-out);
  backdrop-filter: blur(8px);
  will-change: transform;
}
.step:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.step .num{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(37,99,235,.4), rgba(16,185,129,.3));
  border:1px solid rgba(255,255,255,.2);
  font-weight:800;
  font-size:22px;
}
.step h3{
  margin:16px 0 8px; 
  font-size:22px; 
  font-weight:600; 
  letter-spacing:-.3px;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step p{margin:0;color:var(--muted);font-size:16px; line-height:1.5}

.faq{
  margin-top:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
details{border-top:1px solid rgba(255,255,255,.10)}
details:first-child{border-top:none}
summary{
  list-style:none;
  cursor:pointer;
  padding:16px 16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}
summary::-webkit-details-marker{display:none}
summary .q{font-weight:700}
summary .chev{transition: transform .25s ease; opacity:.8}
details[open] summary .chev{transform: rotate(180deg)}
details .a{
  padding:0 16px 16px;
  color:var(--muted);
  line-height:1.55;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
/* ── Footer ────────────────────────────────────────────────────── */
.footer{
  position: relative;
  padding: 80px 0 0;
  margin-top: 80px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Glowing top edge */
.footer-glow{
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(37,99,235,.7) 35%, rgba(16,185,129,.7) 65%, transparent 95%);
}
.footer-glow::after{
  content: '';
  position: absolute;
  top: -12px; left: 10%; right: 10%;
  height: 24px;
  background: linear-gradient(to right, transparent, rgba(37,99,235,.16), rgba(16,185,129,.16), transparent);
  filter: blur(12px);
}

/* 4-column balanced grid */
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 64px;
}

/* Brand column */
.footer-brand-link{ text-decoration:none }
.footer-tagline{
  margin: 16px 0 24px;
  color: rgba(255,255,255,.42);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
}

/* Trust items — stacked pills */
.footer-trust{ display: flex; flex-direction: column; gap: 9px; }
.footer-trust-item{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .015em;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 100px;
  padding: 5px 11px 5px 8px;
  width: fit-content;
}
.footer-trust-item svg{ width:13px; height:13px; flex-shrink:0 }

/* Column label — consistent across all cols */
.footer-col-label{
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 18px;
  display: block;
}

/* Nav columns */
.footer-nav-col{ display: flex; }
.footer-nav-group{
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.footer a{
  color: rgba(255,255,255,.55);
  transition: color .2s;
  display: block;
  text-decoration: none;
}
.footer a:hover{ color: #fff }

/* Contact column */
.footer-contact-col{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-contact-col .footer-col-label{ margin-bottom: 18px; }

.footer-email-link,
.footer-location{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color .2s;
}
.footer-email-link svg,
.footer-location svg{ width:15px; height:15px; flex-shrink:0 }
.footer-email-link:hover{ color: #fff }
.footer-location{ color: rgba(255,255,255,.38); cursor: default; margin-bottom: 24px; }

/* "Book a free call" pill — distinct from nav CTA */
.footer-book-btn{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,.45);
  background: rgba(37,99,235,.1);
  color: rgba(255,255,255,.8) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none !important;
  transition: background .2s, border-color .2s, color .2s;
  width: fit-content;
}
.footer-book-btn svg{ width:14px; height:14px; flex-shrink:0 }
.footer-book-btn:hover{
  background: rgba(37,99,235,.22);
  border-color: rgba(37,99,235,.75);
  color: #fff !important;
}

/* Bottom strip */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.065);
  padding: 18px 0;
}
.footer-bottom-inner{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.26);
}
.footer-bottom-dot{
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}

@media (max-width: 1024px){
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
  .footer-contact-col{ grid-column: 1 / -1; flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
  .footer-contact-col .footer-col-label{ width: 100%; margin-bottom: 0; }
}
@media (max-width: 768px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col{ grid-column: 1 / -1; }
  .footer-tagline{ max-width: 100%; }
  .footer-contact-col{ grid-column: 1 / -1; flex-direction: column; }
}
@media (max-width: 480px){
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner{ gap: 10px; }
}

/* scroll reveal */
.reveal{opacity:0; transform: translateY(36px) scale(0.96); transition: opacity .65s cubic-bezier(0.22, 1, 0.36, 1), transform .65s cubic-bezier(0.22, 1, 0.36, 1)}
.reveal.in{opacity:1; transform: translateY(0) scale(1)}

/* parallax layers */
.parallax-slow{transition: transform .1s linear; will-change: transform}
.parallax-fast{transition: transform .1s linear; will-change: transform}

/* scroll scale effect */
.scale-on-scroll{transition: transform .2s ease-out}

/* smooth scroll */
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: no-preference){
  html{scroll-behavior:smooth}
}

/* Hero Word Animation — slower, more cinematic */
.hero-title-animated{position:relative}
.hero-title-animated .word{display:inline-block; opacity:0; transform:translateY(36px) scale(0.88); animation:wordReveal 1.1s var(--ease-out) forwards; will-change: transform, opacity;}
.hero-title-animated .word:nth-child(1){animation-delay:0.3s}
.hero-title-animated .word:nth-child(2){animation-delay:0.55s}
.hero-title-animated .word:nth-child(3){animation-delay:0.8s}
.hero-title-animated .word:nth-child(4){animation-delay:1.05s}
.hero-title-animated .word:nth-child(5){animation-delay:1.3s}
.hero-title-animated .word:nth-child(6){animation-delay:1.5s}
.hero-title-animated .word:nth-child(7){animation-delay:1.7s}
.hero-title-animated .word:nth-child(8){animation-delay:1.9s}

@keyframes wordReveal{
  0%{opacity:0; transform:translateY(30px) scale(0.9)}
  100%{opacity:1; transform:translateY(0) scale(1)}
}

/* Hero Fade In Animation - More Visible */
.hero-fade-in{opacity:0; transform:translateY(40px); animation:fadeInUp 1s var(--ease-out) forwards}

@keyframes fadeInUp{
  from{opacity:0; transform:translateY(40px)}
  to{opacity:1; transform:translateY(0)}
}

/* Hero Float Animation - More Visible */
.hero-float{opacity:0; transform:translateY(50px) scale(0.9); animation:floatIn 1.2s var(--ease-out) forwards}

@keyframes floatIn{
  from{opacity:0; transform:translateY(50px) scale(0.9)}
  to{opacity:1; transform:translateY(0) scale(1)}
}

/* Pulse Animation - More Visible */
@keyframes pulse{
  0%, 100%{opacity:1; transform:scale(1)}
  50%{opacity:0.7; transform:scale(1.12)}
}

/* subtle parallax glow - More Visible */
.glow{
  position:fixed; inset:-200px;
  background:
    radial-gradient(600px 420px at var(--mx, 30%) var(--my, 30%), rgba(37,99,235,.10), transparent 60%),
    radial-gradient(520px 380px at calc(var(--mx, 30%) + 30%) calc(var(--my, 30%) + 20%), rgba(16,185,129,.08), transparent 60%);
  pointer-events:none;
  opacity:1;
}

/* form */
form{margin-top:18px}
.field{display:grid; gap:8px; margin:12px 0}
label{font-size:13px; color:rgba(255,255,255,.72)}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
select{
  padding-right:40px;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
}
input:focus, textarea:focus, select:focus{border-color: rgba(16,185,129,.45); box-shadow: 0 0 0 4px rgba(16,185,129,.10)}
textarea{min-height: 120px; resize: vertical}
button{font:inherit}

/* ── Section eyebrow ────────────────────────────────── */
.section-eyebrow{
  text-align:center;
  font-size:12px; font-weight:600; letter-spacing:.16em;
  text-transform:uppercase;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  margin:0 0 16px;
}

/* ── Why Labuan grid ─────────────────────────────────── */
.section-why-labuan h2{ text-align:center }
.section-why-labuan > .container > p { text-align:center }
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
}
.why-card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:32px 28px;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.why-card:hover{
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 24px 48px rgba(37,99,235,.12);
}
.why-ico{
  width:44px; height:44px; margin-bottom:18px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.22);
  border-radius:14px;
}
.why-ico svg{ width:22px; height:22px }
.why-card h3{
  font-size:17px; font-weight:700; margin:0 0 10px;
  background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,.7));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.why-card p{ font-size:14px; color:var(--muted); line-height:1.65; margin:0 }

/* ── Facts ticker strip ──────────────────────────────── */
.facts-strip{
  overflow:hidden;
  position:relative;
  margin:0;
  /* Top & bottom gradient border lines */
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(90deg, transparent 0%, var(--brand1) 20%, var(--brand2) 50%, var(--brand1) 80%, transparent 100%) border-box;
  /* Glass fill */
  background-color: rgba(37,99,235,.055);
  padding:0;
}
/* Gradient glow sweep behind the text */
.facts-strip::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(600px 100% at 50% 50%, rgba(37,99,235,.12), transparent 70%);
  pointer-events:none;
}
/* Fade masks on left & right edges */
.facts-strip::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(to right,
      var(--bg) 0%,
      transparent 8%,
      transparent 92%,
      var(--bg) 100%);
  pointer-events:none;
  z-index:2;
}
.facts-track{
  display:flex; gap:0;
  white-space:nowrap;
  animation: facts-scroll 22s linear infinite;
  padding:18px 0;
}
.facts-strip:hover .facts-track{ animation-play-state:paused }
.fact-item{
  display:inline-flex; align-items:center; gap:12px;
  font-size:13px; font-weight:500;
  color:rgba(255,255,255,.75);
  padding:0 40px;
  flex-shrink:0;
  letter-spacing:.01em;
}
.fact-dot{
  width:6px; height:6px; border-radius:50%; flex-shrink:0;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow: 0 0 10px rgba(37,99,235,.9), 0 0 4px rgba(16,185,129,.6);
}
@keyframes facts-scroll{
  from{ transform:translateX(0) }
  to{ transform:translateX(-50%) }
}
@media (max-width: 768px){
  .facts-track{ animation-duration: 14s; }
  .fact-item{ padding: 0 24px; font-size: 12.5px; }
}

/* ── Visa banner ────────────────────────────────────── */
.visa-banner{
  margin: 80px 0;
  position:relative;
  overflow:hidden;
  border-radius: var(--radius2);
  border:1px solid rgba(37,99,235,.3);
  background:
    radial-gradient(900px 400px at 10% 50%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(600px 300px at 90% 50%, rgba(16,185,129,.12), transparent 60%),
    rgba(255,255,255,.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 40px 80px rgba(37,99,235,.15);
  /* Clamp to container width */
  width: min(1120px, 92vw);
  margin-left:auto; margin-right:auto;
}
/* top accent line */
.visa-banner::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(to right, transparent 5%, var(--brand1) 30%, var(--brand2) 70%, transparent 95%);
  opacity:.7;
}
.visa-banner-inner{
  display:flex; align-items:center; gap:48px;
  padding:56px 48px;
  width:100%;
}
.visa-banner-left{
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.visa-stamp{
  width:110px; height:110px;
  opacity:.65;
  animation: stamp-spin 30s linear infinite;
  filter: drop-shadow(0 0 18px rgba(37,99,235,.5));
}
@keyframes stamp-spin{
  from{ transform:rotate(0deg) }
  to{ transform:rotate(360deg) }
}
.visa-banner-body{ flex:1; min-width:0 }
.visa-banner-eyebrow{
  font-size:11px; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; margin:0 0 12px;
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.visa-banner-title{
  font-size:clamp(26px, 4vw, 40px);
  font-weight:800; line-height:1.15; letter-spacing:-.03em; margin:0 0 14px;
  background: linear-gradient(120deg, #fff 50%, rgba(255,255,255,.65) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.visa-banner-sub{
  font-size:15px; color:var(--muted); line-height:1.7; margin:0 0 28px;
  max-width:600px;
}
.visa-types{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px;
}
.visa-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 18px;
  border-radius:16px;
  border:1px solid rgba(37,99,235,.28);
  background: rgba(37,99,235,.07);
  transition: border-color .3s, background .3s, transform .3s var(--ease-spring), box-shadow .3s;
}
.visa-pill:hover{
  border-color: rgba(16,185,129,.45);
  background: rgba(16,185,129,.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16,185,129,.1);
}
.visa-pill svg{ width:18px; height:18px; flex-shrink:0 }
.visa-pill-text{ display:flex; flex-direction:column; gap:2px }
.visa-pill-name{ font-size:13px; font-weight:600; color:rgba(255,255,255,.9); line-height:1 }
.visa-pill-note{ font-size:11px; color:var(--muted); line-height:1 }
@media(max-width:768px){
  .visa-banner-inner{ flex-direction:column; gap:28px; padding:36px 28px }
  .visa-banner-left{ display:none }
}

/* ── Pricing teaser ──────────────────────────────────── */
.section-pricing-teaser h2{ text-align:center }
.section-pricing-teaser > .container > p{ text-align:center }
.pricing-tease-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  align-items:start;
}
.price-tease-card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:36px 30px;
  display:flex; flex-direction:column; gap:20px;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
  position:relative;
}
.price-tease-card:hover{
  transform: translateY(-5px);
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 28px 56px rgba(37,99,235,.1);
}
.price-tease-featured{
  border-color: rgba(37,99,235,.45) !important;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,185,129,.06)) !important;
  box-shadow: 0 0 0 1px rgba(37,99,235,.3), 0 32px 64px rgba(37,99,235,.18) !important;
}
.price-tease-featured-badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  color:#fff; font-size:11px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; padding:5px 16px; border-radius:20px;
  white-space:nowrap;
  box-shadow: 0 4px 16px rgba(37,99,235,.45);
}
.price-tease-label{
  font-size:24px; font-weight:800; line-height:1.2;
  letter-spacing:-.02em;
  background: linear-gradient(120deg, #fff 30%, rgba(37,99,235,.9) 70%, var(--brand2) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:2px;
}
.price-tease-featured .price-tease-label{
  background: linear-gradient(120deg, #fff 20%, var(--brand2) 60%, var(--brand1) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.price-tease-divider{
  height:1px;
  background: linear-gradient(to right, var(--brand1), var(--brand2), transparent);
  opacity:.35;
  border:none;
  margin:0;
}
.price-tease-desc{ font-size:14px; color:var(--muted); line-height:1.65; margin:0 }
.price-tease-list{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:10px;
}
.price-tease-list li{
  display:flex; align-items:center; gap:10px;
  font-size:14px; color:var(--muted);
}
.price-tease-list li svg{ width:16px; height:16px; flex-shrink:0 }

@media(max-width:900px){
  .why-grid{ grid-template-columns: repeat(2, 1fr) }
  .pricing-tease-grid{ grid-template-columns:1fr; max-width:480px; margin:0 auto }
}
@media(max-width:600px){
  .why-grid{ grid-template-columns:1fr }
}

/* ════════════════════════════════════════════════════
   SECTION DIFFERENTIATION SYSTEM
════════════════════════════════════════════════════ */

/* Positioned line art SVGs */
.section-lineart{
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  max-width: 45%;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: visible;
}
.section-lineart--right{
  left: auto;
  right: 0;
}
.section-lineart--left{
  left: 0;
}

/* Ghost watermark section numbers */
.section-watermark{
  position:absolute;
  top: 40px;
  right: 0;
  font-size: clamp(100px, 16vw, 180px);
  font-weight:900;
  line-height:1;
  letter-spacing:-0.06em;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.008) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events:none;
  user-select:none;
  z-index:0;
  overflow:hidden;
}

/* Section sticky stack — sections stay pinned while next slides over them */
main > .section,
main > .visa-banner,
main > .facts-strip {
  /* background-color set via JS per element; isolation keeps stacking clean */
  isolation: isolate;
}

.section-tinted {
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 500px at 85% 40%, rgba(16,185,129,.055) 0%, transparent 65%),
    radial-gradient(700px 400px at 10% 80%, rgba(37,99,235,.04) 0%, transparent 60%);
}
.section-tinted::before{
  background: linear-gradient(to right, var(--brand2), var(--brand1), transparent) !important;
}

/* Split 2-column section heading */
.section-split-heading{
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.section-split-left{
  position: relative;
}
.section-split-left::after{
  content:'';
  display:block;
  width:48px;
  height:3px;
  margin-top:20px;
  background: linear-gradient(to right, var(--brand1), var(--brand2));
  border-radius:2px;
}
.section-split-left h2{
  font-size: clamp(32px, 3.8vw, 50px);
  text-align: left;
  margin: 0;
  line-height: 1.18;
}
.section-split-right{
  padding-top: 0;
}
.section-split-right p{
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 20px;
}

/* Proof bullet list inside split-right */
.split-proof-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-proof-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .01em;
}
.split-dot{
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   PROCESS TIMELINE
════════════════════════════════════════════════════ */
.section-steps{
  overflow: hidden;
}
.timeline{
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 72px;
  position: relative;
  z-index: 1;
}
.timeline-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.timeline-node{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.timeline-ico{
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  position: relative;
}
.timeline-ico::before{
  content:'';
  position:absolute; inset:0;
  border-radius:20px;
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(16,185,129,.1));
  opacity:0;
  transition: opacity .3s;
}
.timeline-step:hover .timeline-ico{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,99,235,.25);
}
.timeline-step:hover .timeline-ico::before{ opacity:1 }
.timeline-ico svg{
  width: 28px;
  height: 28px;
}
.timeline-num{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
  opacity: .6;
  text-transform: uppercase;
}
.timeline-connector{
  height: 1px;
  align-self: center;
  margin-top: -32px;   /* align with icon vertical center */
  background: linear-gradient(to right, var(--brand1), var(--brand2));
  border-radius: 1px;
  opacity: .35;
  position: relative;
}
.timeline-connector::after{
  content:'';
  position:absolute;
  right:-4px; top:-3px;
  width:7px; height:7px;
  border-radius:50%;
  background: var(--brand2);
  opacity:.7;
}
.timeline-body{
  margin-top: 20px;
  text-align: center;
  padding: 0 8px;
}
.timeline-body h3{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #fff 30%, rgba(37,99,235,.8));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.timeline-body p{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════
   SERVICES SECTION SPECIFICS
════════════════════════════════════════════════════ */
.section-services .section-split-left h2{
  background: linear-gradient(135deg, #fff 20%, rgba(16,185,129,.9) 80%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.section-services .section-split-left::after{
  background: linear-gradient(to right, var(--brand2), var(--brand1));
}
.section-services .grid{
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════
   EXPERIENCE ROWS
════════════════════════════════════════════════════ */
.section-experience{
  background-color: var(--bg);
  background-image: radial-gradient(900px 500px at 15% 30%, rgba(37,99,235,.06) 0%, transparent 65%);
}
.experience-rows{
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.exp-row{
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  gap: 28px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s, transform .25s var(--ease-out);
  border-radius: 12px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}
.exp-row:last-child{
  border-bottom: none;
}
.exp-row:hover{
  background: rgba(255,255,255,.025);
  transform: translateX(4px);
  border-left: 2px solid var(--brand1);
  padding-left: 22px;
}
.exp-ico-wrap{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow .25s;
}
.exp-row:hover .exp-ico-wrap{
  box-shadow: 0 8px 24px rgba(37,99,235,.2);
}
.exp-ico-wrap svg{
  width: 26px;
  height: 26px;
}
.exp-content{
  min-width: 0;
}
.exp-content h3{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  background: linear-gradient(135deg, #fff 40%, rgba(37,99,235,.85) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.exp-content p{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.exp-accent{
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(37,99,235,.08));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing: -0.04em;
  user-select: none;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — section differentiation
════════════════════════════════════════════════════ */
@media(max-width:900px){
  .section-split-heading{
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom:40px;
  }
  .section-split-left::after{ display:none }
  .section-lineart{ display:none }
  .timeline{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline-connector{
    display: none;
  }
  .timeline-step{
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .timeline-step:last-child{ border-bottom: none }
  .timeline-node{ flex-direction: row; gap: 12px }
  .timeline-ico{ width:48px; height:48px; border-radius:14px; flex-shrink:0 }
  .timeline-ico svg{ width:22px; height:22px }
  .timeline-body{ text-align:left; margin-top:0 }
  .exp-row{
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .exp-accent{ display: none }
  .section-watermark{ font-size: clamp(80px, 22vw, 140px) }
}

/* ════════════════════════════════════════════════════
   INNER PAGE HERO (services, pricing, about, etc.)
════════════════════════════════════════════════════ */
.page-hero{
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
/* Two-column hero: text left, decorative art right */
.page-hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 360px;
}
.page-hero-inner{
  position: relative;
  z-index: 1;
}
/* Right decorative panel */
.page-hero-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
}
.page-hero-art{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  opacity: .85;
}
/* Floating accent card inside hero right panel */
.page-hero-card{
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px 30px;
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 340px;
}
.page-hero-card-label{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
  display: block;
}
.page-hero-card-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.page-hero-card-item:last-child{ border-bottom: none; }
.page-hero-card-val{
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text);
  background: linear-gradient(135deg, #2563EB, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-title{
  margin: 12px 0 0;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 800;
}
.page-hero-title .word{
  display: inline-block;
  margin-right: 0.22em;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-lead{
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

@media (max-width: 900px){
  .page-hero-grid{ grid-template-columns: 1fr; gap: 48px; }
  .page-hero-visual{ min-height: 220px; }
  .page-hero-card{ max-width: 100%; }
}
@media (max-width: 768px){
  .page-hero{ padding: 90px 0 60px; }
  .page-hero-title{ font-size: clamp(34px, 10vw, 52px); }
  .page-hero-lead{ font-size: 15.5px; }
}

/* ════════════════════════════════════════════════════
   SERVICES PAGE — STATS STRIP
════════════════════════════════════════════════════ */
.services-stats-strip{
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  padding: 28px 0;
}
.services-stats-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.services-stat{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 100px;
}
.services-stat-num{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(135deg, #2563EB, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-stat-label{
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: .01em;
}
.services-stat-divider{
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
@media (max-width: 600px){
  .services-stats-row{ justify-content: center; gap: 20px 32px; }
  .services-stat-divider{ display: none; }
  .services-stat{ min-width: calc(50% - 32px); }
}

/* ════════════════════════════════════════════════════
   SERVICES PAGE — SERVICE BLOCKS
════════════════════════════════════════════════════ */
.section-service{
  overflow: visible;
  padding: 96px 0;
}
.section-service + .section-service{ border-top: 1px solid rgba(255,255,255,.055); }

.service-block{
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: start;
}
.service-block--reverse{ grid-template-columns: 45fr 55fr; }
.service-block--reverse .service-block-content{ order: 2; }
.service-block--reverse .service-block-aside{ order: 1; }

.service-title{
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.8px;
  line-height: 1.1;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-desc{
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

/* Feature list */
.service-features{
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-features li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sf-check{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(16,185,129,.2));
  border: 1px solid rgba(37,99,235,.35);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.sf-check svg{
  width: 11px; height: 11px;
  stroke: url(#icon-grad);
}
.service-features li div{
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.service-features li strong{
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.1px;
}
.service-features li span{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.service-cta{ margin-top: 36px; }

/* Aside card */
.service-block-aside{
  position: relative;
  /* sticky so the card tracks a long feature list */
  position: sticky;
  top: 100px;
  align-self: start;
}
.service-aside-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.service-aside-card::before{
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%);
  pointer-events: none;
}
.service-aside-card--warn{
  border-color: rgba(250,204,21,.14);
  background: rgba(250,204,21,.03);
}
.service-aside-card--warn::before{
  background: radial-gradient(circle, rgba(250,204,21,.1), transparent 70%);
}
.sac-label{
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 20px;
  display: block;
}
.sac-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  font-size: 14px;
  color: rgba(255,255,255,.72);
}
.sac-item:last-of-type{ border-bottom: none; }
.sac-item svg{
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.sac-divider{
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 20px 0;
}
.sac-timeline{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.sac-timeline svg{ width:16px; height:16px; flex-shrink:0; }
.sac-timeline strong{ color: var(--text); }
.sac-badge{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.sac-badge svg{ width:15px; height:15px; flex-shrink:0; }
.sac-note{
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin: 0 0 4px;
}

@media (max-width: 960px){
  .service-block,
  .service-block--reverse{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-block--reverse .service-block-content{ order: 1; }
  .service-block--reverse .service-block-aside{ order: 2; }
  .service-block-aside{ position: relative; top: auto; }
  .service-desc{ max-width: 100%; }
  .section-service{ padding: 72px 0; }
}

/* ════════════════════════════════════════════════════
   SERVICES PAGE — PROCESS STEPS
════════════════════════════════════════════════════ */
.process-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px 0 0;
  position: relative;
}
.ps-number{
  width: 52px; height: 52px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(135deg, rgba(37,99,235,.3), rgba(16,185,129,.2));
  border: 1px solid rgba(37,99,235,.4);
  color: var(--text);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ps-connector{
  position: absolute;
  top: 26px;
  left: 52px;
  right: 32px;
  height: 1px;
  background: linear-gradient(to right, rgba(37,99,235,.4), rgba(16,185,129,.2));
}
.ps-content{
  margin-top: 20px;
  padding-right: 8px;
}
.ps-content h3{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
}
.ps-content p{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 900px){
  .process-steps{
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .ps-connector{ display: none; }
  .process-step{ padding: 0; }
}
@media (max-width: 540px){
  .process-steps{ grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════════════════
   SERVICES PAGE — CLOSING CTA BAND
════════════════════════════════════════════════════ */
.services-cta-band{
  margin: 0 0 0;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 50% 50%, rgba(37,99,235,.1), transparent 70%),
    linear-gradient(180deg, transparent, rgba(37,99,235,.06) 50%, transparent);
  border-top: 1px solid rgba(255,255,255,.07);
}
.services-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.services-cta-text h2{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.6px;
  line-height: 1.1;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(16,185,129,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-cta-text p{
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}
.services-cta-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 768px){
  .services-cta-inner{ flex-direction: column; align-items: flex-start; gap: 32px; }
  .services-cta-actions{ width: 100%; }
  .services-cta-actions .btn{ flex: 1; justify-content: center; }
}

/* ════════════════════════════════════════════════════
   SERVICE DETAIL PAGES — .sd-* components
════════════════════════════════════════════════════ */

/* -- Breadcrumb -------------------------------------- */
.sd-breadcrumb{
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
}
.sd-breadcrumb .container{
  display: flex;
  align-items: center;
  gap: 8px;
}
.sd-breadcrumb a{
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.sd-breadcrumb a:hover{ color: var(--text); }
.sd-breadcrumb svg{
  width: 14px;
  height: 14px;
  opacity: .5;
  flex-shrink: 0;
}
.sd-breadcrumb span{ color: var(--text); }

/* -- Hero -------------------------------------------- */
.sd-hero{
  padding: 100px 0 80px;
  position: relative;
}
.sd-hero-grid{
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: start;
}
.sd-hero-content{ position: relative; z-index: 1; }
.sd-hero-title{
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #e2d9f3 0%, #2563EB 40%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0 20px;
}
.sd-hero-lead{
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 36px;
}
.sd-hero-aside{
  position: sticky;
  top: 100px;
}

/* -- Info card -------------------------------------- */
.sd-info-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sd-info-card-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.sd-info-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}
.sd-info-row span{ color: var(--muted); }
.sd-info-row strong{
  color: var(--text);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.sd-info-divider{
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}

/* -- Section wrapper -------------------------------- */
.sd-section{ padding: 88px 0; }
.sd-section-header{
  max-width: 660px;
  margin-bottom: 52px;
}
.sd-section-title{
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #e2d9f3 0%, #c4b5fd 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0 14px;
}
.sd-section-sub{
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
}

/* -- Deliverables grid ------------------------------ */
.sd-deliverables-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sd-deliverable{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.sd-deliverable:hover{
  border-color: rgba(37,99,235,.35);
  transform: translateY(-3px);
}
.sd-deliverable-icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37,99,235,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sd-deliverable-icon svg{
  width: 24px;
  height: 24px;
}
.sd-deliverable h3{
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.sd-deliverable p{
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* -- Split layout ----------------------------------- */
.sd-split{
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: start;
}
.sd-split--requirements{
  grid-template-columns: 60fr 40fr;
}
.sd-split-content{ position: relative; z-index: 1; }
.sd-split-aside{
  position: sticky;
  top: 100px;
}

/* -- Feature list (mirrors .service-features) ------- */
.sd-feature-list{
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sd-feature-list li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sd-feature-list li strong{
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.sd-feature-list li span:last-child{
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.sd-feature-list li > div{
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* -- Stat card -------------------------------------- */
.sd-aside-stat-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sd-stat-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sd-stat-num{
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #2563EB, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.sd-stat-label{
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.sd-stat-divider{
  height: 1px;
  background: var(--line);
}

/* -- Requirements ----------------------------------- */
.sd-requirements-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sd-req-col{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.sd-req-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.sd-req-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sd-req-list li{
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  padding-left: 14px;
  position: relative;
}
.sd-req-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #10B981);
}

/* -- Steps (vertical) ------------------------------- */
.sd-steps{
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.sd-step{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.sd-step:last-child{ border-bottom: none; padding-bottom: 0; }
.sd-step:first-child{ padding-top: 0; }
.sd-step-num{
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563EB, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  padding-top: 2px;
}
.sd-step-body h3{
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.sd-step-body p{
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* -- FAQ accordion ---------------------------------- */
.sd-faq-container{
  max-width: 780px;
}
.sd-faq-list{
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.sd-faq{
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.sd-faq summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.sd-faq summary::-webkit-details-marker{ display: none; }
.sd-faq summary::after{
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.sd-faq[open] summary::after{
  transform: rotate(45deg);
  color: #2563EB;
}
.sd-faq summary:hover{ color: #c4b5fd; }
.sd-faq p{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 22px;
  margin: 0;
}

/* -- Tag grid --------------------------------------- */
.sd-tag-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sd-tag-item{
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,.35);
  color: #c4b5fd;
  background: rgba(37,99,235,.08);
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.sd-tag-item:hover{
  background: rgba(37,99,235,.18);
  border-color: rgba(37,99,235,.6);
}

/* -- Visa tier cards -------------------------------- */
.sd-tier-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sd-tier-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, transform .2s;
}
.sd-tier-card:hover{
  border-color: rgba(37,99,235,.35);
  transform: translateY(-3px);
}
.sd-tier-card--highlight{
  border-color: rgba(37,99,235,.45);
  background: rgba(37,99,235,.08);
}
.sd-tier-badge{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(37,99,235,.15);
  color: #c4b5fd;
  border: 1px solid rgba(37,99,235,.3);
  align-self: flex-start;
}
.sd-tier-validity{
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563EB, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sd-tier-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sd-tier-list li{
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.sd-tier-list li:last-child{ border-bottom: none; padding-bottom: 0; }
.sd-tier-list li span{ color: var(--muted); }
.sd-tier-list li strong{ color: var(--text); font-size: 14px; }
.sd-tier-notes{
  margin-top: 4px;
}
.sd-tier-notes p{
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* -- Responsive ------------------------------------- */
@media (max-width: 1024px){
  .sd-tier-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .sd-hero-grid,
  .sd-split{ grid-template-columns: 1fr; gap: 40px; }
  .sd-hero-aside,
  .sd-split-aside{ position: static; }
  .sd-deliverables-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sd-requirements-cols{ grid-template-columns: 1fr; gap: 16px; }
  .sd-step{ grid-template-columns: 44px 1fr; }
}
@media (max-width: 640px){
  .sd-hero{ padding: 72px 0 56px; }
  .sd-section{ padding: 60px 0; }
  .sd-deliverables-grid{ grid-template-columns: 1fr; }
  .sd-tier-grid{ grid-template-columns: 1fr; }
  .sd-info-row{ flex-direction: column; gap: 2px; }
  .sd-info-row strong{ text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
   Labuan comparison table  (.lj-*)
═══════════════════════════════════════════════════════════ */
.lj-compare-table{ display:flex; flex-direction:column; gap:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.lj-compare-row{ display:grid; grid-template-columns:180px repeat(4,1fr); }
.lj-compare-row + .lj-compare-row{ border-top:1px solid var(--line); }
.lj-compare-header{ background:rgba(255,255,255,.03); }
.lj-compare-cell{ padding:14px 16px; font-size:14px; line-height:1.5; display:flex; align-items:center; }
.lj-compare-cell + .lj-compare-cell{ border-left:1px solid var(--line); }
.lj-compare-label{ font-weight:600; color:var(--muted); font-size:13px; }
.lj-compare-highlight{ background:rgba(37,99,235,.07); }
.lj-compare-header .lj-compare-highlight{ font-weight:700; font-size:15px; background:rgba(37,99,235,.1); color:#93C5FD; }
.lj-good{ color:#22C55E; font-weight:600; }
.lj-neutral{ color:#F59E0B; font-weight:600; }
.lj-bad{ color:var(--muted); }
@media(max-width:768px){
  .lj-compare-table{ overflow-x:auto; }
  .lj-compare-row{ grid-template-columns:130px repeat(4,minmax(110px,1fr)); min-width:580px; }
}

/* ── Contact page ─────────────────────────────────── */
.cd-route-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cd-route-card{
  display:flex; flex-direction:column; gap:14px;
  padding:28px 24px; border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  text-decoration:none; color:var(--text);
  transition:border-color .2s, background .2s, transform .2s;
  cursor:pointer;
}
.cd-route-card:hover{ border-color:rgba(37,99,235,.35); background:rgba(37,99,235,.05); transform:translateY(-3px); }
.cd-route-header{ display:flex; align-items:center; justify-content:space-between; }
.cd-route-num{
  font-size:52px; font-weight:800; line-height:1;
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.cd-route-icon{
  width:40px; height:40px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(37,99,235,.08); border:1px solid rgba(37,99,235,.2);
  border-radius:10px; padding:8px;
}
.cd-route-icon svg{ width:100%; height:100%; display:block; }
.cd-route-card h3{ font-size:18px; font-weight:700; margin:0; line-height:1.3; }
.cd-route-card p{ font-size:15px; color:var(--muted); line-height:1.7; margin:0; flex:1; }
.cd-route-best{ font-size:12px !important; color:rgba(37,99,235,.9) !important; font-weight:600; background:rgba(37,99,235,.08); padding:7px 12px; border-radius:6px; line-height:1.5; }
.cd-route-link{
  display:flex; align-items:center; justify-content:space-between;
  gap:8px; margin-top:auto; padding-top:18px;
  border-top:1px solid var(--line);
  font-size:14px; font-weight:700; color:var(--brand2);
  letter-spacing:.01em;
}
.cd-route-link .icon{ width:18px; height:18px; transition:transform .2s; flex-shrink:0; }
.cd-route-card:hover .cd-route-link .icon{ transform:translateX(4px); }

/* Booking panel */
.cd-booking-panel{
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.025);
  overflow:hidden;
}
.cd-booking-header{
  padding:20px 24px;
  border-bottom:1px solid var(--line);
  background:rgba(37,99,235,.07);
}
.cd-booking-title{ font-size:17px; font-weight:700; margin:0 0 4px; }
.cd-booking-sub{ font-size:13px; color:var(--muted); margin:0; }
.cd-booking-meta{ padding:16px 24px; display:flex; flex-direction:column; gap:10px; border-bottom:1px solid var(--line); }
.cd-booking-meta-row{ display:flex; align-items:center; gap:10px; font-size:14px; color:var(--muted); }
.cd-booking-meta-row .icon{ width:16px; height:16px; color:var(--brand1); flex-shrink:0; }
.cd-booking-cta{ padding:20px 24px; }
.cd-calendly-placeholder{
  border:1px dashed rgba(255,255,255,.12);
  border-radius:12px;
  padding:28px 20px;
  text-align:center;
  background:rgba(255,255,255,.02);
}

/* Contact form enhancements */
.cd-form{ margin-top:0; }
.cd-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.cd-req{ color:#f87171; }
.cd-form-actions{ display:flex; align-items:center; gap:20px; margin-top:20px; flex-wrap:wrap; }
.cd-form-note{ font-size:13px; color:var(--muted); line-height:1.6; flex:1; min-width:200px; }
.cd-form-success{
  display:flex; align-items:flex-start; gap:16px;
  padding:20px 24px; border-radius:14px;
  background:rgba(34,197,94,.08); border:1px solid rgba(34,197,94,.25);
  color:#4ade80;
}
.cd-form-success strong{ display:block; font-weight:700; margin-bottom:4px; }
.cd-form-success p{ margin:0; font-size:14px; color:var(--muted); }

/* Sidebar links */
.cd-direct-link{
  display:flex; align-items:center; gap:10px;
  font-size:14px; font-weight:600; color:var(--brand2);
  text-decoration:none; padding:10px 0;
  border-bottom:1px solid var(--line);
  transition:color .2s;
}
.cd-direct-link:hover{ color:#fff; }
.cd-resource-link{
  display:flex; align-items:center; gap:10px;
  font-size:13px; color:var(--muted);
  text-decoration:none; padding:8px 0;
  border-bottom:1px solid var(--line);
  transition:color .2s;
}
.cd-resource-link:last-child{ border-bottom:none; }
.cd-resource-link:hover{ color:var(--text); }
.cd-resource-link .icon{ width:14px; height:14px; color:var(--brand1); flex-shrink:0; }

@media(max-width:900px){ .cd-route-grid{ grid-template-columns:1fr; } }

/* ── Contact intent picker ─────────────────────── */
.cd-intent-services-label{
  font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted); margin:0 0 16px;
}
.cd-services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-bottom:8px;
}
.cd-generic-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.cd-intent-card{
  display:flex; flex-direction:column; gap:10px;
  padding:22px 20px; border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  cursor:pointer; text-decoration:none; color:inherit;
  transition:border-color .2s, background .2s, transform .15s;
  text-align:left;
}
.cd-intent-card:hover, .cd-intent-card:focus-visible{
  border-color:rgba(37,99,235,.5); background:rgba(37,99,235,.07);
  transform:translateY(-2px); outline:none;
}
.cd-intent-card.cd-intent-generic:hover, .cd-intent-card.cd-intent-generic:focus-visible{
  border-color:rgba(16,185,129,.5); background:rgba(16,185,129,.06);
}
.cd-intent-card.cd-intent-call:hover, .cd-intent-card.cd-intent-call:focus-visible{
  border-color:rgba(34,197,94,.5); background:rgba(34,197,94,.06);
}
.cd-intent-icon{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:9px; background:rgba(37,99,235,.1);
  flex-shrink:0;
}
.cd-intent-icon svg{ width:18px; height:18px; }
.cd-intent-name{ font-weight:700; font-size:14px; line-height:1.3; }
.cd-intent-desc{ font-size:12px; color:var(--muted); line-height:1.55; margin:0; flex:1; }
.cd-intent-cta{
  display:flex; align-items:center; gap:5px;
  font-size:12px; font-weight:600; color:var(--brand1);
  margin-top:4px;
}
.cd-intent-card.cd-intent-generic .cd-intent-cta{ color:var(--brand2); }
.cd-intent-card.cd-intent-call .cd-intent-cta{ color:var(--brand3); }
.cd-intent-cta svg{ width:12px; height:12px; transition:transform .2s; }
.cd-intent-card:hover .cd-intent-cta svg{ transform:translateX(2px); }
.cd-form-back{
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; color:var(--muted); cursor:pointer;
  margin-bottom:24px; text-decoration:none;
  background:none; border:none; padding:0;
  transition:color .2s;
}
.cd-form-back:hover{ color:var(--text); }
.cd-form-back svg{ width:14px; height:14px; transform:rotate(180deg); }
@media(max-width:1100px){ .cd-services-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:700px){ .cd-services-grid{ grid-template-columns:repeat(2,1fr); } .cd-generic-grid{ grid-template-columns:1fr; } }
@media(max-width:400px){ .cd-services-grid{ grid-template-columns:1fr; } }

/* ── Pricing teaser annual strip ─────────────────── */
.pt-annual-strip{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
  margin-top:28px; padding:20px 28px;
  border-radius:14px; border:1px solid var(--line);
  background:rgba(255,255,255,.025);
}
.pt-annual-content{ display:flex; flex-direction:column; gap:6px; }
.pt-annual-label{ font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.pt-annual-tiers{ display:flex; align-items:center; flex-wrap:wrap; gap:8px; font-size:15px; font-weight:600; color:var(--text); }
.pt-sep{ color:var(--muted); font-weight:400; }
@media(max-width:640px){ .pt-annual-strip{ flex-direction:column; align-items:flex-start; } }
@media(max-width:640px){
  .cd-form-row{ grid-template-columns:1fr; }
  .cd-form-actions{ flex-direction:column; align-items:flex-start; }
}

/* ════════════════════════════════════════════════════
   QUICK INTAKE FORMS  (.qi-*)
════════════════════════════════════════════════════ */

/* Progress bar */
.qi-progress{
  position:sticky; top:64px; z-index:89;
  background:rgba(7,10,18,.94); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  padding:0;
}
.qi-progress-inner{
  display:flex; align-items:stretch; overflow-x:auto;
  scrollbar-width:none;
}
.qi-progress-inner::-webkit-scrollbar{ display:none; }
.qi-progress-step{
  flex:1; min-width:80px; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:4px; padding:12px 8px; font-size:11px; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase;
  color:var(--muted); border-bottom:2px solid transparent;
  white-space:nowrap; transition:color .2s, border-color .2s;
  cursor:default;
}
.qi-progress-step span{ font-size:18px; font-weight:800; color:rgba(255,255,255,.1); }
.qi-progress-step.active{ color:var(--text); border-bottom-color:var(--brand1); }
.qi-progress-step.active span{ color:var(--brand1); }
.qi-progress-step.done{ color:var(--brand3); border-bottom-color:var(--brand3); }
.qi-progress-step.done span{ color:var(--brand3); }

/* Sections */
.qi-form-body{ padding:48px 0 80px; }
.qi-section{
  margin-bottom:48px;
  padding:32px 36px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.018);
}
.qi-section-head{
  display:flex; align-items:baseline; gap:16px;
  margin-bottom:28px; padding-bottom:20px;
  border-bottom:1px solid var(--line);
}
.qi-section-num{
  font-size:42px; font-weight:900; line-height:1; flex-shrink:0;
  background:linear-gradient(135deg,var(--brand1),var(--brand2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.qi-section-title{ font-size:20px; font-weight:700; margin:0 0 4px; color:var(--text); }
.qi-section-sub{ font-size:14px; color:var(--muted); margin:0; line-height:1.6; }

/* Grid */
.qi-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px 24px; }
.qi-grid-3{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px 24px; }
.qi-span-2{ grid-column:span 2; }
.qi-span-3{ grid-column:span 3; }

/* Fields */
.qi-field{ display:flex; flex-direction:column; gap:6px; }
.qi-label{ font-size:13px; font-weight:600; color:var(--text); display:flex; align-items:center; gap:5px; }
.qi-req{ color:#f87171; font-size:14px; }
.qi-hint{ font-size:12px; color:var(--muted); line-height:1.5; margin-top:3px; }
.qi-flag{
  margin-top:6px; padding:10px 14px;
  border-radius:8px; border-left:3px solid #F59E0B;
  background:rgba(245,158,11,.07);
  font-size:12px; line-height:1.6; color:#fcd34d;
  display:none;
}
.qi-flag.show{ display:block; }

/* Radios / checkboxes */
.qi-radio-group, .qi-check-group{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:4px;
}
.qi-radio-group label, .qi-check-group label{
  display:flex; align-items:center; gap:8px;
  padding:8px 14px; border-radius:8px;
  border:1px solid var(--line); background:rgba(255,255,255,.025);
  font-size:13px; color:var(--muted); cursor:pointer;
  transition:border-color .18s, background .18s, color .18s;
  line-height:1.4;
}
.qi-radio-group input, .qi-check-group input{
  width:15px; height:15px; min-width:15px; flex-shrink:0;
  padding:0; margin:0; border-radius:50%; accent-color:var(--brand1);
}
.qi-check-group input{ border-radius:4px; }
.qi-radio-group label:has(input:checked),
.qi-check-group label:has(input:checked){
  border-color:rgba(37,99,235,.5);
  background:rgba(37,99,235,.1);
  color:var(--text);
}

/* Eligibility flag banner */
.qi-eligibility-banner{
  display:flex; align-items:flex-start; gap:14px;
  padding:16px 20px; border-radius:12px; margin-bottom:20px;
  border:1px solid rgba(245,158,11,.3); background:rgba(245,158,11,.06);
}
.qi-eligibility-banner svg{ width:20px; height:20px; flex-shrink:0; color:#F59E0B; margin-top:1px; }
.qi-eligibility-banner p{ margin:0; font-size:14px; line-height:1.7; color:rgba(255,255,255,.8); }

/* Submit section */
.qi-submit-section{
  padding:32px 36px; border-radius:20px;
  border:1px solid rgba(37,99,235,.25);
  background:rgba(37,99,235,.04);
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.qi-submit-text h3{ font-size:20px; font-weight:700; margin:0 0 6px; }
.qi-submit-text p{ font-size:14px; color:var(--muted); margin:0; line-height:1.6; }
.qi-submit-actions{ display:flex; gap:12px; flex-shrink:0; flex-wrap:wrap; }

/* Success state */
.qi-success{
  display:none; flex-direction:column; align-items:center; text-align:center;
  gap:20px; padding:64px 32px;
}
.qi-success-icon{
  width:64px; height:64px; border-radius:50%;
  background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3);
  display:flex; align-items:center; justify-content:center;
}
.qi-success-icon svg{ width:30px; height:30px; color:#4ade80; }
.qi-success h2{ font-size:28px; font-weight:800; margin:0; }
.qi-success p{ font-size:16px; color:var(--muted); max-width:500px; margin:0; line-height:1.7; }

@media(max-width:768px){
  .qi-grid, .qi-grid-3{ grid-template-columns:1fr; }
  .qi-span-2, .qi-span-3{ grid-column:span 1; }
  .qi-section{ padding:24px 20px; }
  .qi-submit-section{ flex-direction:column; }
}

/* ─── Bot / spam protection ─── */
.qi-honeypot{
  position:absolute;
  left:-9999px;
  top:-9999px;
  opacity:0;
  height:0;
  width:0;
  overflow:hidden;
  pointer-events:none;
}
.qi-bot-error{
  display:none;
  color:#f87171;
  padding:12px 16px;
  border-radius:8px;
  border:1px solid rgba(248,113,113,.3);
  background:rgba(248,113,113,.07);
  font-size:14px;
  margin-bottom:16px;
}

/* ════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
════════════════════════════════════════════════════ */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  padding: 0;
  flex-shrink: 0;
  transition: background .22s, border-color .22s, color .22s, transform .3s var(--ease-spring);
}
.theme-toggle:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  color: var(--text);
  transform: rotate(18deg) scale(1.08);
}
.theme-toggle svg { width: 17px; height: 17px; flex-shrink: 0; transition: opacity .2s; }

/* Show sun in dark mode (click → go light), show moon in light mode (click → go dark) */
.theme-icon--sun  { display: block; }
.theme-icon--moon { display: none; }
[data-theme="light"] .theme-icon--sun  { display: none; }
[data-theme="light"] .theme-icon--moon { display: block; }

/* ════════════════════════════════════════════════════
   LIGHT MODE OVERRIDES  [data-theme="light"]
   Applied to <html> to beat all selectors quietly.
════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
[data-theme="light"] {
  --bg: #EEF1FA;
  --panel: rgba(0,0,0,.035);
  --panel2: rgba(0,0,0,.06);
  --text: rgba(10,14,30,.9);
  --muted: rgba(10,14,30,.52);
  --line: rgba(0,0,0,.09);
  --shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* ── Body background ── */
[data-theme="light"] body {
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(37,99,235,.12), transparent 60%),
    radial-gradient(900px 700px at 90% 0%, rgba(16,185,129,.1), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(34,197,94,.07), transparent 55%),
    var(--bg);
}

/* ── Nav ── */
[data-theme="light"] .nav {
  background: rgba(238,241,250,.82);
  border-bottom-color: rgba(0,0,0,.07);
}
[data-theme="light"] .nav-scrolled {
  background: rgba(238,241,250,.96);
  border-bottom-color: rgba(0,0,0,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
[data-theme="light"] .nav-links a:hover { background: rgba(0,0,0,.045); }
[data-theme="light"] .nav-links a.active { color: var(--text); }
[data-theme="light"] .nav-drop-divider { background: rgba(0,0,0,.06); }
[data-theme="light"] .nav-dropdown {
  background: rgba(250,251,255,.98);
  border-color: rgba(37,99,235,.18);
  box-shadow: 0 24px 64px rgba(0,0,0,.1), 0 0 0 1px rgba(37,99,235,.08) inset;
}
[data-theme="light"] .nav-dropdown::before {
  background: rgba(250,251,255,.98);
  border-color: rgba(37,99,235,.18);
}
[data-theme="light"] .nav-dropdown a { color: var(--muted); }
[data-theme="light"] .nav-dropdown a:hover { background: rgba(37,99,235,.08); color: var(--text); }
[data-theme="light"] .nav-dropdown a strong { color: var(--text); }
[data-theme="light"] .nav-dropdown a em { color: var(--muted); }
[data-theme="light"] .mobile-menu {
  background: rgba(238,241,250,.98);
  border-top-color: rgba(0,0,0,.07);
}
[data-theme="light"] .mobile-menu nav a { color: var(--muted); }
[data-theme="light"] .mobile-menu nav a:hover,
[data-theme="light"] .mobile-menu nav a.active { background: rgba(0,0,0,.045); color: var(--text); }
[data-theme="light"] .mobile-sub { border-left-color: rgba(37,99,235,.2); }
[data-theme="light"] .mobile-sub a { color: var(--muted) !important; }
[data-theme="light"] .mobile-sub a:hover { color: var(--text) !important; }
[data-theme="light"] .nav-hamburger:hover { background: rgba(0,0,0,.06); }
[data-theme="light"] .nav-hamburger span { background: rgba(10,14,30,.55); }
[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.11);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(0,0,0,.1);
  border-color: rgba(0,0,0,.18);
}

/* ── Buttons ── */
/* Secondary / ghost btn — make it clearly visible on a light bg */
[data-theme="light"] .btn:not(.primary) {
  background: rgba(255,255,255,.85);
  border-color: rgba(0,0,0,.14);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
[data-theme="light"] .btn:not(.primary):hover {
  background: rgba(255,255,255,1);
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
/* Primary btn — keep the vibrant blue→green gradient, force white text */
[data-theme="light"] .btn.primary {
  background: linear-gradient(135deg, #2563EB, #10B981);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(37,99,235,.28), 0 0 0 1px rgba(255,255,255,.15) inset;
}
[data-theme="light"] .btn.primary:hover {
  box-shadow: 0 16px 48px rgba(37,99,235,.36), 0 0 0 1px rgba(255,255,255,.2) inset;
}
[data-theme="light"] .nav-book-btn {
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,185,129,.09));
  border-color: rgba(37,99,235,.28);
}
[data-theme="light"] .nav-book-btn:hover {
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(16,185,129,.16));
  border-color: rgba(37,99,235,.5);
  box-shadow: 0 8px 24px rgba(37,99,235,.15);
}

/* ── Cards & Panels ── */
[data-theme="light"] .card {
  background: rgba(255,255,255,.65);
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.05);
}
[data-theme="light"] .card:hover {
  background: rgba(255,255,255,.9);
  border-color: rgba(0,0,0,.13);
  box-shadow: 0 30px 80px rgba(0,0,0,.09), 0 0 0 1px rgba(0,0,0,.05);
}
[data-theme="light"] .card .tag {
  color: rgba(10,14,30,.7);
  border-color: rgba(0,0,0,.11);
  background: rgba(0,0,0,.04);
}
[data-theme="light"] .panel {
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.52));
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 20px 70px rgba(0,0,0,.06), 0 0 0 1px rgba(255,255,255,.8) inset;
}

/* ── Steps ── */
[data-theme="light"] .step {
  background: rgba(255,255,255,.62);
  border-color: rgba(0,0,0,.08);
}
[data-theme="light"] .step:hover {
  background: rgba(255,255,255,.88);
  border-color: rgba(0,0,0,.13);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
[data-theme="light"] .step .num {
  border-color: rgba(0,0,0,.14);
}

/* ── Hero elements ── */

/* Soften the circuit schematic SVG for light mode — also mutes the scan line inside it */
[data-theme="light"] .hero-schematic { opacity: 0.28; }

/* Reduce the blurred orb blob in light mode */
[data-theme="light"] .hero-orb {
  opacity: 0.18;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.25), rgba(16,185,129,.18), transparent 70%);
}

/* Soften the hero section background radial glow */
[data-theme="light"] .hero {
  background: radial-gradient(ellipse 900px 500px at 50% 40%, rgba(37,99,235,.05) 0%, transparent 70%);
}

[data-theme="light"] .hero::after {
  background: linear-gradient(to bottom, transparent, var(--bg));
}
[data-theme="light"] .hero-eyebrow {
  color: rgba(10,14,30,.4);
}
[data-theme="light"] .hero-eyebrow::before {
  background: linear-gradient(to right, transparent, rgba(0,0,0,.18));
}
[data-theme="light"] .hero-eyebrow::after {
  background: linear-gradient(to left, transparent, rgba(0,0,0,.18));
}
[data-theme="light"] .hero-badge {
  background: rgba(255,255,255,.8);
  border-color: rgba(0,0,0,.1);
  color: rgba(10,14,30,.68);
}
[data-theme="light"] .hero-badge:hover {
  background: rgba(255,255,255,.96);
  border-color: rgba(0,0,0,.16);
}
[data-theme="light"] .hero-metric {
  background: rgba(255,255,255,.72);
  border-color: rgba(0,0,0,.1);
}
[data-theme="light"] .hero-metric:hover {
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.14);
}
[data-theme="light"] .metric-t { color: var(--text); }
[data-theme="light"] .hero-metric-card {
  background: rgba(255,255,255,.72);
  border-color: rgba(0,0,0,.09);
}
[data-theme="light"] .hero-metric-card:hover {
  border-color: rgba(0,0,0,.15);
}

/* Stat cards in hero */
[data-theme="light"] .stat-card {
  background: rgba(255,255,255,.75);
  border-color: rgba(0,0,0,.09);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}

/* ── Section decoration ── */
[data-theme="light"] .section::before {
  background: linear-gradient(to right, transparent, rgba(37,99,235,.35), rgba(16,185,129,.35), transparent);
}

/* ── FAQ ── */
[data-theme="light"] .faq {
  background: rgba(255,255,255,.6);
  border-color: rgba(0,0,0,.08);
}
[data-theme="light"] details { border-top-color: rgba(0,0,0,.07); }

/* ── Footer ── */
[data-theme="light"] .footer {
  background-image: radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
}
[data-theme="light"] .footer-tagline { color: rgba(10,14,30,.42); }
[data-theme="light"] .footer-trust-item {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.07);
  color: rgba(10,14,30,.42);
}
[data-theme="light"] .footer-col-label { color: rgba(10,14,30,.3); }
[data-theme="light"] .footer a { color: rgba(10,14,30,.52); }
[data-theme="light"] .footer a:hover { color: rgba(10,14,30,.9); }
[data-theme="light"] .footer-email-link,
[data-theme="light"] .footer-location { color: rgba(10,14,30,.52); }
[data-theme="light"] .footer-email-link:hover { color: rgba(10,14,30,.9); }
[data-theme="light"] .footer-book-btn {
  color: rgba(10,14,30,.75) !important;
  border-color: rgba(37,99,235,.35);
  background: rgba(37,99,235,.08);
}
[data-theme="light"] .footer-book-btn:hover {
  color: rgba(10,14,30,.9) !important;
  background: rgba(37,99,235,.16);
  border-color: rgba(37,99,235,.55);
}
[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,.07); }
[data-theme="light"] .footer-bottom-inner { color: rgba(10,14,30,.3); }
[data-theme="light"] .footer-bottom-dot { background: rgba(10,14,30,.2); }

/* ── Forms (qi-* components) ── */
[data-theme="light"] .qi-section {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.07);
}
[data-theme="light"] .qi-section:hover {
  background: rgba(255,255,255,.75);
  border-color: rgba(37,99,235,.2);
}
[data-theme="light"] .qi-section-title {
  color: var(--text);
  border-bottom-color: rgba(0,0,0,.07);
}
[data-theme="light"] .qi-field label { color: var(--muted); }
[data-theme="light"] .qi-input,
[data-theme="light"] .qi-select,
[data-theme="light"] .qi-textarea {
  background: rgba(255,255,255,.72);
  border-color: rgba(0,0,0,.13);
  color: var(--text);
}
[data-theme="light"] .qi-input::placeholder,
[data-theme="light"] .qi-textarea::placeholder { color: rgba(10,14,30,.3); }
[data-theme="light"] .qi-input:focus,
[data-theme="light"] .qi-select:focus,
[data-theme="light"] .qi-textarea:focus {
  background: rgba(255,255,255,.9);
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
[data-theme="light"] .qi-radio-group label,
[data-theme="light"] .qi-check-group label {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.11);
  color: var(--muted);
}
[data-theme="light"] .qi-radio-group label:has(input:checked),
[data-theme="light"] .qi-check-group label:has(input:checked) {
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.4);
  color: var(--text);
}
[data-theme="light"] .qi-eligibility-banner p { color: rgba(10,14,30,.78); }
[data-theme="light"] .qi-submit-section {
  background: rgba(37,99,235,.04);
  border-color: rgba(37,99,235,.2);
}
[data-theme="light"] .qi-submit-text h3 { color: var(--text); }

/* ── Form labels (hardcoded white) ── */
[data-theme="light"] label { color: var(--muted); }
[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
  background: rgba(255,255,255,.8);
  border-color: rgba(0,0,0,.14);
  color: var(--text);
}
[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder { color: rgba(10,14,30,.3); }

/* ── Form progress stepper (inactive step number is near-invisible white) ── */
[data-theme="light"] .qi-progress-step span { color: rgba(10,14,30,.15); }

/* ── Card tags ── */
[data-theme="light"] .card .tag {
  color: var(--muted);
  border-color: rgba(0,0,0,.11);
  background: rgba(0,0,0,.04);
}

/* ── Facts strip ── */
[data-theme="light"] .fact-item { color: var(--muted); }
[data-theme="light"] .facts-strip {
  border-top-color: rgba(0,0,0,.07);
  border-bottom-color: rgba(0,0,0,.07);
}

/* ── Visa banner ── */
[data-theme="light"] .visa-pill-name { color: var(--text); }
[data-theme="light"] .visa-pill {
  background: rgba(255,255,255,.7);
  border-color: rgba(0,0,0,.1);
}
[data-theme="light"] .visa-pill:hover {
  background: rgba(255,255,255,.95);
  border-color: rgba(16,185,129,.35);
}

/* ── Service aside card (sac-*) ── */
[data-theme="light"] .service-aside-card {
  background: rgba(255,255,255,.75);
  border-color: rgba(0,0,0,.1);
}
[data-theme="light"] .sac-label   { color: var(--muted); }
[data-theme="light"] .sac-item    { color: var(--muted); border-bottom-color: rgba(0,0,0,.07); }
[data-theme="light"] .sac-badge   { color: var(--muted); }
[data-theme="light"] .sac-note    { color: var(--muted); }

/* ── Section-service borders ── */
[data-theme="light"] .section-service + .section-service { border-top-color: rgba(0,0,0,.07); }

/* ── Services stats strip ── */
[data-theme="light"] .services-stats-strip {
  border-top-color: rgba(0,0,0,.07);
  border-bottom-color: rgba(0,0,0,.07);
  background: rgba(0,0,0,.02);
}
[data-theme="light"] .services-stat-divider { background: rgba(0,0,0,.1); }

/* ── Services CTA band ── */
[data-theme="light"] .services-cta-band { border-top-color: rgba(0,0,0,.07); }

/* ── Page hero card (service page sidebar cards) ── */
[data-theme="light"] .page-hero-card {
  background: rgba(255,255,255,.75);
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
[data-theme="light"] .page-hero-card-label { color: var(--muted); }
[data-theme="light"] .page-hero-card-item  { color: var(--muted); border-bottom-color: rgba(0,0,0,.07); }

/* ── Service detail page (sd-*) — fix near-white gradient titles ── */
/* sd-hero-title starts with #e2d9f3 (near-white) → invisible on light bg */
[data-theme="light"] .sd-hero-title {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563EB 40%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
/* sd-section-title uses pale lavender/cyan — all near-white on light bg */
[data-theme="light"] .sd-section-title {
  background: linear-gradient(135deg, #2563EB 0%, #1d9e74 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── SD tag items (hardcoded light-lavender #c4b5fd) ── */
[data-theme="light"] .sd-tag-item {
  color: #1d4ed8;
  background: rgba(37,99,235,.07);
  border-color: rgba(37,99,235,.25);
}
[data-theme="light"] .sd-tag-item:hover {
  background: rgba(37,99,235,.14);
  border-color: rgba(37,99,235,.45);
  color: #1e40af;
}

/* ── SD tier badge (#c4b5fd on near-transparent bg) ── */
[data-theme="light"] .sd-tier-badge {
  color: #1d4ed8;
  background: rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.25);
}

/* ── SD FAQ hover (#c4b5fd light lavender) ── */
[data-theme="light"] .sd-faq summary:hover { color: #2563EB; }

/* ── Pricing teaser labels (start with #fff — invisible on light) ── */
[data-theme="light"] .price-tease-label {
  background: linear-gradient(120deg, #1d4ed8 0%, #2563EB 60%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .price-tease-featured .price-tease-label {
  background: linear-gradient(120deg, #10B981 0%, #2563EB 60%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Labuan comparison table ── */
[data-theme="light"] .lj-compare-table { border-color: rgba(0,0,0,.09); }
[data-theme="light"] .lj-compare-row + .lj-compare-row { border-top-color: rgba(0,0,0,.07); }
[data-theme="light"] .lj-compare-cell + .lj-compare-cell { border-left-color: rgba(0,0,0,.07); }
[data-theme="light"] .lj-compare-header { background: rgba(0,0,0,.025); }
[data-theme="light"] .lj-compare-highlight { background: rgba(37,99,235,.06); }
[data-theme="light"] .lj-compare-header .lj-compare-highlight {
  background: rgba(37,99,235,.09);
  color: #1d4ed8;
}

/* ── Section watermark numbers ── */
[data-theme="light"] .section-watermark {
  background: linear-gradient(135deg, rgba(0,0,0,.07) 0%, rgba(0,0,0,.025) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Timeline (How it Works) step titles ── */
[data-theme="light"] .timeline-body h3 {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── "Services built around Labuan" title ── */
[data-theme="light"] .section-services .section-split-left h2 {
  background: linear-gradient(135deg, #1e3a5f 0%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── The Globizin Standard — experience rows ── */
[data-theme="light"] .exp-content h3 {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .exp-accent {
  background: linear-gradient(135deg, rgba(0,0,0,.10), rgba(37,99,235,.15));
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Visa banner title ── */
[data-theme="light"] .visa-banner-title {
  background: linear-gradient(120deg, #1e3a5f 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Why Labuan cards ── */
[data-theme="light"] .why-card h3 {
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ── Contact page ── */
[data-theme="light"] .cd-direct-link:hover { color: var(--brand1); }
[data-theme="light"] .cd-intent-card {
  background: rgba(255,255,255,.65);
  border-color: rgba(0,0,0,.08);
}
[data-theme="light"] .cd-route-card {
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.08);
}
[data-theme="light"] .cd-booking-panel {
  background: rgba(255,255,255,.65);
  border-color: rgba(0,0,0,.08);
}
[data-theme="light"] .cd-calendly-placeholder {
  border-color: rgba(0,0,0,.15);
  background: rgba(255,255,255,.55);
}

/* ── Pricing annual strip ── */
[data-theme="light"] .pt-annual-strip {
  background: rgba(255,255,255,.65);
  border-color: rgba(0,0,0,.09);
}

/* ── Quick intake form progress bar ── */
[data-theme="light"] .qi-progress {
  background: rgba(238,241,250,.96);
  border-bottom-color: rgba(0,0,0,.09);
}
[data-theme="light"] .qi-progress-step span { color: rgba(0,0,0,.08); }

/* ── Quick intake form sections ── */
[data-theme="light"] .qi-section {
  background: rgba(255,255,255,.60);
  border-color: rgba(0,0,0,.09);
}

/* smooth theme transition */
*, *::before, *::after {
  transition-property: background, background-color, border-color, color, box-shadow;
  transition-duration: .22s;
  transition-timing-function: var(--ease-in-out);
}
/* But don't slow down transforms/opacity animations */
.reveal, .card, .step, .hero-metric, .hero-badge, .btn,
.nav-links a, .mobile-menu nav a, .theme-toggle {
  transition-property: background, background-color, border-color, color, box-shadow,
                       transform, opacity;
}
