/* ============================================================
   Build With Joshna — styles.css  v2 (Premium Upgrade)
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #060C1F;
  color: #b8c8e0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Design Tokens ── */
:root {
  --ink:         #03071A;
  --deep:        #060C1F;
  --mid:         #0A1228;
  --card:        #0E1A36;
  --lift:        #152040;
  --border-sub:  rgba(255,255,255,0.06);
  --border-card: rgba(255,255,255,0.09);

  --gold:        #FFD700;
  --gold-hi:     #FFE44D;
  --gold-lo:     #D4A800;
  --gold-glow:   rgba(255,215,0,0.22);
  --gold-subtle: rgba(255,215,0,0.07);
  --gold-border: rgba(255,215,0,0.22);

  --teal:        #00D4AA;
  --teal-dim:    rgba(0,212,170,0.12);
  --teal-border: rgba(0,212,170,0.22);

  --white:       #ffffff;
  --t1:          #eef2ff;
  --t2:          #b8c8e0;
  --t3:          #5d7499;
  --t4:          #3a4e6e;

  --glass-bg:    rgba(14,26,54,0.6);
  --glass-bg-h:  rgba(21,32,64,0.75);
  --glass-line:  rgba(255,255,255,0.07);
  --glass-line-h:rgba(255,215,0,0.2);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  26px;
  --r-pill:100px;

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --dur:   260ms;

  --section-py: 120px;
  --container:  1160px;
}

/* ── Type ── */
h1,h2,h3,h4,h5 {
  color: var(--t1);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--t2); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  color: var(--t2);
  line-height: 1.82;
}

.gold-text {
  background: linear-gradient(130deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-lo) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
.section      { padding-block: var(--section-py); }
.section-alt  { background: var(--mid); }
.section-dark { background: var(--ink); }
.text-center  { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(255,215,0,0.3));
  display: block;
  flex-shrink: 0;
}

.gold-rule {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-block: 20px 28px;
}
.gold-rule.center { margin-inline: auto; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  border: none;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  position: relative;
}
.btn:active { transform: translateY(0) !important; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-lo) 100%);
  background-size: 200% auto;
  color: #060C1F;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,215,0,0.28);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.42);
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  color: var(--t1);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(255,215,0,0.05);
}

.btn-teal {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal-border);
}
.btn-teal:hover {
  background: var(--teal-dim);
  transform: translateY(-2px);
}

.btn-lg   { padding: 17px 34px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Glass card ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-lg);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.glass:hover {
  background: var(--glass-bg-h);
  border-color: var(--glass-line-h);
  box-shadow: 0 0 36px var(--gold-glow), 0 20px 48px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold-subtle); color: var(--gold); border: 1px solid var(--gold-border); }
.badge-teal { background: var(--teal-dim); color: var(--teal); border: 1px solid var(--teal-border); }

/* Background orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}
.bg-orb-gold { background: radial-gradient(circle, rgba(255,215,0,0.14), transparent 68%); }
.bg-orb-teal { background: radial-gradient(circle, rgba(0,212,170,0.09), transparent 68%); }

/* ── Forms (base) ── */
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--t1);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus {
  border-color: rgba(255,215,0,0.4);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.07), 0 0 16px rgba(255,215,0,0.06);
  background: rgba(255,255,255,0.06);
}
.form-input::placeholder { color: var(--t4); }
.form-input.error { border-color: rgba(248,113,113,0.55); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235d7499' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-input option { background: var(--card); color: var(--t1); }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,12,31,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-color: rgba(255,255,255,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__logo-tag {
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--t2);
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav__link:hover         { color: var(--white); }
.nav__link:hover::after  { right: 0; }
.nav__link.active        { color: var(--white); }
.nav__link.active::after { right: 0; }

