/* ============================================================
   ONE SOLUTION — SHARED STYLESHEET  v4.0
   Font: Poppins only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── THEME VARIABLES ────────────────────────────────────────── */
:root {
  --bg:           #070c1b;
  --bg-2:         #0a1028;
  --bg-card:      #0c1120;
  --bg-card-2:    #0f1628;
  --teal:         #0cb8b2;
  --teal-light:   #3dd6cf;
  --teal-glow:    rgba(12,184,178,0.22);
  --teal-bg:      rgba(12,184,178,0.08);
  --teal-bg-2:    rgba(12,184,178,0.15);
  --teal-border:  rgba(12,184,178,0.28);
  --border:       rgba(255,255,255,0.07);
  --border-2:     rgba(255,255,255,0.12);
  --text:         #e8edf8;
  --text-muted:   rgba(200,215,240,0.55);
  --text-soft:    rgba(200,215,240,0.80);
  --shadow:       0 12px 48px rgba(0,0,0,0.55);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-teal:  0 8px 32px rgba(12,184,178,0.25);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-lg:    24px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --grid-color:   rgba(12,184,178,0.04);
}

[data-theme="light"] {
  --bg:           #f0f4fa;
  --bg-2:         #e4edf8;
  --bg-card:      #ffffff;
  --bg-card-2:    #f6f9ff;
  --teal-bg:      rgba(12,184,178,0.07);
  --teal-bg-2:    rgba(12,184,178,0.12);
  --teal-border:  rgba(12,184,178,0.25);
  --border:       rgba(15,23,42,0.09);
  --border-2:     rgba(15,23,42,0.15);
  --text:         #0f1629;
  --text-muted:   rgba(15,23,42,0.55);
  --text-soft:    rgba(15,23,42,0.80);
  --shadow:       0 12px 48px rgba(0,0,0,0.10);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.07);
  --grid-color:   rgba(12,184,178,0.06);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: 'Poppins', sans-serif; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── GRID BACKGROUND ────────────────────────────────────────── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── DIAGONAL SECTION DIVIDERS ──────────────────────────────── */
.skew-up   { clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%); margin-top: -50px; padding-top: 100px; }
.skew-down { clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);  padding-bottom: 100px; }

/* ── SCROLL PROGRESS BAR ────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 400;
  background: linear-gradient(90deg, var(--teal), var(--teal-light), #a78bfa);
  width: 0%; transition: width .1s linear;
  box-shadow: 0 0 10px var(--teal);
}

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.label::before { content:''; display:inline-block; width:20px; height:2px; background:linear-gradient(90deg,var(--teal),var(--teal-light)); border-radius:2px; }

.h-xl  { font-size: clamp(2.5rem,5.5vw,4.2rem);  font-weight: 900; line-height: 1.08; letter-spacing: -.03em; }
.h-lg  { font-size: clamp(1.9rem,3.5vw,2.8rem);  font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.h-md  { font-size: clamp(1.4rem,2.5vw,2.0rem);  font-weight: 700; line-height: 1.2; }
.text-teal { background: linear-gradient(135deg,var(--teal),var(--teal-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.text-muted { color: var(--text-muted); }

/* ── LUCIDE ICONS ───────────────────────────────────────────── */
.icon { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }
[data-lucide] { display: inline-block; }

/* ── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  border-radius: 50px; padding: 7px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--teal-light);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff; padding: 15px 38px; border-radius: 50px;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-teal);
  position: relative; overflow: hidden;
}
.btn-primary::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,0); transition: background .2s; }
.btn-primary:hover::after { background:rgba(255,255,255,0.12); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(12,184,178,0.45); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text); padding: 14px 36px;
  border-radius: 50px; font-size: 15px; font-weight: 700;
  border: 1.5px solid var(--border-2); cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--teal-border); color: var(--teal-light); transform: translateY(-3px); background: var(--teal-bg); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(7,12,27,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(240,244,250,0.93);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; display: block; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 48px; width: auto; object-fit: contain; display: block; }

/* Theme-aware logo swap */
.logo-colored                     { display: block !important; }
.logo-white                       { display: none  !important; }
[data-theme="dark"] .logo-colored { display: none  !important; }
[data-theme="dark"] .logo-white   { display: block !important; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transition: width .3s ease; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* ── Theme Switcher (pill slider) ── */
.theme-switcher { display: flex; align-items: center; gap: 8px; }
.ts-lbl {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); user-select: none;
  transition: color .3s ease;
}
[data-theme="dark"] .ts-dark,
[data-theme="light"] .ts-light { color: var(--text); font-weight: 700; }

