/* ================================================================
   BRIGHT FUTURE PROTECTION — Premium Landing Page
   Design aesthetic: Wealth Management / Financial Consulting Boutique
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Background scale */
  --bg-0:    #050912;
  --bg-1:    #080D1A;
  --bg-2:    #0D1526;
  --bg-card: #101929;
  --bg-card-h: #15203A;

  /* Gold palette */
  --gold-100: #F6EACF;
  --gold-200: #E8C87A;
  --gold-300: #D4A843;
  --gold-400: #C9A455;
  --gold-500: #A8832A;
  --gold-glow:   rgba(201,164,85,.14);
  --gold-border: rgba(201,164,85,.22);
  --gold-subtle: rgba(201,164,85,.07);

  /* Text */
  --text-0: #EDE8DC;
  --text-1: #9DA3B8;
  --text-2: #525870;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #C9A455, #E8C87A, #C9A455);
  --grad-card: linear-gradient(145deg, #101929 0%, #0D1526 100%);

  /* Typography */
  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;
  --ff-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-py: 8.5rem;

  /* Layout */
  --max-w: 1200px;
  --px:    2rem;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: .2s ease;
  --t-base: .35s ease;

  /* Shadows */
  --shadow-card:   0 4px 28px rgba(0,0,0,.45);
  --shadow-card-h: 0 10px 48px rgba(0,0,0,.6), 0 0 0 1px var(--gold-border);
  --shadow-gold:   0 0 48px rgba(201,164,85,.1);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-sans);
  background: var(--bg-1);
  color: var(--text-0);
  line-height: 1.7;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SHARED UTILITIES ───────────────────────────────────────────── */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.label-tag--light { color: var(--gold-200); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--text-0);
  margin-bottom: 1.25rem;
}
.section-title--center { text-align: center; }

.section-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-1);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 5rem;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.gold-dot {
  font-size: .45rem;
  color: var(--gold-300);
  vertical-align: middle;
  margin-right: .35rem;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .7rem 1.75rem;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn--primary {
  background: var(--grad-gold);
  color: var(--bg-0);
  box-shadow: 0 2px 12px rgba(201,164,85,.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 22px rgba(201,164,85,.28);
}
.btn--ghost {
  background: transparent;
  color: var(--gold-200);
  border: 1px solid var(--gold-border);
}
.btn--ghost:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-300);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--text-0);
  border: 1px solid rgba(238,232,220,.18);
}
.btn--outline:hover {
  border-color: var(--gold-border);
  color: var(--gold-200);
  transform: translateY(-2px);
}
.btn--nav {
  background: var(--grad-gold);
  color: var(--bg-0);
  font-size: .78rem;
  padding: .6rem 1.4rem;
  border-radius: var(--r-full);
}
.btn--nav:hover {
  box-shadow: 0 4px 18px rgba(201,164,85,.35);
  transform: translateY(-1px);
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(5,9,18,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--t-base);
}
.nav.scrolled {
  background: rgba(5,9,18,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--gold-border);
  padding: .9rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.38);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav__logo-gem {
  font-size: .9rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: var(--ff-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-0);
}
.nav__logo-sub {
  font-size: .6rem;
  font-weight: 400;
  color: var(--gold-300);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: .02em;
  transition: color var(--t-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--grad-gold);
  transition: width var(--t-base);
}
.nav__link:hover { color: var(--gold-200); }
.nav__link:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-0);
  border-radius: 2px;
  transition: all var(--t-base);
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 40%, rgba(201,164,85,.10) 0%, transparent 62%),
    radial-gradient(ellipse 45% 75% at 12% 62%, rgba(12,25,70,.32) 0%, transparent 70%),
    linear-gradient(155deg, #050912 0%, #0C1528 42%, #091225 72%, #050912 100%);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,164,85,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,85,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem var(--px) 7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 4.5rem;
}
.hero__content {
  max-width: 578px;
  padding-top: 1rem;
}
.hero__photo-slot {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}
.hero__photo-frame {
  position: relative;
}
.hero__photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-lg) + 1px);
  background: linear-gradient(
    145deg,
    var(--gold-300) 0%,
    transparent 45%,
    transparent 55%,
    var(--gold-500) 100%
  );
  opacity: .5;
  z-index: 0;
}
.hero__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: 0 0 80px rgba(201,164,85,.12), 0 0 30px rgba(201,164,85,.06);
  pointer-events: none;
  z-index: 2;
}
.hero__photo-img {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-border);
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(201,164,85,.08);
  display: block;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: .45rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 2rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-300);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}