.nav__cta { margin-left: 10px; padding: 10px 22px; font-size: 0.83rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 4px 32px 24px;
  background: rgba(6,12,31,0.97);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
}
.nav__mobile .btn { margin-top: 20px; width: 100%; justify-content: center; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
  background: linear-gradient(145deg, var(--ink) 0%, var(--deep) 45%, var(--mid) 100%);
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 15%, transparent 100%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  padding-block: 80px;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(255,215,0,0.4);
  animation: dot-pulse 2.4s ease infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(255,215,0,0.4); }
  50%      { box-shadow: 0 0 4px var(--gold), 0 0 8px rgba(255,215,0,0.2); }
}

.hero__title { margin-bottom: 22px; }
.hero__title em {
  font-style: normal;
  background: linear-gradient(130deg, var(--gold-hi) 0%, var(--gold) 50%, var(--gold-lo) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

.hero__sub {
  max-width: 520px;
  margin-bottom: 40px;
  font-size: 1.08rem;
  line-height: 1.82;
  color: var(--t2);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t2);
}
.hero__proof-item svg { color: var(--gold); flex-shrink: 0; }
.hero__proof-divider  { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }

/* Phone frame */
.hero__right { display: flex; justify-content: center; align-items: center; }
.phone-wrap  { position: relative; }

.phone-glow {
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,215,0,0.13), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glow-breathe 3.8s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%,100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}

.phone {
  position: relative;
  z-index: 1;
  width: 268px;
  background: linear-gradient(165deg, #18254e 0%, #07101f 100%);
  border-radius: 46px;
  padding: 12px 12px 18px;
  border: 1.5px solid rgba(255,215,0,0.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 48px 96px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.phone__notch {
  width: 84px; height: 20px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 10px;
  position: relative;
}
.phone__notch::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0e1a36;
}

.phone__screen {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #000;
  position: relative;
  cursor: pointer;
}

/* Poster (thumbnail preview) */
.phone__poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(6,12,31,0.3) 0%, rgba(3,7,26,0.7) 100%),
    url('https://i.ytimg.com/vi/851HQ04fzlM/hqdefault.jpg') center/cover no-repeat;
  transition: opacity 0.3s var(--ease);
}
.phone__poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,16,42,0.55) 0%, rgba(3,7,26,0.72) 100%);
}
.phone__play-btn {
  position: relative;
  z-index: 1;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: none;
  box-shadow: 0 0 0 8px rgba(255,215,0,0.12), 0 8px 32px rgba(255,215,0,0.4);
  transition: all 0.22s var(--ease);
}
.phone__play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(255,215,0,0.15), 0 12px 40px rgba(255,215,0,0.55);
}
.phone__poster-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.phone__quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(3,7,26,0.96) 0%, transparent 100%);
  pointer-events: none;
}
.phone__quote-text {
  font-size: 0.77rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.45;
  font-weight: 500;
}

.phone__home-bar {
  width: 84px; height: 4px;
  background: rgba(255,255,255,0.16);
  border-radius: 4px;
  margin: 11px auto 0;
}


/* ============================================================
   SECTION 2 — SYSTEMS
   ============================================================ */
.systems { border-top: 1px solid var(--border-sub); }
.systems__intro { max-width: 580px; margin-inline: auto; margin-bottom: 60px; }

.systems__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.sys-card {
  padding: 28px 18px;
  text-align: center;
  cursor: default;
}
.sys-card__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--gold-subtle);
  border: 1px solid rgba(255,215,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 16px;
  transition: background 0.2s, box-shadow 0.2s;
}
.sys-card:hover .sys-card__icon {
  background: rgba(255,215,0,0.13);
  box-shadow: 0 0 22px rgba(255,215,0,0.28);
}
.sys-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.sys-card__sub {
  font-size: 0.77rem;
  color: var(--t3);
  line-height: 1.55;
}


/* ============================================================
   SECTION 3 — TRANSFORMATION
   ============================================================ */
.transform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.transform__inputs {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.transform__toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.toggle-row:hover {
  background: rgba(255,215,0,0.04);
  border-color: rgba(255,215,0,0.2);
}
.toggle {
  position: relative;
  width: 38px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  z-index: 1;
}
.toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
.toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}
.toggle-thumb {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--t3);
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
  z-index: 2;
}
.toggle input:checked ~ .toggle-track { background: rgba(255,215,0,0.28); }
.toggle input:checked ~ .toggle-thumb { transform: translateX(18px); background: var(--gold); }