.theme-toggle {
  position: relative; width: 54px; height: 28px;
  border-radius: 14px; background: var(--bg-3);
  border: 1.5px solid var(--border);
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: background .35s ease, border-color .35s ease;
}
.theme-toggle::after {
  content: ''; position: absolute;
  top: 4px; left: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--text-muted);
  box-shadow: 0 1px 5px rgba(0,0,0,.4);
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .35s ease;
}
[data-theme="light"] .theme-toggle { background: var(--teal); border-color: var(--teal); }
[data-theme="light"] .theme-toggle::after { transform: translateX(26px); background: #fff; }
.theme-toggle:hover { opacity: .85; transform: none; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger svg { width: 24px; height: 24px; stroke: var(--text); fill: none; stroke-width: 2; stroke-linecap: round; }

.mob {
  display: none; position: fixed; inset: 0; z-index: 299;
  background: var(--bg); flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.mob a { font-size: 22px; font-weight: 700; color: var(--text-muted); transition: color .2s; }
.mob a:hover { color: var(--teal-light); }
.mob.open { display: flex; }
.mob-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; color: var(--teal-light);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 130px 0 80px;
  background: var(--bg);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.hero-glow-1 {
  position: absolute; top: -10%; right: 5%;
  width: 640px; height: 640px; pointer-events: none;
  background: radial-gradient(circle, rgba(12,184,178,0.12) 0%, transparent 65%);
  animation: glowPulse 7s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; bottom: -10%; left: -5%;
  width: 480px; height: 480px; pointer-events: none;
  background: radial-gradient(circle, rgba(109,40,217,0.10) 0%, transparent 65%);
  animation: glowPulse 9s ease-in-out infinite reverse;
}
@keyframes glowPulse { 0%,100%{opacity:.6} 50%{opacity:1} }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-badge { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(2.8rem,5.5vw,4.8rem); font-weight: 900; line-height: 1.06;
  margin-bottom: 22px; letter-spacing: -.03em;
}
.hero-title .line { overflow: hidden; display: block; }
.hero-subtitle { font-size: 17px; color: var(--text-muted); max-width: 480px; margin-bottom: 38px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.hero-trust-avs, .trust-avs { display: flex; }
.hero-trust-av, .trust-av {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; margin-left: -10px;
}
.hero-trust-av:first-child, .trust-av:first-child { margin-left: 0; }
.hero-trust-text, .trust-txt { font-size: 13px; color: var(--text-muted); }
.hero-trust-text strong, .trust-txt strong { color: var(--text); display: block; font-weight: 700; font-size: 14px; }

/* Hero illustration */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(12,184,178,0.15);
  border: 1px solid var(--teal-border);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }

.hero-float-card {
  position: absolute; background: var(--bg-card);
  border: 1px solid var(--teal-border); border-radius: var(--radius);
  padding: 14px 18px; backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card), 0 0 20px rgba(12,184,178,0.12);
  display: flex; align-items: center; gap: 12px; min-width: 160px;
}
.hero-float-card.card-1 { top: 28px; left: -28px; }
.hero-float-card.card-2 { bottom: 48px; right: -18px; }
.float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-label { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.float-val { font-size: 18px; font-weight: 800; color: var(--teal-light); line-height: 1.2; }

/* Legacy float classes kept for compat */
.hero-float { position: absolute; background: var(--bg-card); border: 1px solid var(--teal-border); border-radius: var(--radius); padding: 14px 18px; backdrop-filter: blur(12px); box-shadow: var(--shadow-card); }
.hero-float.f1 { top: 30px; left: -30px; }
.hero-float.f2 { bottom: 60px; right: -20px; }
.float-lbl { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; background: var(--bg-2);
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 6px var(--teal); }

/* ── STATS BANNER ───────────────────────────────────────────── */
.stats-banner { background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-item {
  padding: 44px 20px; border-right: 1px solid var(--teal-border);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--teal-bg); }
.stat-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.stat-label { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-top: 8px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 140px 0 36px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-grid-bg { position: absolute; inset: 0; pointer-events: none; }

/* ── SEC HEADER ─────────────────────────────────────────────── */
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center p { margin: 0 auto; }
.sec-head p { color: var(--text-muted); max-width: 580px; font-size: 16px; margin-top: 12px; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-bg), transparent 60%);
     opacity: 0; transition: opacity .3s; pointer-events: none;
}
.card:hover {
  border-color: var(--teal-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--teal-border), 0 16px 48px rgba(12,184,178,0.12);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); margin-bottom: 20px;
  transition: var(--transition);
}
.card:hover .card-icon { background: var(--teal); color: #fff; transform: scale(1.08) rotate(-6deg); }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--teal-light); transition: gap .2s; position: relative; z-index: 2; }
.card:hover .card-link { gap: 10px; }

/* ── CHIPS / TAGS ───────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  border-radius: 50px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--teal-light);
}

/* ── FILTER / PORTFOLIO ─────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; justify-content: center; }
.filter-btn {
  padding: 9px 22px; border-radius: 50px; border: 1.5px solid var(--border-2);
  background: transparent; color: var(--text-muted); font-family: 'Poppins',sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg,var(--teal),var(--teal-light));
  border-color: transparent; color: #fff;
}

.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.port-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.port-card:hover { border-color: var(--teal-border); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.port-card.hidden { display: none; }
.port-img { position: relative; overflow: hidden; }
.port-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .5s ease; }
.port-card:hover .port-img img { transform: scale(1.07); }
.port-cat {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg,var(--teal),var(--teal-light));
  color: #fff; padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.port-body { padding: 24px; }
.port-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.port-body p  { color: var(--text-muted); font-size: 13px; line-height: 1.65; }
.port-result {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--teal-light);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: var(--transition);
}
.testi-card:hover { border-color: var(--teal-border); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.testi-name { font-size: 15px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: var(--teal-border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px; gap: 16px; user-select: none; }
.faq-arrow { flex-shrink:0; width:28px; height:28px; background:var(--teal-bg); border:1px solid var(--teal-border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--teal-light); transition:transform .35s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.75; }

/* ── PROCESS ────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-grid::before { content:''; position:absolute; top:47px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,transparent,var(--teal),transparent); opacity:.35; }
.process-step { text-align: center; }
.step-icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 8px;
  background: var(--bg-card-2); border: 2px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); transition: var(--transition); position: relative; z-index: 1;
}
.process-step:hover .step-icon { background: var(--teal); color: #fff; box-shadow: 0 0 24px var(--teal-glow); border-color: var(--teal); transform: scale(1.08); }
.step-num { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing:.1em; margin-bottom: 14px; }
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── WHY CARDS ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition); display: flex; flex-direction: column; gap: 10px;
}
.why-card:hover { border-color: var(--teal-border); transform: translateY(-4px); box-shadow: var(--shadow-card); background: var(--bg-card-2); }
.why-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--teal-bg); border: 1px solid var(--teal-border); color: var(--teal-light); }
.why-card h4 { font-size: 16px; font-weight: 700; }
.why-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── CONSULT BAND ───────────────────────────────────────────── */
.consult-band {
  background: var(--bg-2); position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.consult-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1.5px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: 'Poppins',sans-serif; font-size: 14px;
  color: var(--text); width: 100%; outline: none; transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-bg); }
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success-msg { display:none; text-align:center; padding:40px 0; }
.form-success-msg .s-icon { font-size:52px; margin-bottom:16px; }
.form-success-msg h4 { font-size:1.4rem; font-weight:800; margin-bottom:10px; }
.form-success-msg p { color:var(--text-muted); font-size:14px; }

/* ── ABOUT / STORY ──────────────────────────────────────────── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-visual { position:relative; }
.about-img { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.about-img img { width:100%; height:440px; object-fit:cover; transition:transform .6s ease; }
.about-visual:hover .about-img img { transform: scale(1.03); }
.about-img::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(12,184,178,0.12),transparent); }
.about-badge-float {
  position:absolute; bottom:-20px; right:-16px;
  background:linear-gradient(135deg,var(--teal),var(--teal-light));
  color:#fff; border-radius:var(--radius); padding:20px 24px;
  text-align:center; box-shadow:var(--shadow-teal);
}
.about-badge-float .n  { font-size:2.2rem; font-weight:900; display:block; line-height:1; }
.about-badge-float .t  { font-size:12px; font-weight:600; opacity:.85; }
.cred-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }

/* ── STORY GRID ─────────────────────────────────────────────── */
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.story-img-wrap { border-radius:var(--radius-lg); overflow:hidden; position:relative; box-shadow:var(--shadow); }
.story-img-wrap img { width:100%; height:420px; object-fit:cover; }
.story-img-wrap::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(12,184,178,0.12),transparent); border-radius:var(--radius-lg); }
.story-img-badge { position:absolute; bottom:24px; left:24px; background:rgba(7,12,27,0.88); backdrop-filter:blur(8px); border:1px solid var(--teal-border); border-radius:var(--radius-sm); padding:12px 16px; font-size:13px; font-weight:600; color:var(--teal-light); z-index:1; }
.cred-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cred-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:32px; text-align:center; transition:var(--transition); }
.cred-card:hover { border-color:var(--teal-border); transform:translateY(-5px); box-shadow:var(--shadow-card); }
.cred-icon { width:64px; height:64px; background:var(--teal-bg); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; color:var(--teal-light); }
.cred-card h3 { font-size:18px; font-weight:700; margin-bottom:10px; }
.cred-card p  { color:var(--text-muted); font-size:14px; line-height:1.65; }
.mission-inner { background:linear-gradient(135deg,var(--teal-bg-2),var(--teal-bg)); border:1px solid var(--teal-border); border-radius:var(--radius-lg); padding:64px; text-align:center; max-width:860px; margin:0 auto; }
.mission-inner blockquote { font-size:clamp(1.15rem,2.5vw,1.55rem); font-weight:600; line-height:1.55; margin:20px 0; }
.mission-inner cite { font-size:14px; color:var(--text-muted); font-style:normal; }

