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

/* ─── DESIGN TOKENS — DARK MODE (default) ─── */
:root {
  --g:      #00E676;
  --g2:     #00C853;
  --g-dim:  rgba(0,230,118,0.12);
  --b:      #1400A0;
  --b2:     #2200FF;
  --dark:   #05040F;
  --dark2:  #0C0B1A;
  --dark3:  #13122A;
  --border: rgba(255,255,255,0.07);
  --border2:rgba(255,255,255,0.12);
  --text1:  #FFFFFF;
  --text2:  rgba(255,255,255,0.85);
  --text3:  rgba(255,255,255,0.65);
  --r: 16px;

  /* nav bg tokens — controlled via JS too */
  --nav-bg: rgba(5,4,15,0.7);
  --nav-scroll-bg: rgba(5,4,15,0.92);
}

/* ─── LIGHT MODE TOKENS ─── */
:root.light {
  /* Clean, bright surfaces */
  --dark:   #F2F0FA;          /* very light brand-tinted page bg */
  --dark2:  #FFFFFF;          /* card surface */
  --dark3:  #E8E4F5;          /* slightly deeper for hover states */
  /* Borders — brand blue at low opacity */
  --border: rgba(20,0,160,0.10);
  --border2:rgba(20,0,160,0.20);
  /* Text — dark, readable */
  --text1:  #0D0B20;          /* near-black for headings */
  --text2:  rgba(13,11,32,0.85);
  --text3:  rgba(13,11,32,0.70);
  /* Nav */
  --nav-bg: rgba(242,240,250,0.82);
  --nav-scroll-bg: rgba(242,240,250,0.98);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
}
:root.light body::before { opacity: 0.22; }
/* Subtle violet page-level gradient in light mode */
:root.light body { background: linear-gradient(160deg, #EDEAF8 0%, #E8E2F8 40%, #EDF5EE 100%); }

/* ─── GRID BG ─── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
/* Vivid brand-blue tinted grid in light mode */
:root.light .grid-bg {
  background-image: linear-gradient(rgba(20,0,160,0.09) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(20,0,160,0.09) 1px, transparent 1px);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(24px, 5%); height: 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-logo { display: flex; align-items: center; height: 28px; }
.nav-logo img { height: 100%; width: auto; }
.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 7px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 500;
  color: var(--text2); text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--text1); background: rgba(0,0,0,0.05); }
:root:not(.light) .nav-link:hover { background: rgba(255,255,255,0.06); }
:root.light .nav-link:hover { background: rgba(20,0,160,0.08); color: #1400A0; }

.nav-end { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost {
  padding: 8px 18px; border: 1px solid var(--border2); border-radius: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--text2);
  background: transparent; cursor: pointer; transition: all 0.2s; text-decoration: none; font-family: inherit;
}
.btn-nav-ghost:hover { color: var(--text1); border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.04); }
:root:not(.light) .btn-nav-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

.btn-nav-primary {
  padding: 8px 18px; background: var(--g); border: none; border-radius: 9px;
  font-size: 13.5px; font-weight: 700; color: #060F08; font-family: inherit;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  box-shadow: 0 0 20px rgba(0,230,118,0.3);
}
.btn-nav-primary:hover { background: #1fff88; box-shadow: 0 0 30px rgba(0,230,118,0.45); transform: translateY(-1px); }
.mob-menu { display: none; cursor: pointer; padding: 6px; color: var(--text2); }

/* ─── THEME TOGGLE BUTTON ─── */
#theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid var(--border2);
  background: transparent;
  cursor: pointer;
  color: var(--text2);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
#theme-toggle:hover {
  color: var(--text1);
  background: rgba(0,230,118,0.08);
  border-color: rgba(0,230,118,0.3);
  transform: rotate(15deg);
}
#theme-toggle svg { width: 16px; height: 16px; stroke-width: 2; }
/* Show/hide icons */
#theme-toggle .icon-moon { display: block; }
#theme-toggle .icon-sun  { display: none;  }
:root.light #theme-toggle .icon-moon { display: none;  }
:root.light #theme-toggle .icon-sun  { display: block; }

/* ─── MOBILE DRAWER ─── */
.mob-drawer {
  display: none; position: fixed; inset: 64px 0 0 0; z-index: 199;
  background: rgba(5,4,15,0.97); backdrop-filter: blur(20px);
  flex-direction: column; padding: 24px max(24px, 5%); gap: 8px;
  border-top: 1px solid var(--border);
}
:root.light .mob-drawer { background: rgba(240,241,250,0.98); }
.mob-drawer.open { display: flex; }
.mob-drawer a { font-size: 16px; font-weight: 600; color: var(--text2); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mob-drawer a:last-child { border-bottom: none; }
.mob-drawer a.mob-drawer-cta { color: #060F08; text-align: center; margin-top: 16px; border-bottom: none; padding: 12px; }
.mob-drawer a.mob-drawer-login-outline {
  text-align: center; border-bottom: none; padding: 12px;
  border: 1.5px solid var(--g); border-radius: 9px;
  color: var(--g); background: transparent; font-weight: 700;
}
.mob-drawer a.mob-drawer-login-outline:hover { background: rgba(0,230,118,0.08); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 130px max(24px, 6%) 80px;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.15) 0%, transparent 60%);
  top: -200px; left: 50%; transform: translateX(-50%);
  filter: blur(40px); pointer-events: none;
}
/* In light mode hero-glow-1 = vivid violet + green dual bloom */
:root.light .hero-glow-1 {
  background: radial-gradient(circle, rgba(80,0,200,0.18) 0%, rgba(0,230,118,0.1) 55%, transparent 75%);
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,0,255,0.2) 0%, transparent 65%);
  bottom: 0; right: -100px; filter: blur(60px); pointer-events: none;
}
:root.light .hero-glow-2 {
  background: radial-gradient(circle, rgba(0,230,118,0.22) 0%, transparent 65%);
}
.hero-glow-3 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 65%);
  bottom: -50px; left: -80px; filter: blur(60px); pointer-events: none;
}
:root.light .hero-glow-3 {
  background: radial-gradient(circle, rgba(100,0,220,0.14) 0%, transparent 65%);
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,230,118,0.25); background: rgba(0,230,118,0.07);
  border-radius: 100px; padding: 6px 14px 6px 8px; margin-bottom: 32px;
  position: relative; z-index: 1;
}
.hero-pill-badge {
  background: var(--g); color: #060F08; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-pill span { font-size: 13px; color: rgba(0,230,118,0.9); font-weight: 500; }

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(44px, 7vw, 88px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.04em;
  color: var(--text1); margin-bottom: 24px;
  position: relative; z-index: 1; max-width: 880px;
}
.hero h1 em {
  font-style: normal;
  background: var(--g);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--text2); line-height: 1.75;
  max-width: 560px; margin-bottom: 48px; position: relative; z-index: 1;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 12px; font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.25s ease; text-decoration: none;
}
.btn-cta-green {
  background: var(--g); color: #060F08;
  box-shadow: 0 0 0 1px rgba(0,230,118,0.3), 0 8px 32px rgba(0,230,118,0.3);
}
.btn-cta-green:hover { background: #1fff88; transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,230,118,0.5), 0 12px 40px rgba(0,230,118,0.45); }
.btn-cta-ghost {
  background: rgba(255,255,255,0.05); color: var(--text2);
  border: 1px solid var(--border2); backdrop-filter: blur(8px);
}
:root.light .btn-cta-ghost { background: rgba(20,0,160,0.05); border-color: rgba(20,0,160,0.18); color: #1400A0; }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.09); color: var(--text1); transform: translateY(-2px); }
:root.light .btn-cta-ghost:hover { background: rgba(20,0,160,0.09); color: #1400A0; }

/* ─── HERO VISUAL ─── */
/* Outer wrapper — wider than the image to give room for the floating tags */
.hero-visual-wrap {
  position: relative; z-index: 1; margin-top: 72px;
  width: min(1100px, 98%);
  /* let the tags bleed outside the image frame */
  overflow: visible;
}

.hero-visual {
  border-radius: 24px; overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 60px 120px rgba(0,0,0,0.6);
}
:root.light .hero-visual {
  border: 8px solid rgba(20, 0, 160, 0.05);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 40px 80px rgba(0,0,0,0.12);
}

/* ─── FLOATING HERO TAGS ─── */
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(0.5deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(-12px) rotate(-0.5deg); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0px) rotate(0.5deg); }
  50%       { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes floatD {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50%       { transform: translateY(-11px) rotate(1deg); }
}

.hero-tag {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(10, 8, 30, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  white-space: nowrap; z-index: 10;
  /* fade-in after the image reveals */
  opacity: 0;
  transition: opacity 0.8s ease;
  animation-fill-mode: both;
}
:root.light .hero-tag {
  background: rgba(255,255,255,0.88);
  border-color: rgba(20,0,160,0.14);
  box-shadow: 0 8px 32px rgba(20,0,160,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

/* Stagger the fade-in so tags don't all pop at once */
.hero-visual-wrap.in .hero-tag { opacity: 1; }

.hero-tag--members   { animation: floatA 4.5s ease-in-out infinite; animation-delay: 0.8s; top: 8%; left: -5%; }
.hero-tag--finance   { animation: floatB 5s   ease-in-out infinite; animation-delay: 1.4s; top: 12%; right: -5%; }
.hero-tag--attendance{ animation: floatC 4s   ease-in-out infinite; animation-delay: 2s;   bottom: 18%; left: -5%; }
.hero-tag--sms       { animation: floatD 4.8s ease-in-out infinite; animation-delay: 1s;   bottom: 22%; right: -5%; }

.hero-tag__icon {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero-tag__body { display: flex; flex-direction: column; gap: 1px; }

.hero-tag__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  line-height: 1;
}
:root.light .hero-tag__label { color: rgba(13,11,32,0.45); }

.hero-tag__value {
  font-size: 13px; font-weight: 700; color: var(--text1);
  line-height: 1.2; letter-spacing: -0.01em;
}
:root.light .hero-tag__value { color: #0D0B20; }

/* Hide tags on small screens where they'd overlap uncomfortably */
@media (max-width: 640px) {
  .hero-tag { display: none; }
}
.hero-visual-bar {
  background: var(--dark3); height: 38px; display: flex; align-items: center;
  padding: 0 14px; gap: 8px; border-bottom: 1px solid var(--border);
}
.hv-dot { width: 11px; height: 11px; border-radius: 50%; }
.hv-url {
  flex: 1; margin: 0 10px; height: 20px; background: rgba(255,255,255,0.05);
  border-radius: 6px; display: flex; align-items: center; padding: 0 10px; gap: 6px;
}
:root.light .hv-url { background: rgba(0,0,0,0.06); }
.hv-url-lock { color: var(--g); }
.hv-url-txt { font-size: 11px; color: var(--text3); font-family: monospace; }
.hv-body { display: grid; grid-template-columns: 190px 1fr; min-height: 400px; background: #0A0918; }
:root.light .hv-body { background: #EEF0FA; }
.hv-sidebar { background: #080717; border-right: 1px solid var(--border); padding: 16px 10px; }
:root.light .hv-sidebar { background: #E0E3F4; }
.hv-logo-row { display: flex; align-items: center; gap: 6px; padding: 6px 8px; margin-bottom: 18px; }
.hv-logo-icon { width: 26px; height: 26px; border-radius: 7px; background: var(--g); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #060F08; font-family: 'Bricolage Grotesque', sans-serif; }
.hv-logo-name { font-size: 13px; font-weight: 800; color: var(--text1); letter-spacing: -0.02em; font-family: 'Bricolage Grotesque', sans-serif; }
.hv-nav-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; margin-bottom: 2px; }
.hv-nav-item.a { background: rgba(0,230,118,0.1); }
.hv-ni-icon { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
:root.light .hv-ni-icon { background: rgba(0,0,0,0.1); }
.hv-nav-item.a .hv-ni-icon { background: rgba(0,230,118,0.5); }
.hv-ni-label { height: 7px; background: rgba(255,255,255,0.1); border-radius: 3px; flex: 1; }
:root.light .hv-ni-label { background: rgba(0,0,0,0.1); }
.hv-nav-item.a .hv-ni-label { background: rgba(0,230,118,0.4); }
.hv-main { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.hv-title-bar { display: flex; justify-content: space-between; align-items: center; }
.hv-title { height: 10px; width: 120px; background: rgba(255,255,255,0.2); border-radius: 4px; }
:root.light .hv-title { background: rgba(0,0,0,0.15); }
.hv-btn-mock { height: 26px; width: 80px; background: rgba(0,230,118,0.3); border-radius: 7px; }
.hv-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.hv-kpi { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
:root.light .hv-kpi { background: rgba(0,0,0,0.03); }
.hv-kpi-val { height: 16px; width: 55%; border-radius: 4px; margin-bottom: 8px; }
.hv-kpi-label { height: 7px; width: 70%; background: rgba(255,255,255,0.1); border-radius: 3px; }
:root.light .hv-kpi-label { background: rgba(0,0,0,0.1); }
.hv-kpi:nth-child(1) .hv-kpi-val { background: var(--g); opacity: 0.7; }
.hv-kpi:nth-child(2) .hv-kpi-val { background: rgba(255,255,255,0.3); }
:root.light .hv-kpi:nth-child(2) .hv-kpi-val { background: rgba(0,0,0,0.2); }
.hv-kpi:nth-child(3) .hv-kpi-val { background: rgba(100,100,255,0.5); }
.hv-kpi:nth-child(4) .hv-kpi-val { background: rgba(0,230,118,0.5); }
.hv-chart { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
:root.light .hv-chart { background: rgba(0,0,0,0.02); }
.hv-chart-header { height: 8px; width: 90px; background: rgba(255,255,255,0.15); border-radius: 3px; margin-bottom: 14px; }
:root.light .hv-chart-header { background: rgba(0,0,0,0.12); }
.hv-bars { display: flex; align-items: flex-end; gap: 5px; height: 64px; }
.hv-bar { border-radius: 3px 3px 0 0; flex: 1; }
.hv-members { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
:root.light .hv-members { background: rgba(0,0,0,0.02); }
.hv-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.hv-row:last-child { border-bottom: none; padding-bottom: 0; }
.hv-avatar { width: 27px; height: 27px; border-radius: 50%; flex-shrink: 0; }
.hv-row-name { flex: 1; height: 7px; background: rgba(255,255,255,0.12); border-radius: 3px; }
:root.light .hv-row-name { background: rgba(0,0,0,0.1); }
.hv-tag { height: 19px; width: 52px; border-radius: 100px; }

/* ─── SHARED SECTION ─── */
.section { padding: 100px max(24px, 6%); position: relative; z-index: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--g);
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px;
}
:root.light .section-label { color: #1400A0; }
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--g); }
:root.light .section-label::before { background: #1400A0; }
.section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.04em; color: var(--text1); margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text2); line-height: 1.75; max-width: 520px; }

/* ─── SOCIAL PROOF BAR ─── */
.proof-bar {
  position: relative; z-index: 1;
  padding: 28px max(24px, 6%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
/* Brand-blue tint on proof bar in light mode */
:root.light .proof-bar { background: rgba(20,0,160,0.04); border-color: rgba(20,0,160,0.10); }
:root.light .proof-dot { background: #1400A0; }
:root.light .proof-item:hover { color: #0D0B20; }
.proof-label { font-size: 12px; font-weight: 600; color: var(--text3); letter-spacing: 0.8px; text-transform: uppercase; padding: 0 32px; }
.proof-divider { width: 1px; height: 20px; background: var(--border2); }
.proof-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 28px;
  font-size: 14px; font-weight: 700; color: var(--text3); letter-spacing: -0.02em;
  transition: color 0.2s;
}
.proof-item:hover { color: var(--text2); }
.proof-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g); opacity: 0.6; }

/* ─── BENTO FEATURES ─── */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 64px; }
.bento-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; overflow: hidden; position: relative;
  transition: border-color 0.3s, transform 0.3s, background 0.35s;
}
.bento-card:hover { border-color: var(--border2); transform: translateY(-2px); }
:root.light .bento-card { box-shadow: 0 2px 16px rgba(20,0,160,0.06); }
:root.light .bento-card:hover { border-color: rgba(20,0,160,0.28); box-shadow: 0 8px 32px rgba(20,0,160,0.1); }
.bento-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,230,118,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.bento-card:hover::after { opacity: 1; }
.bc-1 { grid-column: span 7; min-height: 280px; }
.bc-2 { grid-column: span 5; min-height: 280px; }
.bc-3 { grid-column: span 4; min-height: 240px; }
.bc-4 { grid-column: span 4; min-height: 240px; }
.bc-5 { grid-column: span 4; min-height: 240px; }
.bc-6 { grid-column: span 5; min-height: 240px; }
.bc-7 { grid-column: span 7; min-height: 240px; }
.bento-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2); margin-bottom: 20px;
  color: var(--g);
}
.bento-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.bento-card p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.bento-visual { margin-top: 24px; }
.bento-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--g);
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase;
}
:root.light .bento-tag { color: #1400A0; background: rgba(20,0,160,0.07); border-color: rgba(20,0,160,0.18); }

/* Mini chart inside bento */
.mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 50px; margin-top: 16px; }
.mini-bar { border-radius: 3px 3px 0 0; flex: 1; transition: opacity 0.2s; }
.bento-card:hover .mini-bar { opacity: 0.9; }

/* Members mini list */
.mini-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.mini-list-row { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; }
:root.light .mini-list-row { background: rgba(0,0,0,0.03); }
.ml-ava { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.ml-info { flex: 1; }
.ml-name { height: 7px; width: 80px; background: rgba(255,255,255,0.2); border-radius: 3px; margin-bottom: 5px; }
:root.light .ml-name { background: rgba(0,0,0,0.15); }
.ml-sub { height: 6px; width: 55px; background: rgba(255,255,255,0.08); border-radius: 3px; }
:root.light .ml-sub { background: rgba(0,0,0,0.08); }
.ml-badge { height: 20px; width: 48px; border-radius: 100px; font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* SMS preview */
.sms-preview { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sms-bubble { padding: 10px 14px; border-radius: 12px; font-size: 13px; font-weight: 500; max-width: 80%; }
.sms-bubble.out { background: rgba(0,230,118,0.15); border: 1px solid rgba(0,230,118,0.2); color: rgba(255,255,255,0.85); align-self: flex-end; border-radius: 12px 12px 2px 12px; }
:root.light .sms-bubble.out { color: rgba(13,12,30,0.85); }
.sms-bubble.in { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text2); border-radius: 12px 12px 12px 2px; }
:root.light .sms-bubble.in { background: rgba(0,0,0,0.04); }

/* Big stat */
.big-stat { margin-top: 20px; }
.big-stat-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 56px; font-weight: 800; letter-spacing: -0.05em; color: var(--g); line-height: 1; }
.big-stat-label { font-size: 13px; color: var(--text3); margin-top: 4px; }

/* ─── HOW IT WORKS ─── */
.hiw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; margin-top: 64px; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.hiw-step { padding: 40px 32px; background: var(--dark2); position: relative; transition: background 0.3s; }
.hiw-step:hover { background: var(--dark3); }
.hiw-step:not(:last-child) { border-right: 1px solid var(--border); }
.hiw-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 56px; font-weight: 900; line-height: 1; color: rgba(0,230,118,0.15); letter-spacing: -0.05em; margin-bottom: 24px; transition: color 0.3s; }
:root.light .hiw-num { color: rgba(20,0,160,0.14); }
.hiw-step:hover .hiw-num { color: rgba(0,230,118,0.3); }
:root.light .hiw-step:hover .hiw-num { color: rgba(20,0,160,0.35); }
.hiw-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.hiw-step p { font-size: 14px; color: var(--text2); line-height: 1.65; }
:root.light .hiw-grid { box-shadow: 0 4px 24px rgba(20,0,160,0.07); }
:root.light .hiw-step:hover { background: rgba(20,0,160,0.03); }

/* ─── PRICING ─── */
.pricing-grid {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  gap: 16px; 
  margin-top: 64px; 
  padding-bottom: 32px;
}
/* Premium custom scrollbar for desktop users */
.pricing-grid::-webkit-scrollbar {
  height: 8px;
}
.pricing-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.pricing-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 230, 118, 0.3);
  border-radius: 10px;
}
.pricing-grid::-webkit-scrollbar-thumb:hover {
  background: var(--g);
}
:root.light .pricing-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
:root.light .pricing-grid::-webkit-scrollbar-thumb {
  background: rgba(20, 0, 160, 0.3);
}
:root.light .pricing-grid::-webkit-scrollbar-thumb:hover {
  background: #1400A0;
}
.pc {
  /* Carousel sizing */
  flex: 0 0 82%; 
  max-width: 340px;
  min-width: 280px;
  scroll-snap-align: center;
  
  border-radius: 20px; padding: 36px; background: var(--dark2);
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.pc:hover { transform: translateY(-4px); border-color: var(--border2); }
.pc.hot {
  background: linear-gradient(160deg, #0A0060 0%, #0D0045 50%, #0A0020 100%);
  border-color: rgba(0,230,118,0.25);
}
/* Hot pricing card in light mode: brand blue gradient */
:root.light .pc.hot {
  background: linear-gradient(160deg, #1400A0 0%, #1a00c4 40%, #0f0080 100%);
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 0 40px rgba(20,0,160,0.25), 0 0 0 1px rgba(0,230,118,0.2);
}
.pc.hot::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,230,118,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.pc-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--g); color: #060F08; font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase;
}
.pc-plan { font-size: 12px; font-weight: 700; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.pc-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 52px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; margin-bottom: 6px; }
.pc-price sup { font-size: 24px; vertical-align: top; margin-top: 10px; font-weight: 700; }
.pc-cycle { font-size: 13px; color: var(--text3); margin-bottom: 24px; }
.pc-desc { font-size: 14px; color: var(--text2); margin-bottom: 28px; line-height: 1.65; }
.pc-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 32px; }
.pc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); }
.pc-features li svg { width: 15px; height: 15px; stroke: var(--g); stroke-width: 2.5; flex-shrink: 0; margin-top: 1px; }
.pc.hot .pc-features li { color: rgba(255,255,255,0.95); }
/* Keep hot card text white in light mode since bg is now dark blue */
:root.light .pc.hot .pc-features li { color: #FFFFFF; }
:root.light .pc.hot .pc-plan { color: rgba(255,255,255,0.85); }
:root.light .pc.hot .pc-price { color: #FFFFFF; }
:root.light .pc.hot .pc-cycle { color: rgba(255,255,255,0.75); }
:root.light .pc.hot .pc-desc { color: rgba(255,255,255,0.9); }
.btn-pc {
  width: 100%; padding: 14px; border-radius: 11px; font-size: 14px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.25s; text-align: center; text-decoration: none; display: block;
}
.btn-pc-outline { border: 1px solid var(--border2); color: var(--text2); background: rgba(255,255,255,0.03); }
:root.light .btn-pc-outline { background: rgba(0,0,0,0.03); }
.btn-pc-outline:hover { border-color: var(--g); color: var(--g); background: rgba(0,230,118,0.05); }
.btn-pc-green { border: none; background: var(--g); color: #060F08; box-shadow: 0 0 20px rgba(0,230,118,0.25); }
.btn-pc-green:hover { background: #1fff88; box-shadow: 0 0 30px rgba(0,230,118,0.4); transform: translateY(-1px); }

/* ─── PRICING SECTION HEADER + BILLING TOGGLE ─── */
.pricing-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.billing-toggle-wrap {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; padding-bottom: 8px;
}
.bt-label { font-size: 14px; font-weight: 600; color: var(--text3); transition: color 0.2s; white-space: nowrap; }
.bt-label.active { color: var(--text1); }
.bt-save {
  display: inline-block; background: rgba(0,230,118,0.15); color: var(--g);
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px;
  margin-left: 4px; letter-spacing: 0.3px;
}
:root.light .bt-save { background: rgba(20,0,160,0.08); color: #1400A0; }
.bt-switch {
  width: 48px; height: 26px; border-radius: 100px;
  background: rgba(255,255,255,0.1); border: 1.5px solid var(--border2);
  position: relative; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0;
}
:root.light .bt-switch { background: rgba(20,0,160,0.06); border-color: rgba(20,0,160,0.2); }
.bt-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--text3); transition: all 0.3s ease;
}
.bt-switch.annual { background: rgba(0,230,118,0.2); border-color: rgba(0,230,118,0.4); }
:root.light .bt-switch.annual { background: rgba(20,0,160,0.18); border-color: #1400A0; }
.bt-switch.annual::after { transform: translateX(22px); background: var(--g); }
:root.light .bt-switch.annual::after { background: #1400A0; }
/* Monthly/Annual price switching */
.pc-price-annual  { display: none !important; }
.pc-cycle-annual  { display: none !important; }
body.lp-annual .pc-price-monthly { display: none !important; }
body.lp-annual .pc-price-annual  { display: block !important; }
body.lp-annual .pc-cycle-monthly { display: none !important; }
body.lp-annual .pc-cycle-annual  { display: block !important; }
@media (max-width: 768px) {
  .pricing-section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 64px; }
.tc {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; transition: all 0.3s;
}
.tc:hover { border-color: var(--border2); transform: translateY(-2px); }
:root.light .tc { box-shadow: 0 2px 16px rgba(20,0,160,0.06); }
:root.light .tc:hover { border-color: rgba(20,0,160,0.28); box-shadow: 0 8px 32px rgba(20,0,160,0.1); }
.tc-quote { font-size: 32px; color: var(--g); margin-bottom: 16px; line-height: 1; font-family: Georgia, serif; opacity: 1; }
:root.light .tc-quote { color: var(--g2); }
.tc-text { font-size: 15px; color: rgba(255,255,255,0.95); line-height: 1.75; margin-bottom: 24px; }
:root.light .tc-text { color: rgba(13,11,32,0.95); }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-ava { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; }
.tc-name { font-size: 14px; font-weight: 700; }
.tc-role { font-size: 12px; color: var(--text3); margin-top: 2px; }
.tc-stars { display: flex; gap: 2px; margin-bottom: 20px; }
.star { width: 14px; height: 14px; fill: #FBBF24; }

/* ─── FINAL CTA ─── */
.cta-section {
  position: relative; z-index: 1; margin: 0 max(24px, 4%) 80px;
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, #080050 0%, #0C0040 40%, #050028 70%, #021A0A 100%);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 100px max(32px, 8%); text-align: center;
}
/* CTA in light mode: brand blue backdrop with green glow, same energy as dark */
:root.light .cta-section {
  background: linear-gradient(135deg, #0E0080 0%, #1400A0 35%, #0A006A 65%, #051035 100%);
  border-color: rgba(0,230,118,0.3);
  box-shadow: 0 0 80px rgba(20,0,160,0.3);
}
.cta-glow-a { position: absolute; width: 600px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(0,230,118,0.15) 0%, transparent 65%); top: -100px; left: 50%; transform: translateX(-50%); filter: blur(50px); pointer-events: none; }
.cta-glow-b { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(34,0,255,0.15) 0%, transparent 65%); bottom: -80px; right: 0; filter: blur(50px); pointer-events: none; }
.cta-logo { height: 48px; width: auto; margin: 0 auto 32px; display: block; position: relative; z-index: 1; }
.cta-section h2 {
  color: #FFFFFF;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 5vw, 60px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.cta-section h2 em { font-style: normal; color: var(--g); }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.95); max-width: 480px; margin: 0 auto 44px; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* In light mode, the default ghost button goes dark, but the CTA section BG is always dark ) */
:root.light .cta-section .btn-cta-ghost { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: #FFF; }
:root.light .cta-section .btn-cta-ghost:hover { background: rgba(255,255,255,0.25); color: #FFF; }

.cta-note { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 18px; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer { position: relative; z-index: 1; padding: 64px max(24px, 6%) 36px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.75; max-width: 260px; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text1); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--text3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text2); }

/* ─── LOGO SWAP ─── */
/* logo-lite = white logo (for dark mode & dark CTA)
   logo-norm = normal/coloured logo (for light mode nav & footer) */
.logo-lite { display: block; }
.logo-norm { display: none; }
:root.light .logo-lite { display: none; }
:root.light .logo-norm { display: block; }
/* On the dark-blue CTA section in light mode, force white logo */
:root.light .cta-section .logo-norm { display: none; }
:root.light .cta-section .logo-lite { display: block; }

/* ─── IMAGE FEATURE SECTIONS ─── */
.img-feature {
  padding: 100px max(24px, 6%);
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.img-feature.reverse { direction: rtl; }
.img-feature.reverse > * { direction: ltr; }
.img-feature-content { display: flex; flex-direction: column; gap: 20px; }
.img-feature-content .section-label { margin-bottom: 4px; }
.img-feature-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.04em; color: var(--text1);
}
.img-feature-content h2 em { font-style: normal; background: linear-gradient(135deg, var(--g) 0%, #7BFFC1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
:root.light .img-feature-content h2 em { background: linear-gradient(135deg, var(--g) 0%, #00A855 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.img-feature-content p { font-size: 16px; color: var(--text2); line-height: 1.8; max-width: 480px; }
.img-feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.img-feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text2); line-height: 1.5;
}
.img-feature-list li .ifl-icon {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; margin-top: 1px;
  background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.22);
  display: flex; align-items: center; justify-content: center; color: var(--g);
}
:root.light .img-feature-list li .ifl-icon { background: rgba(20,0,160,0.08); border-color: rgba(20,0,160,0.18); color: #1400A0; }
.img-feature-visual {
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  position: relative;
}
:root.light .img-feature-visual {
  box-shadow: 0 20px 64px rgba(80,0,200,0.14);
  border-color: rgba(80,0,200,0.15);
}
.img-feature-visual img { width: 100%; height: auto; display: block; }
.img-feature-visual-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(5,4,15,0.5) 0%, transparent 50%);
}
:root.light .img-feature-visual-overlay {
  background: linear-gradient(to top, rgba(18,0,80,0.2) 0%, transparent 50%);
}
.img-feature-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(5,4,15,0.85); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
:root.light .img-feature-badge {
  background: rgba(255,255,255,0.92);
  border-color: rgba(80,0,200,0.15);
  box-shadow: 0 8px 24px rgba(80,0,200,0.12);
}
.img-feature-badge-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--g); display: flex; align-items: center; justify-content: center;
  color: #060F08; flex-shrink: 0;
}
:root.light .img-feature-badge-icon { background: #1400A0; color: #fff; }
.img-feature-badge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text1); }
:root.light .img-feature-badge-text strong { color: #0D0B20; }
.img-feature-badge-text span { font-size: 12px; color: var(--text3); }
:root.light .img-feature-badge-text span { color: rgba(13,11,32,0.48); }

/* ─── ABOUT PAGE STYLES ─── */
.hero-about { padding-bottom: 60px; min-height: auto; }
.hero-about h1 { max-width: 800px; margin: 0 auto 24px; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-story-text p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story-img img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}
:root.light .about-story-img img { box-shadow: 0 20px 80px rgba(20,0,160,0.1) !important; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-4px); }
.vc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,230,118,0.1);
  color: var(--g);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
:root.light .vc-icon { background: rgba(20,0,160,0.06); color: #1400A0; }
.value-card h3 { font-size: 20px; font-weight: 700; color: var(--text1); margin-bottom: 12px; }
.value-card p { font-size: 15px; color: var(--text2); line-height: 1.7; }

@media (max-width: 900px) {
  .img-feature { grid-template-columns: 1fr; gap: 48px; }
  .img-feature.reverse { direction: ltr; }
}

/* ─── CONTACT PAGE STYLES ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; max-width: 1000px; margin: 0 auto; }
.contact-info h3 { font-size: 24px; color: var(--text1); margin-bottom: 12px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,230,118,0.1); color: var(--g); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
:root.light .ci-icon { background: rgba(20,0,160,0.06); color: #1400A0; }
.ci-text strong { display: block; font-size: 15px; color: var(--text1); margin-bottom: 4px; }
.ci-text span { font-size: 14px; color: var(--text2); line-height: 1.6; display: block; }

.contact-form-wrap { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--r); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 8px; }
.form-input { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; font-size: 15px; color: var(--text1); font-family: inherit; transition: all 0.2s; }
:root.light .form-input { background: #FFFFFF; border: 1px solid rgba(20,0,160,0.15); box-shadow: 0 2px 8px rgba(20,0,160,0.02); }
.form-input:focus { outline: none; border-color: var(--g); background: rgba(0,230,118,0.02); }
:root.light .form-input:focus { border-color: #1400A0; box-shadow: 0 0 0 3px rgba(20,0,160,0.1); background: #fff; }
.form-input::placeholder { color: var(--text3); }
.form-input option, .demo-form select option, .cws-form select option { background: var(--dark2); color: var(--text1); }
:root.light .form-input option, :root.light .demo-form select option, :root.light .cws-form select option { background: #FFFFFF; color: #0D0B20; }

/* ─── CAREERS PAGE STYLES ─── */
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.perk-card { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--r); padding: 40px 32px; transition: transform 0.3s; }
.perk-card:hover { transform: translateY(-4px); }
.perk-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(0,230,118,0.1); color: var(--g); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
:root.light .perk-icon { background: rgba(20,0,160,0.06); color: #1400A0; }
.perk-card h3 { font-size: 20px; font-weight: 700; color: var(--text1); margin-bottom: 12px; }
.perk-card p { font-size: 15px; color: var(--text2); line-height: 1.7; }

.job-list { max-width: 800px; margin: 0 auto; }
.job-group { margin-bottom: 48px; }
.jg-title { font-size: 20px; color: var(--text1); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.job-card { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; background: var(--dark2); border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 16px; text-decoration: none; transition: all 0.2s; }
.job-card:hover { border-color: var(--g); transform: translateX(8px); }
:root.light .job-card:hover { border-color: #1400A0; box-shadow: 0 4px 16px rgba(20,0,160,0.05); }
.jc-info h4 { font-size: 18px; color: var(--text1); margin-bottom: 6px; }
.jc-info span { font-size: 14px; color: var(--text2); }
.jc-action { font-size: 14px; font-weight: 600; color: var(--g); display: flex; align-items: center; gap: 8px; opacity: 0; transition: all 0.2s; transform: translateX(-10px); }
:root.light .jc-action { color: #1400A0; }
.job-card:hover .jc-action { opacity: 1; transform: translateX(0); }

/* ─── HELP CENTER STYLES ─── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all 0.3s ease; }
.faq-summary { padding: 24px 32px; font-size: 18px; font-weight: 600; color: var(--text1); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; user-select: none; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { width: 20px; height: 20px; color: var(--text2); transition: transform 0.3s ease; }
.faq-item[open] .faq-icon { transform: rotate(180deg); color: var(--g); }
:root.light .faq-item[open] .faq-icon { color: #1400A0; }
.faq-content { padding: 0 32px 32px; color: var(--text2); font-size: 16px; line-height: 1.7; }

/* ─── DOCS PAGE STYLES ─── */
.docs-hero { background: var(--dark1); padding: 120px max(16px, 4%) 80px; position: relative; overflow: hidden; text-align: center; border-bottom: 1px solid var(--border); }
.docs-hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 48px; font-weight: 700; color: var(--text1); margin-bottom: 16px; letter-spacing: -0.02em; }
.docs-hero p { font-size: 18px; color: var(--text2); max-width: 600px; margin: 0 auto 32px; }
.docs-search { max-width: 500px; margin: 0 auto; position: relative; }
.docs-search .search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text3); width: 20px; height: 20px; }
.docs-search input { width: 100%; background: var(--dark2); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 16px 16px 48px; font-size: 16px; color: var(--text1); transition: border-color 0.2s; outline: none; }
.docs-search input:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(0,230,118,0.1); }
:root.light .docs-search input:focus { border-color: #1400A0; box-shadow: 0 0 0 3px rgba(20,0,160,0.1); }

.docs-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.docs-sidebar { position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; padding-right: 16px; }
.docs-sidebar::-webkit-scrollbar { width: 4px; }
.docs-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.ds-group { margin-bottom: 32px; }
.ds-group h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text3); margin-bottom: 12px; font-weight: 600; }
.ds-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ds-group a { color: var(--text2); text-decoration: none; font-size: 15px; transition: color 0.2s; display: block; padding: 6px 12px; border-radius: 6px; margin-left: -12px; }
.ds-group a:hover { color: var(--text1); background: var(--dark2); }
.ds-group a.active { color: var(--g); font-weight: 500; background: rgba(0,230,118,0.05); }
:root.light .ds-group a.active { color: #1400A0; background: rgba(20,0,160,0.05); }

.docs-content h2 { font-size: 32px; color: var(--text1); margin-bottom: 16px; font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -0.01em; }
.docs-content h3 { font-size: 24px; color: var(--text1); margin: 40px 0 16px; font-family: 'Bricolage Grotesque', sans-serif; }
.docs-content h4 { font-size: 18px; color: var(--text1); margin: 24px 0 12px; font-weight: 600; }
.docs-content p { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.docs-content p.lead { font-size: 18px; color: var(--text1); margin-bottom: 32px; }
.docs-content ul { padding-left: 20px; margin-bottom: 24px; color: var(--text2); line-height: 1.7; }
.docs-content li { margin-bottom: 8px; }
.docs-content a { color: var(--g); text-decoration: none; font-weight: 500; }
:root.light .docs-content a { color: #1400A0; }
.docs-content a:hover { text-decoration: underline; }

.callout { background: rgba(0,230,118,0.05); border-left: 4px solid var(--g); padding: 20px 24px; border-radius: 0 var(--r) var(--r) 0; display: flex; gap: 16px; margin: 32px 0; }
:root.light .callout { background: rgba(20,0,160,0.03); border-color: #1400A0; }
.callout-icon { color: var(--g); width: 24px; height: 24px; flex-shrink: 0; }
:root.light .callout-icon { color: #1400A0; }
.callout-text { color: var(--text1); font-size: 15px; line-height: 1.6; }

.module-card { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; margin-bottom: 16px; }
.module-card h4 { margin: 0 0 8px 0; display: flex; align-items: center; gap: 8px; color: var(--text1); }
.module-card p { margin: 0; font-size: 14px; }

.docs-pagination { display: flex; justify-content: space-between; align-items: center; margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--border); }
.docs-pagination a { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text1); text-decoration: none !important; padding: 12px 20px; border: 1px solid var(--border); border-radius: var(--r); transition: all 0.2s; }
.docs-pagination a:hover:not(.disabled) { border-color: var(--g); color: var(--g); }
:root.light .docs-pagination a:hover:not(.disabled) { border-color: #1400A0; color: #1400A0; }
.docs-pagination a.disabled { opacity: 0.5; pointer-events: none; }

/* ─── LEGAL PAGE STYLES ─── */
.legal-content { max-width: 800px; margin: 0 auto; color: var(--text2); font-size: 16px; line-height: 1.8; }
.legal-content h2 { font-size: 24px; color: var(--text1); margin: 48px 0 16px; font-family: 'Bricolage Grotesque', sans-serif; }
.legal-content p.lead { font-size: 18px; color: var(--text1); margin-bottom: 32px; font-weight: 500; }
.legal-content ul { padding-left: 20px; margin-bottom: 24px; }
.legal-content li { margin-bottom: 12px; }
.legal-content a { color: var(--g); text-decoration: none; font-weight: 500; }
:root.light .legal-content a { color: #1400A0; }
.legal-content a:hover { text-decoration: underline; }

/* ─── DEMO PAGE STYLES ─── */
.demo-layout { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.demo-info h2 { font-size: 36px; font-family: 'Bricolage Grotesque', sans-serif; color: var(--text1); margin-bottom: 16px; letter-spacing: -0.02em; }
.demo-expectations { list-style: none; padding: 0; margin-bottom: 40px; display: flex; flex-direction: column; gap: 24px; }
.demo-expectations li { display: flex; gap: 16px; }
.de-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(0,230,118,0.1); color: var(--g); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
:root.light .de-icon { background: rgba(20,0,160,0.05); color: #1400A0; }
.de-text h4 { font-size: 18px; color: var(--text1); margin: 0 0 8px 0; font-weight: 600; }
.de-text p { margin: 0; color: var(--text2); font-size: 15px; line-height: 1.6; }

.demo-testimonial { padding: 24px; background: var(--dark2); border-radius: var(--r);}
:root.light .demo-testimonial {}
.demo-testimonial p { font-size: 16px; font-style: italic; color: var(--text1); margin-bottom: 16px; line-height: 1.6; }
.dt-author { display: flex; flex-direction: column; gap: 2px; }
.dt-author strong { color: var(--text1); font-size: 14px; }
.dt-author span { color: var(--text3); font-size: 13px; }

.demo-form-card { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--r); padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
:root.light .demo-form-card { box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.demo-form-card h3 { font-size: 24px; font-family: 'Bricolage Grotesque', sans-serif; color: var(--text1); margin: 0 0 8px 0; }
.demo-form-card > p { color: var(--text2); font-size: 15px; margin-bottom: 32px; }

.demo-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.demo-form .form-group { margin-bottom: 20px; }
.demo-form label { display: block; font-size: 14px; color: var(--text2); margin-bottom: 8px; font-weight: 500; }
.demo-form input, .demo-form select { width: 100%; background: var(--dark1); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text1); font-size: 15px; outline: none; transition: all 0.2s; -webkit-appearance: none; appearance: none; }
.demo-form input:focus, .demo-form select:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(0,230,118,0.1); }
:root.light .demo-form input:focus, :root.light .demo-form select:focus { border-color: #1400A0; box-shadow: 0 0 0 3px rgba(20,0,160,0.1); }

.select-wrapper { position: relative; display: block; }
.select-wrapper svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text3); pointer-events: none; }

.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: var(--text3); margin-top: 20px !important; text-align: center; }

.demo-submit-btn { width: 100%; margin-top: 16px; border: none; cursor: pointer; font-family: inherit; justify-content: center; }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bc-1 { grid-column: span 12; }
  .bc-2 { grid-column: span 12; }
  .bc-3, .bc-4, .bc-5 { grid-column: span 6; }
  .bc-6, .bc-7 { grid-column: span 12; }
  .hiw-step:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-logo { height: 22px; }
  .cta-logo { height: 32px; margin-bottom: 24px; }
  .footer-brand img { height: 24px; margin-bottom: 12px; }
  .nav-center, .btn-nav-ghost, .nav-end .btn-nav-primary { display: none; }
  .mob-menu { display: flex; }
  .bento { grid-template-columns: 1fr; }
  .bc-1, .bc-2, .bc-3, .bc-4, .bc-5, .bc-6, .bc-7 { grid-column: span 1; }
  .hv-body { grid-template-columns: 1fr; }
  .hv-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Tighter section padding on mobile */
  .section { padding: 60px max(16px, 4%); }
  .hero { padding: 100px max(16px, 4%) 60px; }
  .hero-about { padding: 100px max(16px, 4%) 40px; }
  .img-feature { padding: 60px max(16px, 4%); }
  
  /* ─── ABOUT PAGE MOBILE ─── */
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story-text { text-align: center; }
  .about-story-text h2.section-heading { text-align: center !important; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  /* ─── CONTACT PAGE MOBILE ─── */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  
  /* ─── CAREERS PAGE MOBILE ─── */
  .perks-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .jc-action { opacity: 1; transform: translateX(0); }
  .job-card:hover { transform: translateY(-4px); }

  /* ─── HELP CENTER MOBILE ─── */
  .faq-summary { padding: 20px; font-size: 16px; }
  .faq-content { padding: 0 20px 20px; font-size: 15px; }

  /* ─── DOCS PAGE MOBILE ─── */
  .docs-layout { grid-template-columns: 1fr; gap: 40px; }
  .docs-sidebar { position: relative; top: 0; max-height: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 16px; }
  .docs-hero h1 { font-size: 36px; }
  .docs-pagination { flex-direction: column; gap: 16px; }
  .docs-pagination a { width: 100%; justify-content: center; }

  /* ─── DEMO PAGE MOBILE ─── */
  .demo-layout { grid-template-columns: 1fr; gap: 48px; }
  .demo-form-card { padding: 24px; }
  .demo-form .form-row { grid-template-columns: 1fr; gap: 0; }

  .cta-section { margin: 0 16px 48px; padding: 60px max(20px, 5%); }
  footer { padding: 48px max(16px, 4%) 28px; }
  /* Wider hero buttons */
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .hero-actions .btn-cta { justify-content: center; width: 100%; }
  /* Wider CTA section buttons + smaller logo & note */
  .cta-logo { height: 24px; margin-bottom: 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin: 0 auto; }
  .cta-actions .btn-cta { justify-content: center; width: 100%; }
  .cta-note { font-size: 10px; }

  /* ─── HOW IT WORKS — STICKY CARD STACK on mobile ─── */
  .hiw-grid {
    /* Switch from grid to a plain block column so sticky works */
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Remove the shared border/radius — each card gets its own */
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    /* Extra bottom padding so the last card has room to un-stick */
    padding-bottom: 32px;
  }

  .hiw-step {
    position: sticky;
    border-radius: 20px;
    border: 1px solid var(--border);
    /* Slight shadow so stacked cards look layered */
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    /* Remove the shared right / bottom borders from the 1024px rule */
    border-right: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important;
    /* Push each card 16px down from the one before it */
    margin-bottom: 16px;
    /* Smooth scale when a later card is sitting on top */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Stagger the sticky top so cards visually overlap */
  /* Nav height is 64px; each card pins 8px lower than the previous */
  .hiw-step:nth-child(1) { top: 72px;  z-index: 10; }
  .hiw-step:nth-child(2) { top: 80px;  z-index: 20; }
  .hiw-step:nth-child(3) { top: 88px;  z-index: 30; }
  .hiw-step:nth-child(4) { top: 96px;  z-index: 40; }

  /* Light mode card shadow */
  :root.light .hiw-step {
    box-shadow: 0 -4px 24px rgba(20, 0, 160, 0.08);
    border-color: rgba(20, 0, 160, 0.12);
  }
}
@media (max-width: 500px) {
  .proof-bar { flex-direction: column; gap: 8px; }
  .proof-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  /* About Page */
  .value-card { padding: 28px 20px; }
  .about-story { gap: 32px; }
  .hero-about h1 { font-size: 38px; }
}

/* ─── WEBSITE SERVICE TEASER BANNER ─── */
.ws-teaser {
  position: relative; z-index: 1;
  margin: 0 max(24px, 4%) 0;
  padding: 0 max(24px, 4%) 80px;
}
.ws-teaser-inner {
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(14,0,128,0.55) 0%, rgba(5,4,15,0.7) 50%, rgba(0,40,20,0.45) 100%);
  border: 1px solid rgba(0,230,118,0.2);
  backdrop-filter: blur(20px);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ws-teaser-inner:hover {
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 0 60px rgba(0,230,118,0.08);
}
:root.light .ws-teaser-inner {
  background: linear-gradient(120deg, rgba(20,0,160,0.07) 0%, rgba(255,255,255,0.6) 50%, rgba(0,200,80,0.05) 100%);
  border-color: rgba(20,0,160,0.18);
  backdrop-filter: blur(20px);
}
:root.light .ws-teaser-inner:hover {
  border-color: rgba(20,0,160,0.35);
  box-shadow: 0 8px 40px rgba(20,0,160,0.1);
}
.ws-teaser-glow {
  position: absolute; width: 400px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, transparent 70%);
  top: -80px; right: 200px; filter: blur(40px); pointer-events: none;
}
.ws-teaser-left { flex: 1; position: relative; z-index: 1; }
.ws-teaser-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.3);
  border-radius: 100px; padding: 4px 12px 4px 6px;
  font-size: 11px; font-weight: 700; color: var(--g);
  letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 16px;
}
:root.light .ws-teaser-pill { background: rgba(20,0,160,0.08); border-color: rgba(20,0,160,0.25); color: #1400A0; }
.ws-teaser-pill-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--g); display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #060F08;
}
:root.light .ws-teaser-pill-dot { background: #1400A0; color: #fff; }
.ws-teaser-left h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text1); margin-bottom: 12px; line-height: 1.2;
}
.ws-teaser-left h3 em { font-style: normal; color: var(--g); }
:root.light .ws-teaser-left h3 em { color: #1400A0; }
.ws-teaser-left p { font-size: 15px; color: var(--text2); line-height: 1.65; max-width: 520px; margin-bottom: 20px; }
.ws-teaser-bullets { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.ws-teaser-bullet {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text2); font-weight: 500;
}
.ws-teaser-bullet-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,230,118,0.15); border: 1px solid rgba(0,230,118,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--g); flex-shrink: 0;
}
:root.light .ws-teaser-bullet-icon { background: rgba(20,0,160,0.08); border-color: rgba(20,0,160,0.25); color: #1400A0; }
.ws-teaser-right { flex-shrink: 0; position: relative; z-index: 1; text-align: center; }
.ws-teaser-price { font-size: 12px; color: var(--text3); margin-bottom: 6px; letter-spacing: 0.3px; }
.ws-teaser-right .btn-cta { white-space: nowrap; }
.ws-teaser-note { font-size: 12px; color: var(--text3); margin-top: 8px; }
@media (max-width: 860px) {
  .ws-teaser-inner { flex-direction: column; align-items: flex-start; padding: 32px 28px; gap: 28px; }
  .ws-teaser-right { width: 100%; }
  .ws-teaser-right .btn-cta { width: 100%; justify-content: center; }
}

/* ─── CHURCH WEBSITE SERVICE PAGE ─── */
.cws-what-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.cws-what-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.cws-what-card:hover { transform: translateY(-4px); border-color: var(--border2); }
:root.light .cws-what-card { box-shadow: 0 2px 16px rgba(20,0,160,0.05); }
:root.light .cws-what-card:hover { border-color: rgba(20,0,160,0.28); box-shadow: 0 8px 32px rgba(20,0,160,0.09); }
.cws-what-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--g); margin-bottom: 20px;
}
:root.light .cws-what-icon { background: rgba(20,0,160,0.07); border-color: rgba(20,0,160,0.18); color: #1400A0; }
.cws-what-card h3 { font-size: 17px; font-weight: 700; color: var(--text1); margin-bottom: 10px; letter-spacing: -0.02em; }
.cws-what-card p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* Process steps */
.cws-process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 56px;
  background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
:root.light .cws-process { box-shadow: 0 4px 24px rgba(20,0,160,0.06); }
.cws-step {
  background: var(--dark2); padding: 40px 32px; position: relative;
  transition: background 0.3s;
}
.cws-step:hover { background: var(--dark3); }
.cws-step-num {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 52px; font-weight: 900;
  line-height: 1; color: rgba(0,230,118,0.12); letter-spacing: -0.05em; margin-bottom: 20px;
  transition: color 0.3s;
}
:root.light .cws-step-num { color: rgba(20,0,160,0.1); }
.cws-step:hover .cws-step-num { color: rgba(0,230,118,0.28); }
:root.light .cws-step:hover .cws-step-num { color: rgba(20,0,160,0.3); }
.cws-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.cws-step p { font-size: 14px; color: var(--text2); line-height: 1.65; }
.cws-step-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--g);
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2);
  border-radius: 100px; padding: 3px 10px; letter-spacing: 0.4px;
  margin-bottom: 12px; text-transform: uppercase;
}
:root.light .cws-step-tag { color: #1400A0; background: rgba(20,0,160,0.07); border-color: rgba(20,0,160,0.18); }

/* CWS Pricing */
.cws-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.cws-pkg {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px; display: flex; flex-direction: column;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.cws-pkg:hover { transform: translateY(-4px); border-color: var(--border2); }
.cws-pkg.hot {
  background: linear-gradient(160deg, #0A0060 0%, #0D0045 50%, #0A0020 100%);
  border-color: rgba(0,230,118,0.25);
}
:root.light .cws-pkg.hot {
  background: linear-gradient(160deg, #1400A0 0%, #1a00c4 40%, #0f0080 100%);
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 0 40px rgba(20,0,160,0.2);
}
.cws-pkg.hot::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,230,118,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cws-pkg-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--g); color: #060F08; font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase;
}
.cws-pkg-name { font-size: 12px; font-weight: 700; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.cws-pkg-price {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 46px; font-weight: 800;
  letter-spacing: -0.05em; line-height: 1; margin-bottom: 4px;
}
.cws-pkg-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; font-weight: 700; }
.cws-pkg-cycle { font-size: 13px; color: var(--text3); margin-bottom: 20px; }
.cws-pkg-desc { font-size: 14px; color: var(--text2); margin-bottom: 24px; line-height: 1.65; }
.cws-pkg-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 28px; }
.cws-pkg-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text2); }
.cws-pkg-features li svg { width: 14px; height: 14px; stroke: var(--g); stroke-width: 2.5; flex-shrink: 0; margin-top: 2px; }
.cws-pkg.hot .cws-pkg-features li { color: rgba(255,255,255,0.95); }
:root.light .cws-pkg.hot .cws-pkg-name,
:root.light .cws-pkg.hot .cws-pkg-cycle { color: rgba(255,255,255,0.75); }
:root.light .cws-pkg.hot .cws-pkg-price,
:root.light .cws-pkg.hot .cws-pkg-desc { color: #fff; }
:root.light .cws-pkg.hot .cws-pkg-features li { color: #fff; }

/* CWS Request Form */
.cws-form-wrap {
  max-width: 760px; margin: 56px auto 0;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px;
}
:root.light .cws-form-wrap { box-shadow: 0 8px 48px rgba(20,0,160,0.08); }
.cws-form-header { text-align: center; margin-bottom: 40px; }
.cws-form-header h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text1); margin-bottom: 10px;
}
.cws-form-header p { font-size: 15px; color: var(--text2); line-height: 1.65; }
.cws-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cws-form select.form-input { appearance: none; -webkit-appearance: none; cursor: pointer; }

/* Sample site showcase */
.cws-samples {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.cws-sample {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark2);
  transition: transform 0.3s, border-color 0.3s;
}
.cws-sample:hover { transform: translateY(-4px); border-color: var(--border2); }
.cws-sample-browser {
  background: var(--dark3); padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.cws-sample-dot { width: 9px; height: 9px; border-radius: 50%; }
.cws-sample-url {
  flex: 1; margin: 0 8px; height: 16px; background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
:root.light .cws-sample-url { background: rgba(0,0,0,0.06); }
.cws-sample-preview {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.cws-sp-hero {
  flex: 0 0 45%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; padding: 0 16px;
}
.cws-sp-nav {
  height: 30px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px; border-bottom: 1px solid var(--border);
}
.cws-sp-logo { height: 8px; width: 50px; border-radius: 4px; background: rgba(255,255,255,0.2); }
:root.light .cws-sp-logo { background: rgba(0,0,0,0.15); }
.cws-sp-links { display: flex; gap: 8px; }
.cws-sp-link { height: 6px; width: 24px; border-radius: 3px; background: rgba(255,255,255,0.1); }
:root.light .cws-sp-link { background: rgba(0,0,0,0.1); }
.cws-sp-h1 { height: 10px; border-radius: 5px; margin-bottom: 4px; }
.cws-sp-sub { height: 7px; width: 70%; border-radius: 3px; background: rgba(255,255,255,0.1); }
:root.light .cws-sp-sub { background: rgba(0,0,0,0.08); }
.cws-sp-btn { height: 20px; width: 60px; border-radius: 6px; margin-top: 6px; }
.cws-sp-body { flex: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 10px; align-items: center; }
.cws-sp-card { border-radius: 6px; height: 100%; min-height: 40px; }
.cws-sample-label { padding: 14px 16px; }
.cws-sample-label strong { display: block; font-size: 13px; font-weight: 700; color: var(--text1); margin-bottom: 3px; }
.cws-sample-label span { font-size: 12px; color: var(--text3); }

/* Responsive CWS page */
@media (max-width: 900px) {
  .cws-what-grid { grid-template-columns: 1fr 1fr; }
  .cws-process { grid-template-columns: 1fr; }
  .cws-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .cws-samples { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .cws-what-grid { grid-template-columns: 1fr; }
  .cws-form-wrap { padding: 28px 20px; }
  .cws-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ─── CWS PORTFOLIO MARQUEE ─── */
.cws-portfolio-wrap { width: 100%; overflow: hidden; padding: 40px 0 60px; position: relative; }
.cws-marquee { display: flex; width: max-content; animation: cwsScroll 40s linear infinite; gap: 32px; padding: 0 16px; }
.cws-marquee:hover { animation-play-state: paused; }
@keyframes cwsScroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 16px)); } }
.cws-pf-item { width: 380px; height: 260px; border-radius: 16px; overflow: hidden; position: relative; flex-shrink: 0; box-shadow: 0 16px 40px rgba(0,0,0,0.2); border: 1px solid var(--border); background: var(--dark1); cursor: pointer; }
:root.light .cws-pf-item { box-shadow: 0 16px 40px rgba(20,0,160,0.08); border-color: rgba(20,0,160,0.1); background: #FFFFFF; }
.cws-pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.cws-pf-item:hover img { transform: scale(1.08); }
.cws-pf-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; padding: 24px; }
.cws-pf-item:hover .cws-pf-overlay { opacity: 1; }
.cws-pf-overlay span { color: #fff; font-weight: 600; font-size: 15px; transform: translateY(10px); transition: transform 0.3s ease; }
.cws-pf-item:hover .cws-pf-overlay span { transform: translateY(0); }
@media (max-width: 600px) { .cws-pf-item { width: 280px; height: 190px; } }