/* Diagram */
.diagram-wrap { display: flex; align-items: center; justify-content: center; }
.diagram {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
}
.diagram svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.diagram-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 108px; height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,215,0,0.13), rgba(255,215,0,0.04));
  border: 1.5px solid var(--gold-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 0 48px rgba(255,215,0,0.14);
  z-index: 2;
}
.diagram-center-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
}
.diagram-center-sub {
  font-size: 0.55rem;
  color: var(--t3);
  margin-top: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.diagram-node {
  position: absolute;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(14,26,54,0.8);
  border: 1px solid var(--border-card);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.diagram-node:hover {
  border-color: var(--gold-border);
  box-shadow: 0 0 24px var(--gold-glow);
}
.diagram-node svg { color: var(--gold); }
.diagram-node-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t2);
  line-height: 1.2;
}
.node-tl { top: 8%;  left: 8%; }
.node-tr { top: 8%;  right: 8%; }
.node-bl { bottom: 8%; left: 8%; }
.node-br { bottom: 8%; right: 8%; }


/* ============================================================
   SECTION 4 — GAP ANALYSIS
   ============================================================ */
.gap { position: relative; overflow: hidden; }
.gap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.gap__bullets {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px;
}
.gap__bullet {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.9rem; color: var(--t2);
}
.gap__bullet-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: 1px;
}
.gap__form-wrap { padding: 36px; }
.gap__form-title { font-size: 1.25rem; margin-bottom: 6px; }
.gap__form-sub   { font-size: 0.82rem; color: var(--t3); margin-bottom: 26px; line-height: 1.5; }
.gap__form       { display: flex; flex-direction: column; gap: 15px; }
.form-note       { font-size: 0.7rem; color: var(--t3); text-align: center; line-height: 1.5; }

/* Success states */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 20px 0;
}
.form-success.visible { display: flex; }
.form-success__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  background: rgba(255,215,0,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 32px rgba(255,215,0,0.15);
}
.form-success__title { font-size: 1.1rem; color: var(--white); font-weight: 700; }
.form-success__sub   { font-size: 0.85rem; color: var(--t3); line-height: 1.6; }
.form-success__icon--teal {
  border-color: rgba(0,212,170,0.35);
  background: rgba(0,212,170,0.07);
  color: var(--teal);
  box-shadow: 0 0 32px rgba(0,212,170,0.15);
}
.form-success__actions {
  display: flex; flex-direction: column; gap: 10px; width: 100%; margin-top: 4px;
}
.btn-full { width: 100%; justify-content: center; }
.btn-success-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s;
  background: #25D366; color: #fff; border: none;
}
.btn-success-wa:hover { background: #1ebe59; transform: translateY(-1px); }
.form-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
}


/* ============================================================
   SECTION 5 — COVERAGE
   ============================================================ */
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 52px;
}
.coverage-card {
  padding: 48px 36px;
  text-align: center;
}
.coverage-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--gold-subtle);
  border: 1px solid rgba(255,215,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}
.coverage-card h3 { margin-bottom: 12px; }
.coverage-card p  { font-size: 0.88rem; margin-bottom: 26px; line-height: 1.7; }


/* ============================================================
   SECTION 6 — AUTHORITY / ABOUT
   ============================================================ */
.authority__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: center;
}

/* Portrait */
.authority__photo-wrap { position: relative; }
.authority__photo-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--card), var(--ink));
  border: 1px solid var(--border-card);
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.06),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(255,215,0,0.06);
}
.authority__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Gold corner accents */
.authority__photo-frame::before,
.authority__photo-frame::after {
  content: '';
  position: absolute;
  width: 44px; height: 44px;
  z-index: 2;
}
.authority__photo-frame::before {
  top: -1px; left: -1px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  border-radius: var(--r-xl) 0 0 0;
  opacity: 0.7;
}
.authority__photo-frame::after {
  bottom: -1px; right: -1px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  border-radius: 0 0 var(--r-xl) 0;
  opacity: 0.7;
}
.authority__photo-badge {
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  background: rgba(6,12,31,0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-pill);
  padding: 9px 20px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  z-index: 3;
  letter-spacing: 0.02em;
}