/* ── SERVICE DETAIL ─────────────────────────────────────────── */
.service-block { padding:72px 0; border-bottom:1px solid var(--border); }
.service-block:last-child { border-bottom:none; }
.service-inner { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.service-inner.reverse { direction:rtl; }
.service-inner.reverse > * { direction:ltr; }
.service-visual { border-radius:var(--radius); overflow:hidden; position:relative; box-shadow:var(--shadow-card); }
.service-visual img { width:100%; height:340px; object-fit:cover; transition:transform .5s ease; }
.service-visual:hover img { transform:scale(1.04); }
.service-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(12,184,178,0.12),transparent); }
.svc-badge { position:absolute; top:20px; left:20px; z-index:1; background:linear-gradient(135deg,var(--teal),var(--teal-light)); color:#fff; padding:6px 14px; border-radius:50px; font-size:12px; font-weight:700; text-transform:uppercase; }
.service-content .svc-icon { width:54px; height:54px; background:var(--teal-bg); border:1px solid var(--teal-border); border-radius:14px; display:flex; align-items:center; justify-content:center; color:var(--teal-light); margin-bottom:20px; }
.service-content h3 { font-size:1.8rem; font-weight:800; margin-bottom:16px; }
.service-content p  { color:var(--text-muted); font-size:15px; margin-bottom:16px; line-height:1.75; }
.deliverables { display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }

/* ── ENGAGEMENT MODELS ──────────────────────────────────────── */
.models-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.model-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:36px; transition:var(--transition); position:relative; overflow:hidden; }
.model-card:hover { border-color:var(--teal-border); transform:translateY(-5px); box-shadow:var(--shadow-card); }
.model-card.featured { border-color:var(--teal-border); background:linear-gradient(135deg,var(--teal-bg),var(--bg-card)); }
.model-badge { position:absolute; top:20px; right:20px; }
.model-icon {
  width: 58px; height: 58px; margin-bottom: 18px;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); transition: var(--transition);
}
.model-card:hover .model-icon { background: var(--teal); color: #fff; transform: scale(1.06) rotate(-4deg); }
.model-card h3 { font-size:20px; font-weight:800; margin-bottom:8px; }
.model-sub { font-size:13px; color:var(--teal-light); font-weight:600; margin-bottom:14px; }
.model-card p { color:var(--text-muted); font-size:14px; margin-bottom:20px; line-height:1.7; }
.model-card ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.model-card ul li { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-muted); }
.model-card ul li svg { flex-shrink:0; color:var(--teal-light); }