.hero__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.9rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--text-0);
  margin-bottom: 1.75rem;
}
.hero__sub {
  font-size: clamp(.95rem, 1.35vw, 1.08rem);
  color: var(--text-1);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.75rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero__credentials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(201,164,85,.14);
}
.hero__cred {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.hero__cred-gem {
  font-size: .48rem;
  color: var(--gold-400);
  flex-shrink: 0;
  line-height: 1;
}
.hero__cred-title {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: .01em;
  line-height: 1;
}
.hero__cred-sub {
  display: none;
}
.hero__cred-sep {
  width: 1px; height: 24px;
  background: rgba(201,164,85,.2);
  flex-shrink: 0;
}
.hero__scroll-line {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold-300), transparent);
  animation: scroll-anim 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-anim {
  0%   { transform: translateX(-50%) scaleY(0); opacity: 0; }
  40%  { transform: translateX(-50%) scaleY(1); opacity: 1; }
  100% { transform: translateX(-50%) scaleY(1) translateY(100%); opacity: 0; }
}

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about {
  background: var(--bg-2);
  padding: 0;
  overflow: hidden;
}
.about__split {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 6rem;
  align-items: center;
}

/* Photo column */
.about__visual {
  position: relative;
}
.about__photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__photo-glow {
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    145deg,
    var(--gold-300) 0%,
    transparent 40%,
    transparent 60%,
    var(--gold-500) 100%
  );
  border-radius: var(--r-lg);
  z-index: 0;
  opacity: .5;
}
.about__photo {
  position: relative;
  z-index: 1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: calc(var(--r-lg) - 1px);
  transition: transform .7s ease;
}
.about__photo-frame:hover .about__photo {
  transform: scale(1.03);
}
.about__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(5,9,18,.55) 0%,
    transparent 45%
  );
  border-radius: var(--r-lg);
  pointer-events: none;
}


/* Content column */
.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about__headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--text-0);
  margin-bottom: 0;
}
.about__headline em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about__accent-line {
  width: 44px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 1.5rem 0 1.75rem;
}
.about__lead {
  font-family: var(--ff-serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-0);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}
.about__body {
  font-size: .97rem;
  color: var(--text-1);
  line-height: 1.82;
  margin-bottom: 1.75rem;
}
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.25rem;
}
.about__pill {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  padding: .38rem .9rem;
}
.about__cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(201,164,85,.12);
  border-bottom: 1px solid rgba(201,164,85,.12);
  margin-bottom: 2.25rem;
  width: 100%;
}
.about__cred-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.about__cred-gem {
  font-size: .36rem;
  color: var(--gold-300);
  margin-top: .38rem;
  flex-shrink: 0;
}
.about__cred-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: .15rem;
  line-height: 1.3;
}
.about__cred-item span {
  font-size: .7rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── SERVICES ───────────────────────────────────────────────────── */
.services {
  background: var(--bg-1);
  padding: var(--section-py) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,.045);
  border-radius: var(--r-lg);
  padding: 2.5rem 2.25rem;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.service-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card-h);
  transform: translateY(-5px);
}
.service-card:hover::before { opacity: 1; }
.service-card:focus { outline: 2px solid var(--gold-300); outline-offset: 4px; }

.service-card__icon {
  width: 58px; height: 58px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: 1.75rem;
  transition: all var(--t-base);
}
.service-card:hover .service-card__icon {
  background: var(--gold-glow);
  border-color: var(--gold-300);
}
.service-card__title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-0);
  margin-bottom: .65rem;
}
.service-card__text {
  font-size: .865rem;
  color: var(--text-1);
  line-height: 1.72;
  margin-bottom: 1.4rem;
}
.service-card__cta {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold-300);
  transition: color var(--t-fast);
}
.service-card:hover .service-card__cta { color: var(--gold-200); }