/* Content */
.authority__quote {
  margin: 24px 0 28px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(255,215,0,0.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.authority__quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--t1);
  line-height: 1.6;
  font-weight: 500;
}
.authority__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.authority__stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  display: flex; align-items: center; gap: 2px;
}
.authority__stat-num span { color: var(--gold); }
.authority__stat-label {
  font-size: 0.78rem;
  color: var(--t3);
  margin-top: 5px;
  line-height: 1.4;
}


/* ============================================================
   SECTION 7 — EDUCATION
   ============================================================ */
.education__inner { max-width: 800px; margin-inline: auto; text-align: center; }
.education__body  {
  margin-block: 24px;
  font-size: 1rem;
  line-height: 1.88;
  color: var(--t2);
}
.education__callout {
  margin-top: 36px;
  padding: 26px 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--gold-border);
  background: rgba(255,215,0,0.04);
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.education__callout-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--gold-subtle);
  border: 1px solid rgba(255,215,0,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: 2px;
}
.education__callout-text {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--t2);
}
.education__callout-text strong { color: var(--t1); font-weight: 600; }


/* ============================================================
   SECTION 8 — STRATEGIES
   ============================================================ */
.strategies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.strategy-card { padding: 36px 28px; }
.strategy-card__num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 18px;
}
.strategy-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-subtle);
  border: 1px solid rgba(255,215,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.strategy-card h3 { margin-bottom: 10px; }
.strategy-card p  { font-size: 0.875rem; line-height: 1.68; }


/* ============================================================
   SECTION 9 — BUILDER PATH
   ============================================================ */
.builder { position: relative; overflow: hidden; }
.builder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.builder__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.builder__pillar {
  padding: 18px 14px;
  border-radius: var(--r-md);
  text-align: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-sub);
  transition: border-color 0.2s, background 0.2s;
}
.builder__pillar:hover {
  border-color: var(--gold-border);
  background: rgba(255,215,0,0.04);
}
.builder__pillar svg { color: var(--gold); margin: 0 auto 10px; display: block; }
.builder__pillar-label { font-size: 0.78rem; font-weight: 600; color: var(--t1); }

.builder__points { display: flex; flex-direction: column; gap: 15px; margin-top: 26px; }
.builder__point  { display: flex; align-items: flex-start; gap: 14px; font-size: 0.875rem; color: var(--t2); }
.builder__point-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
  box-shadow: 0 0 8px rgba(255,215,0,0.5);
}

.builder__card { padding: 44px 34px; }
.builder__card-title { font-size: 1.4rem; margin-bottom: 8px; }
.builder__card-sub   { font-size: 0.85rem; color: var(--t3); margin-bottom: 26px; }
.builder__card-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.builder__card-item  { display: flex; align-items: center; gap: 14px; }
.builder__card-item svg  { color: var(--teal); flex-shrink: 0; }
.builder__card-item span { font-size: 0.875rem; color: var(--t2); }


/* ============================================================
   SECTION 10 — CONSULTATION
   ============================================================ */
.consult__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.consult__values { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.consult__value  { display: flex; gap: 16px; align-items: flex-start; }
.consult__value-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--gold-subtle);
  border: 1px solid rgba(255,215,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: 2px;
}
.consult__value h4 { margin-bottom: 3px; font-size: 0.95rem; }
.consult__value p  { font-size: 0.82rem; line-height: 1.6; }
.consult__form-wrap { padding: 36px; }
.consult__form      { display: flex; flex-direction: column; gap: 15px; }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta__inner {
  position: relative;
  z-index: 1;
  padding: 88px 48px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(21,32,64,0.9) 0%, rgba(14,26,54,0.95) 100%);
  border: 1px solid var(--gold-border);
  overflow: hidden;
}
.final-cta__inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,215,0,0.07), transparent 65%);
  pointer-events: none;
}
.final-cta__inner h2 { margin-bottom: 14px; position: relative; }
.final-cta__inner p  {
  max-width: 420px; margin-inline: auto; margin-bottom: 38px;
  font-size: 1.05rem; position: relative;
}
.final-cta__btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border-sub);
  padding-block: 72px 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__brand-name { font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 2px; }