/* ── PLANS / PRICING ────────────────────────────────────────── */
.plans-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.plan-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:40px 32px; position:relative; transition:var(--transition); }
.plan-card:hover { border-color:var(--teal-border); transform:translateY(-5px); box-shadow:var(--shadow-card); }
.plan-card.popular { border-color:var(--teal-border); background:linear-gradient(160deg,var(--teal-bg),var(--bg-card)); transform:scale(1.03); }
.plan-card.popular:hover { transform:scale(1.03) translateY(-5px); }
.popular-tag { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg,var(--teal),var(--teal-light)); color:#fff; padding:5px 18px; border-radius:50px; font-size:11px; font-weight:700; white-space:nowrap; }
.plan-name  { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--teal-light); margin-bottom:12px; }
.plan-price { font-size:3rem; font-weight:900; line-height:1; margin-bottom:4px; }
.plan-price span { font-size:1rem; font-weight:500; color:var(--text-muted); }
.plan-desc  { font-size:13px; color:var(--text-muted); margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--border); }
.plan-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.plan-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-muted); }
.plan-features .chk { color:var(--teal-light); font-weight:700; }
.plan-features .xk  { color:var(--border-2); }
.plan-btn { display:block; text-align:center; padding:14px; border-radius:50px; font-size:14px; font-weight:700; cursor:pointer; border:none; width:100%; font-family:'Poppins',sans-serif; transition:var(--transition); }
.plan-btn-outline { background:transparent; border:1.5px solid var(--border-2); color:var(--text); }
.plan-btn-outline:hover { border-color:var(--teal-border); color:var(--teal-light); }
.plan-btn-solid { background:linear-gradient(135deg,var(--teal),var(--teal-light)); color:#fff; box-shadow:var(--shadow-teal); }
.plan-btn-solid:hover { opacity:.85; transform:translateY(-2px); }

/* ── COMPARE TABLE ──────────────────────────────────────────── */
.compare-table { width:100%; border-collapse:collapse; font-size:14px; }
.compare-table th { padding:14px 20px; text-align:left; font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); border-bottom:1px solid var(--border); }
.compare-table th:not(:first-child) { text-align:center; color:var(--teal-light); }
.compare-table td { padding:14px 20px; border-bottom:1px solid var(--border); color:var(--text-muted); }
.compare-table td:not(:first-child) { text-align:center; }
.compare-table tr:hover td { background:var(--teal-bg); }
.compare-table .tick { color:var(--teal-light); font-size:16px; }
.compare-table .dash { color:var(--border-2); }
.compare-table .row-h { font-weight:600; color:var(--text); }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-section { padding-top: 48px !important; }
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:56px; align-items:start; }
.info-card, .response-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 14px;
  position: relative; overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.info-card::before, .response-box::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, var(--teal-bg-2), var(--teal-bg));
  opacity: 0; transition: opacity 0.35s ease;
}
.info-card:hover, .response-box:hover {
  border-color: var(--teal-border); transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--teal-glow);
}
.info-card:hover::before, .response-box:hover::before { opacity: 1; }
.info-card > *, .response-box > * { position: relative; z-index: 1; }
.info-card .ic { width:46px; height:46px; background:var(--teal-bg); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--teal-light); margin-bottom:14px; }
.info-card h4, .response-box h4 { font-size:15px; font-weight:700; margin-bottom:6px; color: var(--text); }
.response-box h4 { color: var(--teal-light); }
.info-card p, .info-card a, .response-box p { font-size:14px; color:var(--text-muted); display:block; line-height:1.75; }
.info-card a:hover { color:var(--teal-light); }
.form-card { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:44px; }
.submit-btn { width:100%; padding:16px; background:linear-gradient(135deg,var(--teal),var(--teal-light)); color:#fff; border:none; border-radius:50px; font-family:'Poppins',sans-serif; font-size:15px; font-weight:700; cursor:pointer; transition:var(--transition); box-shadow:var(--shadow-teal); }
.submit-btn:hover { opacity:.85; transform:translateY(-2px); }
.submit-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.form-success { display:none; text-align:center; padding:48px 24px; }
.trust-items-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.t-item .t-icon { display:flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%; background:var(--teal-bg); border:1px solid var(--teal-border); margin:0 auto 14px; color:var(--teal-light); }
.t-item h4 { font-size:15px; font-weight:700; margin-bottom:6px; }
.t-item p  { font-size:13px; color:var(--text-muted); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top:1px solid var(--teal-border); border-bottom:1px solid var(--teal-border);
  text-align:center; padding:88px 0; position:relative; overflow:hidden;
}
.cta-section::before {
  content:''; position:absolute; inset:0; opacity:.04;
  background-image:radial-gradient(circle, var(--teal) 1px, transparent 1px);
  background-size:28px 28px; pointer-events:none;
}
.cta-section h2 { margin-bottom:16px; }
.cta-section p  { color:var(--text-muted); max-width:520px; margin:0 auto 40px; font-size:16px; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background:var(--bg-2); border-top:1px solid var(--border); padding:72px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:52px; }
.footer-logo img { height:44px; width:auto; margin-bottom:20px; object-fit:contain; }
.footer-tagline { color:var(--text-muted); font-size:14px; max-width:240px; line-height:1.75; }
.footer-col h4 { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.09em; margin-bottom:20px; color:var(--text); }
.footer-col a { display:block; font-size:14px; color:var(--text-muted); margin-bottom:10px; transition:color .2s, padding-left .2s; }
.footer-col a:hover { color:var(--teal-light); padding-left:4px; }
.footer-social { display:flex; gap:12px; margin-top:22px; }
.social-btn { width:42px; height:42px; background:var(--teal-bg); border:1px solid var(--teal-border); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--teal-light); transition:var(--transition); }
.social-btn:hover { background:var(--teal); color:#fff; transform:translateY(-3px) scale(1.1); box-shadow:var(--shadow-teal); }
.footer-divider { border:none; border-top:1px solid var(--border); margin-bottom:28px; }
.footer-bottom { text-align:center; font-size:13px; color:var(--text-muted); }

/* ── ANIMATION SCAFFOLDING ──────────────────────────────────── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal       { transform: translateY(38px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-scale { transform: scale(0.92); }

.stagger-grid > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.stagger-grid > .is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1024px){ .hero-grid { gap:36px; } .about-grid { gap:44px; } }
@media(max-width:900px){
  .plans-grid { grid-template-columns:1fr; }
  .plan-card.popular { transform:none; }
  .plan-card.popular:hover { transform:translateY(-5px); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid::before { display:none; }
  .contact-grid { grid-template-columns:1fr; }
  .trust-items-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px){
  .nav { padding:16px 20px; }
  .nav.scrolled { padding:12px 20px; }
  .nav-links { display:none; }
  .hamburger { display:block; }
  .hero-grid, .about-grid, .consult-inner, .story-grid { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero { padding:120px 0 56px; min-height:auto; }
  .services-grid, .why-grid { grid-template-columns:1fr 1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-item { border-right:none; border-bottom:1px solid var(--teal-border); }
  .stat-item:nth-child(2n) { border-bottom:none; }
  .testi-grid { grid-template-columns:1fr; }
  .port-grid  { grid-template-columns:1fr 1fr; }
  .models-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .section, .cta-section { padding:60px 0; }
  .form-card { padding:28px 20px; }
  .form-row-2 { grid-template-columns:1fr; }
  .service-inner, .service-inner.reverse { grid-template-columns:1fr; direction:ltr; }
  .cred-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:480px){
  .services-grid,.why-grid,.port-grid,.cred-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; }
  .stat-item { border-bottom:1px solid var(--teal-border) !important; }
  .stat-item:last-child { border-bottom:none !important; }
  .cta-btns { flex-direction:column; align-items:center; }
  .hero-btns { flex-direction:column; }
  .trust-items-grid { grid-template-columns:1fr; }
  .mission-inner { padding:36px 20px; }
}

/* Services grid */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

/* ── MISSING VARIABLE FIX ──────────────────────────────────── */
:root         { --bg-3: #111d42; }
[data-theme="light"] { --bg-3: #dce6f5; }

/* ── LIGHT MODE TEXT READABILITY ───────────────────────────── */
[data-theme="light"] { --text-muted: rgba(15,23,42,0.62); }
[data-theme="light"] .card-text,
[data-theme="light"] .card p,
[data-theme="light"] .info-card p,
[data-theme="light"] .t-item p,
[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-col a,
[data-theme="light"] .footer-bottom { color: rgba(15,23,42,0.65); }
[data-theme="light"] .footer-col h4,
[data-theme="light"] .card h3,
[data-theme="light"] .card h4,
[data-theme="light"] .t-item h4,
[data-theme="light"] .info-card h4 { color: #0f1629; }
[data-theme="light"] .nav-links a { color: rgba(15,23,42,0.65); }
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active { color: var(--teal); }
[data-theme="light"] .plan-feature { color: rgba(15,23,42,0.70); }
[data-theme="light"] .plan-price-sub { color: rgba(15,23,42,0.55); }
[data-theme="light"] .page-hero { background: var(--bg-2); }

/* ── TEXT SPACING IMPROVEMENTS ─────────────────────────────── */
p { line-height: 1.8; }
.section-intro { font-size: 16px; line-height: 1.85; max-width: 600px; margin: 0 auto; }
.card p, .t-item p, .info-card p { line-height: 1.75; font-size: 14px; }
.card h3, .card h4 { margin-bottom: 10px; }
.badge { letter-spacing: .1em; }

/* ── PAGE LOADER ────────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #070c1b;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 200px; height: 200px; border-radius: 50%;
  border: 1.5px solid rgba(12,184,178,0.25);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.loader-ring::before {
  content: '';
  position: absolute; inset: -1.5px; border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--teal);
  animation: ring-spin 1.1s cubic-bezier(0.4,0,0.2,1) infinite;
}
.loader-ring img { width: 130px; height: auto; animation: none; }
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* ── WHY-ITEM (service sub-pages) ──────────────────────────── */
.why-item { display:flex; align-items:flex-start; gap:16px; background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:24px; transition:var(--transition); }
.why-item:hover { border-color:var(--teal-border); transform:translateY(-3px); box-shadow:var(--shadow-card); }
.why-item .why-icon { flex-shrink:0; }
.why-item h4 { font-size:15px; font-weight:700; margin-bottom:6px; }
.why-item p  { font-size:13px; color:var(--text-muted); line-height:1.65; }