/* ── PROTECTION ─────────────────────────────────────────────────── */
.protect {
  background: var(--bg-2);
  padding: var(--section-py) 0;
}
.protect__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.protect__text {
  font-size: .98rem;
  color: var(--text-1);
  line-height: 1.82;
  margin-bottom: 2.25rem;
}
.protect__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.75rem;
}
.protect__item {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.protect__gem {
  font-size: .45rem;
  color: var(--gold-300);
  margin-top: .45rem;
  flex-shrink: 0;
}
.protect__item strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: .2rem;
}
.protect__item p {
  font-size: .84rem;
  color: var(--text-1);
  line-height: 1.62;
}
.protect__quote-card {
  background: linear-gradient(145deg, #0D1830, #112040);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-gold);
}
.protect__quote-mark {
  font-family: var(--ff-serif);
  font-size: 5.5rem;
  color: var(--gold-500);
  line-height: .4;
  margin-bottom: 1.5rem;
  opacity: .38;
}
.protect__quote {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-0);
  line-height: 1.72;
  margin-bottom: 1.4rem;
}
.protect__quote em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.protect__quote-sig {
  font-size: .78rem;
  color: var(--text-2);
  line-height: 1.7;
}
.protect__quote-sig span {
  color: var(--gold-400);
  font-size: .72rem;
  letter-spacing: .04em;
}
.protect__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.protect__stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.protect__stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .4rem;
  line-height: 1;
}
.protect__stat-label {
  font-size: .73rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── LEGACY / RETIREMENT ────────────────────────────────────────── */
.legacy {
  background: var(--bg-0);
  padding: var(--section-py) 0;
}
.legacy__subtitle {
  font-size: .98rem;
  color: var(--text-1);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}
.legacy__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  margin-bottom: 4rem;
  position: relative;
}
.legacy__steps::after {
  content: '';
  position: absolute;
  top: 1.5rem; left: 7%; right: 7%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold-border) 20%,
    var(--gold-border) 80%,
    transparent);
}
.legacy__step { position: relative; padding-top: .5rem; }
.legacy__step-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-300);
  background: var(--bg-0);
  border: 1px solid var(--gold-border);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.legacy__step h3 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-0);
  margin-bottom: .6rem;
}
.legacy__step p {
  font-size: .84rem;
  color: var(--text-1);
  line-height: 1.7;
}
.legacy__highlight {
  background: linear-gradient(135deg, #0D1830, #111D35, #0D1628);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 2.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-gold);
}
.legacy__highlight-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-0);
  margin-bottom: .85rem;
}
.legacy__highlight-body p {
  font-size: .95rem;
  color: var(--text-1);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.legacy__highlight-icon {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  opacity: .75;
  flex-shrink: 0;
}

/* ── PULLQUOTE ──────────────────────────────────────────────────── */
.pullquote {
  background: linear-gradient(160deg, #0B1527, #0D1A32, #0B1527);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 7rem 0;
}
.pullquote__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--px);
  text-align: center;
}
.pullquote__mark {
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: var(--gold-500);
  line-height: .4;
  margin-bottom: 2rem;
  opacity: .42;
}
.pullquote__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-0);
  line-height: 1.72;
  margin-bottom: 2.25rem;
}
.pullquote__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pullquote__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .76rem;
  flex-shrink: 0;
}
.pullquote__author strong {
  display: block;
  font-size: .88rem;
  color: var(--text-0);
}
.pullquote__author span {
  font-size: .73rem;
  color: var(--gold-300);
  letter-spacing: .04em;
}

/* ── CTA / CONTACT ──────────────────────────────────────────────── */
.cta {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  padding: var(--section-py) 0;
}
.cta__inner { text-align: center; }
.cta__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 500;
  color: var(--text-0);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.cta__title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta__sub {
  font-size: .98rem;
  color: var(--text-1);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}
.cta__options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.cta__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.6rem;
  min-width: 215px;
  transition: all var(--t-base);
}
.cta__card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.cta__card-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
}
.cta__card-icon--wa {
  background: var(--gold-subtle);
  border-color: var(--gold-border);
  color: var(--gold-300);
}
.cta__card-text { text-align: left; }
.cta__card-text strong {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: .18rem;
}
.cta__card-text span {
  font-size: .73rem;
  color: var(--text-2);
}
.cta__legal {
  font-size: .72rem;
  color: var(--text-2);
  margin-top: 1.25rem;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-0);
  border-top: 1px solid rgba(201,164,85,.1);
  padding: 5.5rem 0 2.5rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: start;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.footer__brand-name {
  display: block;
  font-family: var(--ff-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-0);
}
.footer__brand-tag {
  display: block;
  font-size: .6rem;
  color: var(--gold-300);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .1rem;
}
.footer__brand-desc {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 320px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding-top: .15rem;
}
.footer__nav a {
  font-size: .78rem;
  color: var(--text-2);
  transition: color var(--t-fast);
}
.footer__nav a:hover { color: var(--gold-300); }
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
  padding-top: .15rem;
}
.footer__social-row {
  display: flex;
  gap: .65rem;
}
.footer__social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all var(--t-fast);
}
.footer__social-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold-300);
  background: var(--gold-subtle);
}