.footer__brand-tag  { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; opacity: 0.85; }
.footer__brand-line { font-size: 0.875rem; color: var(--t3); line-height: 1.7; max-width: 280px; margin-bottom: 4px; }
.footer__brand-sub  { font-size: 0.78rem; color: var(--t3); opacity: 0.55; font-style: italic; }
.footer__col-title  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--t2); margin-bottom: 18px; }
.footer__links      { display: flex; flex-direction: column; gap: 10px; }
.footer__link       { font-size: 0.875rem; color: var(--t3); transition: color 0.2s; }
.footer__link:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--t3); margin-bottom: 9px; }
.footer__contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer__contact-item a:hover { color: var(--gold); }
.footer__license {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: var(--t3); opacity: 0.6; margin-block: 6px 16px;
}
.footer__social { display: flex; flex-direction: column; gap: 8px; }
.footer__bottom {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 24px; flex-wrap: wrap;
}
.footer__bottom-left { display: flex; flex-direction: column; gap: 10px; }
.footer__legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal-link  { font-size: 0.76rem; color: var(--t3); transition: color 0.2s; }
.footer__legal-link:hover { color: var(--gold); }
.footer__copy       { font-size: 0.76rem; color: var(--t3); }
.footer__disclaimer { font-size: 0.7rem; color: var(--t3); opacity: 0.5; line-height: 1.65; max-width: 480px; }


/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-fab {
  position: fixed;
  bottom: 100px; right: 24px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(255,215,0,0.4), 0 0 0 0 rgba(255,215,0,0.3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  animation: fab-pulse 3s ease infinite;
}
@keyframes fab-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(255,215,0,0.4), 0 0 0 0 rgba(255,215,0,0.25); }
  50%      { box-shadow: 0 4px 32px rgba(255,215,0,0.5), 0 0 0 8px rgba(255,215,0,0); }
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 36px rgba(255,215,0,0.55); }
.chat-fab__icon-close { display: none; }
.chat-fab.open .chat-fab__icon-chat  { display: none; }
.chat-fab.open .chat-fab__icon-close { display: block; }

.chat-panel {
  position: fixed;
  bottom: 172px; right: 24px;
  z-index: 899;
  width: 360px;
  max-height: 560px;
  border-radius: var(--r-xl);
  background: rgba(8,14,34,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,215,0,0.18);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 40px rgba(255,215,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(21,32,64,0.9), rgba(14,20,46,0.95));
  border-bottom: 1px solid rgba(255,215,0,0.1);
  display: flex; align-items: center; gap: 13px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-name { font-size: 0.9rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.chat-header-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: var(--teal);
}
.chat-status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: status-blink 2.5s ease infinite;
}
@keyframes status-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.chat-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--t3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.chat-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.chat-disclaimer {
  padding: 8px 18px;
  background: rgba(255,215,0,0.04);
  border-bottom: 1px solid rgba(255,215,0,0.08);
  font-size: 0.67rem;
  color: var(--t3);
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.2); border-radius: 4px; }

.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  max-width: 90%;
}
.chat-msg--bot { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg__avatar {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 0.65rem; font-weight: 800;
}
.chat-msg__bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.83rem;
  line-height: 1.6;
  max-width: 260px;
}
.chat-msg--bot  .chat-msg__bubble {
  background: rgba(21,32,64,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
  color: var(--t2);
}
.chat-msg--user .chat-msg__bubble {
  background: linear-gradient(135deg, rgba(255,215,0,0.18), rgba(255,215,0,0.1));
  border: 1px solid rgba(255,215,0,0.2);
  border-bottom-right-radius: 4px;
  color: var(--t1);
}

/* Typing indicator */
.chat-typing { align-items: center; }
.chat-typing .chat-msg__bubble {
  padding: 12px 16px;
  display: flex; gap: 4px; align-items: center;
}
.typing-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--t3);
  animation: typing-bounce 1.2s ease infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.5; }
  40%          { transform: translateY(-5px); opacity: 1; }
}

/* Quick questions */
.chat-quick-wrap {
  padding: 6px 18px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  flex-shrink: 0;
}
.chat-quick-wrap.hidden { display: none; }
.chat-quick {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: var(--r-pill);
  padding: 6px 13px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.chat-quick:hover {
  background: rgba(255,215,0,0.14);
  border-color: rgba(255,215,0,0.35);
}
.chat-action-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--gold);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.chat-action-btn:hover {
  background: #ffe44d;
  transform: translateY(-1px);
}

/* Input row */
.chat-input-row {
  padding: 12px 16px 14px;
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(6,12,31,0.6);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  color: var(--t1);
  font-size: 0.83rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: rgba(255,215,0,0.3); }
.chat-input::placeholder { color: var(--t4); }
.chat-send {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  border: none;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-send:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(255,215,0,0.4); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__layout      { grid-template-columns: 1fr; gap: 52px; }
  .hero__right       { display: none; }
  .transform__grid   { grid-template-columns: 1fr; gap: 52px; }
  .authority__grid   { grid-template-columns: 1fr; gap: 56px; }
  .authority__photo-wrap { max-width: 380px; margin-inline: auto; }
  .builder__grid     { grid-template-columns: 1fr; gap: 52px; }
  .consult__grid     { grid-template-columns: 1fr; gap: 52px; }
  .systems__grid     { grid-template-columns: repeat(3, 1fr); }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .footer__brand     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__layout    { padding-block: 52px; }
  .hero__ctas      { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .gap__grid       { grid-template-columns: 1fr; gap: 52px; }
  .coverage__grid  { grid-template-columns: 1fr; }
  .strategies__grid{ grid-template-columns: 1fr; }
  .builder__pillars{ grid-template-columns: 1fr 1fr; }
  .authority__stats{ grid-template-columns: 1fr 1fr; }
  .final-cta__inner{ padding: 52px 24px; }
  .final-cta__btns { flex-direction: column; align-items: center; }
  .final-cta__btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .footer__grid    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; }
  .systems__grid   { grid-template-columns: repeat(2, 1fr); }
  .chat-panel      { width: calc(100vw - 40px); right: 20px; bottom: 168px; }
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .chat-fab {
    bottom: 74px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .chat-fab svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .container        { padding-inline: 20px; }
  .hero__proof      { flex-direction: column; align-items: flex-start; }
  .hero__proof-divider { display: none; }
  .systems__grid    { grid-template-columns: 1fr 1fr; }
  .builder__pillars { grid-template-columns: 1fr; }
}


/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.4);
  z-index: 998;
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.22s cubic-bezier(0.22,1,0.36,1);
  animation: wa-pulse 3.2s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), 0 0 28px rgba(37,211,102,0.55);
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.35); }
  50%      { box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ============================================================
   COSMIC CURSOR CANVAS
   ============================================================ */
#cosmicCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   FIX 3 — Rotating Top Bar
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, #0A0F2C 0%, #141a3d 50%, #0A0F2C 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 0;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  position: relative;
}
.top-bar__track {
  flex: 1;
  position: relative;
  height: 38px;
}
.top-bar__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.top-bar__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar__item svg { color: #FFD700; flex-shrink: 0; }
.top-bar__item strong { color: #fff; font-weight: 600; }
.top-bar__sep { color: rgba(255, 215, 0, 0.35); }
.top-bar__cta {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  transition: border-color 0.2s, color 0.2s;
}
.top-bar__cta:hover { color: #fff; border-color: #fff; }

/* Live indicator */
.top-bar__item--live {
  color: #FFD700;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}
.top-bar__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFD700;
  animation: liveDotPulse 1.6s infinite;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}
@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Arrows */
.top-bar__arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.18);
  color: rgba(255, 255, 255, 0.7);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  padding: 0;
}
.top-bar__arrow:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border-color: #FFD700;
}