/* Footer emotional divider */
.footer__divider-quote {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.footer__divider-phrase {
  font-family: var(--ff-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--text-1);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer__legal {
  font-size: .68rem;
  color: var(--text-2);
  line-height: 1.7;
}
.footer__copy {
  font-size: .68rem;
  color: var(--text-2);
  opacity: .5;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(8,13,26,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--gold-200);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  padding: .9rem 1.4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04);
  transition: all var(--t-base);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(13,21,42,.94);
  border-color: var(--gold-300);
  box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 24px rgba(201,164,85,.12);
  color: var(--gold-100);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  animation: wa-ring 3s ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE — 1024px ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .legacy__steps     { grid-template-columns: repeat(2, 1fr); }
  .legacy__steps::after { display: none; }
  .hero__photo-img   { width: 240px; height: 320px; }
  .hero__inner       { gap: 3rem; }
  .about__split      { gap: 4rem; }
  .about__cred-grid  { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE — 768px ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 5rem; }

  /* Nav */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,9,18,.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1.2rem; color: var(--text-0); }
  .nav__burger { display: flex; z-index: 100; }
  .btn--nav { display: none; }

  /* Hero */
  .hero__inner {
    padding: 7rem var(--px) 5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__content { max-width: 100%; }
  .hero__photo-slot { display: flex; justify-content: center; order: -1; }
  .hero__photo-frame::before { display: none; }
  .hero__photo-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-position: top center;
    box-shadow: 0 0 0 3px rgba(201,164,85,.25), 0 12px 36px rgba(0,0,0,.5);
  }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__credentials { gap: .85rem; flex-wrap: wrap; }
  .hero__cred-sep { height: 16px; }

  /* About */
  .about__split { grid-template-columns: 1fr; gap: 3rem; }
  .about__photo-frame { aspect-ratio: 4/5; max-width: 340px; margin: 0 auto; }
  .about__cred-grid { grid-template-columns: 1fr; gap: .85rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Protection */
  .protect__grid { grid-template-columns: 1fr; gap: 2.75rem; }

  /* Legacy */
  .legacy__steps { grid-template-columns: 1fr; }
  .legacy__highlight { grid-template-columns: 1fr; }
  .legacy__highlight-icon { display: none; }

  /* CTA */
  .cta__options { flex-direction: column; align-items: center; }
  .cta__card { width: 100%; max-width: 340px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__nav { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .footer__social { flex-direction: row; }
  .footer__social-row { flex-direction: row; }

  /* WhatsApp float — icon only on mobile */
  .wa-float__label { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
}

/* ── RESPONSIVE — 480px ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero__headline { font-size: 2.1rem; }
  .section-title  { font-size: 1.7rem; }
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials {
  background: var(--bg-2);
  padding: var(--section-py) 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.testimonial-card {
  background: linear-gradient(145deg, #101929 0%, #0D1526 100%);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}
.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
}
.testimonial-card:hover::before { opacity: 1; }

.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: .3rem .75rem;
  border-radius: var(--r-full);
  width: fit-content;
}
.testimonial-card__quote {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  color: var(--gold-500);
  line-height: .5;
  opacity: .35;
  margin-bottom: -.25rem;
}
.testimonial-card__text {
  font-size: .88rem;
  color: var(--text-1);
  line-height: 1.78;
  flex: 1;
  font-style: italic;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201,164,85,.1);
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-300);
  flex-shrink: 0;
}
.testimonial-card__footer strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: .18rem;
}
.testimonial-card__footer span {
  font-size: .68rem;
  color: var(--text-2);
  letter-spacing: .03em;
}
.testimonials__note {
  font-size: .73rem;
  color: var(--text-2);
  text-align: center;
  font-style: italic;
  opacity: .75;
}


/* ── BTN SHIMMER ────────────────────────────────────────────────── */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn--primary:hover::after {
  transform: translateX(100%);
}

/* ── RESPONSIVE FOOTER ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__social { flex-direction: row; align-items: flex-start; }
  .footer__social-row { flex-direction: row; }
  .footer__divider-phrase { font-size: .82rem; white-space: normal; text-align: center; }
}
@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__social { flex-direction: row; align-items: flex-start; }
  .footer__social-row { flex-direction: row; }
  .footer__divider-quote { flex-direction: column; gap: 1rem; }
  .footer__divider-line { width: 80px; height: 1px; flex: unset; }
  .footer__divider-phrase { white-space: normal; font-size: .88rem; }
}
@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   POPUP — GOHIGHLEVEL
   ================================================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 9, 18, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .06);
  transform: translateY(20px) scale(.98);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
}
.popup-overlay.is-open .popup-modal {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 100;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 50%;
  color: #555;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.popup-close:hover {
  background: rgba(0, 0, 0, .12);
  transform: scale(1.1);
}

.popup-form-wrap {
  display: block;
}
.popup-form-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 436px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .popup-modal { border-radius: 12px; }
  .popup-overlay { padding: .75rem; }
}