@media (max-width: 600px) {
  .top-bar { font-size: 11px; padding: 0; }
  .top-bar__inner { min-height: 32px; padding: 0 4px; }
  .top-bar__track { height: 32px; }
  .top-bar__slide { gap: 6px; padding: 0 4px; font-size: 11px; }
  .top-bar__sep { display: none; }
  .top-bar__arrow { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
  /* Hide arrows on very small screens — auto-rotate handles it */
  .top-bar__arrow { display: none; }
}

/* ============================================================
   FIX 5 — Live Gap Score
   ============================================================ */
.gap-score-box {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.gap-score-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #FFD700;
  font-weight: 600;
  margin-bottom: 12px;
}
.gap-score-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}
.gap-score-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4d4d 0%, #FFD700 50%, #2ecc71 100%);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 99px;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.3);
}
.gap-score-msg {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   FIX 6 — Risk Reversal Blocks
   ============================================================ */
.risk-reversal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.22);
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.risk-reversal svg {
  color: #2ecc71;
  flex-shrink: 0;
  margin-top: 2px;
}
.risk-reversal strong { color: #2ecc71; font-weight: 600; }

/* ============================================================
   FIX 7 — Testimonials Section
   ============================================================ */
.testimonials {
  background: linear-gradient(180deg, #0a0f2c 0%, #0e1338 100%);
  padding: 90px 0;
}
.testimonials__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: 14px;
  letter-spacing: 0.3px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  padding: 32px 28px;
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.test-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
}
.test-stars {
  color: #FFD700;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 18px;
}
.test-quote {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #d4a017);
  color: #0A0F2C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: serif;
  flex-shrink: 0;
}
.test-name { font-weight: 600; font-size: 14px; color: #fff; }
.test-role { font-size: 12px; color: rgba(255, 255, 255, 0.55); margin-top: 2px; }
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 18px; }
  .testimonials { padding: 60px 0; }
}

/* ============================================================
   FIX 9 — Exit Intent Popup
   ============================================================ */
.exit-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}
.exit-modal.show { display: flex; }
.exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 44, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.exit-modal__inner {
  position: relative;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  background: linear-gradient(135deg, #141b3c, #0e1230);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 16px;
  text-align: center;
  color: #fff;
  animation: exitSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.exit-modal__x {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 26px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  line-height: 1;
}
.exit-modal__x:hover { color: #fff; }
.exit-modal__inner h3 {
  font-size: 24px;
  margin-top: 14px;
  line-height: 1.25;
}
.exit-modal__sub {
  color: rgba(255, 255, 255, 0.75);
  margin: 14px 0 22px;
  font-size: 14px;
  line-height: 1.55;
}
.exit-modal__inner em {
  color: #FFD700;
  font-style: normal;
  font-weight: 500;
}
@keyframes exitSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   NAV LAYOUT FIX — top-bar above nav (2026-05-11)
   Root cause: .nav had position:fixed; top:0 which covered the
   top-bar that was only position:relative in document flow.
   ============================================================ */

/* 1. Pin top-bar to very top of viewport */
.top-bar {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001; /* above .nav (1000) */
}

/* 2. Push nav down so it sits below the 38px top-bar */
.nav {
  inset: 38px 0 auto; /* was: 0 0 auto */
}

/* 3. Hero needs extra padding for top-bar height (38px + 76px nav = 114px) */
.hero {
  padding-top: 114px; /* was: 76px */
}

/* 4. Fix anchor-scroll offset for all sections with IDs */
section[id] {
  scroll-margin-top: 116px; /* 38px top-bar + 76px nav + 2px gap */
}

/* 5. Cosmic cursor canvas: behind fixed header, still above page content */
#cosmicCanvas {
  z-index: 0; /* was: 9999 */
}

/* 6. Mobile: top-bar shrinks to 36px tall on small screens */
@media (max-width: 700px) {
  .nav    { inset: 36px 0 auto; }
  .hero   { padding-top: 112px; } /* 36px + 76px */
  section[id] { scroll-margin-top: 112px; }
}
