﻿/* 
   BEYOND BORDERS  Contemporary Redesign v12
   Bold asymmetric layouts, modern typography, original palette
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;500;700;900&display=swap');

/*  CSS Variables  */
:root {
  --cream:      #f8f3e8;
  --cream-2:    #f2ead8;
  --cream-3:    #ede3ce;
  --gold:       #9e7a1e;
  --gold-light: #c8a541;
  --gold-bright:#d4af37;
  --dark:       #1a1208;
  --dark-2:     #231705;
  --text:       #3d2e10;
  --text-muted: #7a6040;
  --border:     rgba(153,116,31,0.18);
  --border-hover: rgba(153,116,31,0.42);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Open Sans', system-ui, sans-serif;
}

/*  Base  */
html, body { height: 100%; margin:0; padding:0; }

body {
  overflow: hidden;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/*  NAVBAR  Hidden on hero, shown after scroll  */
#nav.nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-20px);
  transition: opacity .4s ease, transform .4s ease, background .4s ease, box-shadow .4s ease;
  background: transparent;
  border-bottom: none;
  padding: 16px 0;
}

body.browsing-sections #nav.nav {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0);
  background: rgba(248, 243, 232, 0.97) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 8px 32px rgba(100, 75, 20, 0.12) !important;
  backdrop-filter: blur(20px) !important;
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 42px;
  transition: transform .3s ease;
}
.nav__logo:hover .nav__logo-img { transform: scale(1.05); }

.nav__links {
  display: flex;
  gap: 40px;
}
.nav__links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color .3s ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .3s ease;
}
.nav__links a:hover {
  color: var(--gold);
}
.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(158, 122, 30, 0.3);
  transition: transform .3s ease, box-shadow .3s ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(158, 122, 30, 0.4);
}

.nav__burger { display: none; }
.nav__mobile { display: none; }

/*  Section dots  */
.section-dots {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

body.browsing-sections .section-dots {
  opacity: 1;
  pointer-events: auto;
}

.dot {
  width: 8px !important;
  height: 8px !important;
  background: rgba(153,116,31,0.3) !important;
  border-radius: 50% !important;
  border: none;
  cursor: pointer;
  transition: all .35s ease !important;
  position: relative;
}

.dot:hover {
  background: rgba(153,116,31,0.6) !important;
  transform: scale(1.3);
}

.dot.active {
  width: 8px !important;
  height: 32px !important;
  border-radius: 4px !important;
  background: linear-gradient(180deg, var(--gold-light), var(--gold)) !important;
  box-shadow: 0 0 16px rgba(180,140,30,0.5) !important;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px !important;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold)) !important;
  background-size: 200% 100% !important;
  animation: shimmerBar 3s linear infinite !important;
  z-index: 1001;
}

@keyframes shimmerBar {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 
   FULLPAGE ENGINE
 */
.fullpage-wrapper {
  position: fixed !important;
  inset: 0;
  width: 100%;
  height: 100vh !important;
  overflow: hidden !important;
  z-index: 1;
}

.fullpage-wrapper .fp-section {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: none !important;
  overflow: hidden !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: none !important;
  z-index: 1 !important;
  background: var(--cream);
}

.fullpage-wrapper .fp-section.active {
  display: flex !important;
  pointer-events: auto !important;
  z-index: 10 !important;
}

/* Visibility overrides */
.fullpage-wrapper .fp-section .container,
.fullpage-wrapper .fp-section .section-head,
.fullpage-wrapper .fp-section .about__inner,
.fullpage-wrapper .fp-section .security__inner,
.fullpage-wrapper .fp-section .reveal,
.fullpage-wrapper .fp-section .reveal-up,
.fullpage-wrapper .fp-section .reveal-right,
.fullpage-wrapper .fp-section .reveal-left {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* FIX: the reveal-up rule above cancels translateX(-50%) on scroll-indicator.
   This specific rule restores correct centering. */
.fullpage-wrapper .fp-section.hero .scroll-indicator.reveal-up {
  position: absolute !important;
  bottom: 12px !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  transform: translateX(-50%) !important;
  width: max-content !important;
  text-align: center !important;
  z-index: 10 !important;
}

/* 
   
   HERO  ASYMMETRIC BOLD LAYOUT
   
 */
.hero.fp-section {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  position: relative;
  background: #111 !important;
  overflow: hidden !important;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0 !important;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
  z-index: 0 !important;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15)) !important;
  z-index: 1 !important;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  margin: 20vh auto 0 auto !important;
  padding: 80px 16px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 24px;
  margin-top: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 92px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff !important;
  margin: 0;
  max-width: 900px;
  letter-spacing: -2px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light) !important;
  text-shadow: 0 4px 16px rgba(212, 175, 55, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__sub {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 680px;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(158, 122, 30, 0.35);
  transition: transform .3s ease, box-shadow .3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(158, 122, 30, 0.45);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: transparent;
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: 2px solid var(--border-hover);
  transition: all .3s ease;
}

.btn-ghost-white:hover {
  background: var(--cream-2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute !important;
  bottom: 12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  cursor: pointer;
}

.scroll-indicator__text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.scroll-indicator__icon {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator__icon i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* 
   
   ABOUT  OVERLAPPING CARDS
   
 */
.about.fp-section {
  display: flex !important;
  align-items: center;
/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION - CLEAN & SIMPLE
   Traditional centered layout with clear hierarchy
   ═══════════════════════════════════════════════════════════ */

.about.fp-section {
  padding: 60px 40px !important;
  display: flex !important;
  align-items: center;
  background: #fff !important;
}

.about__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT - Logo & stats */
.about__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about__img-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.about__img-main {
  position: relative;
  width: 200px;
  height: 200px;
}

.about__icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(248, 243, 232, 0.4);
}

.about__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__img-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.about__img-badge i {
  color: var(--gold);
  font-size: 14px;
}

.about__img-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}

.about__img-side-card {
  text-align: center;
  padding: 16px;
}

.about__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin: 0 auto 10px;
}

.about__img-side-card strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
}

.about__img-side-card span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* RIGHT - Content */
.about__text {
  padding: 0;
}

.about__text .section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.about__text .section-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--dark);
}

.about__lead {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
}

.about__body {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.about__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
}

.about__check-icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__check strong {
  display: block;
  color: var(--dark);
  font-size: 13px;
  margin-bottom: 2px;
  font-weight: 700;
}

.about__check span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}
}

.about__img-main {
  flex: 1;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(100, 75, 20, 0.15);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.about__img-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}

.about__icon-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 12px 40px rgba(158, 122, 30, 0.25);
}

.about__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(100, 75, 20, 0.12);
  border: 1px solid var(--border);
}

.about__img-badge i {
  color: var(--gold);
  font-size: 24px;
}

.about__img-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.about__img-badge span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.about__img-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__img-side-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(100, 75, 20, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.about__img-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(100, 75, 20, 0.15);
}

.about__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__card-icon i {
  color: #fff;
  font-size: 24px;
}

.about__img-side-card strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.about__img-side-card span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--gold);
  opacity: 0.15;
  border-radius: 50%;
}

.about__decoration--tl {
  top: -20px;
  left: -20px;
  border-bottom: none;
  border-right: none;
}

.about__decoration--br {
  bottom: -20px;
  right: -20px;
  border-top: none;
  border-left: none;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin: 0;
  letter-spacing: -1px;
}

.about__lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  margin: 0;
}

.about__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.about__checks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.about__check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream-2);
  border-radius: 16px;
  border-left: 4px solid var(--gold);
  transition: all .3s ease;
}

.about__check:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(100, 75, 20, 0.08);
  transform: translateX(4px);
}

.about__check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__check-icon i {
  color: #fff;
  font-size: 16px;
}

.about__check strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.about__check span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 
   
   CATEGORIES  LARGE MODERN CARDS
   
 */
.categories.fp-section {
  display: flex !important;
  align-items: center;
  padding: 100px 80px;
  overflow-y: auto !important;
}

.section-head {
  text-align: left;
  margin-bottom: 64px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-kicker {
  justify-content: center;
}

.section-head--center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-gold-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  margin: 24px auto 0;
  border-radius: 2px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(100, 75, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: height .4s ease;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(100, 75, 20, 0.2);
  border-color: var(--gold);
}

.cat-card:hover::before {
  height: 6px;
}

.cat-card__num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 72px;
  font-weight: 800;
  color: var(--cream-2);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  z-index: 0;
}

.cat-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(158, 122, 30, 0.3);
}

.cat-card__icon i {
  color: #fff;
  font-size: 32px;
}

.cat-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  position: relative;
  z-index: 1;
}

.cat-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap .3s ease;
  position: relative;
  z-index: 1;
}

.cat-link:hover {
  gap: 12px;
}

.cat-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.cat-card:hover .cat-card__bar {
  transform: scaleX(1);
}

/* 
   
   FEATURES  BENTO BOX GRID
   
 */
.features.fp-section {
  display: flex !important;
  align-items: center;
  padding: 100px 80px;
  overflow-y: auto !important;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(100, 75, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: height .35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(100, 75, 20, 0.15);
  border-color: var(--gold-light);
}

.feature-card:hover::after {
  height: 5px;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold-light);
}

.feature-card__icon i {
  color: var(--gold);
  font-size: 28px;
  transition: color .35s ease;
}

.feature-card:hover .feature-card__icon i {
  color: #fff;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* 
   
   HOW IT WORKS  HORIZONTAL STEPPER
   
 */
.how.fp-section {
  display: flex !important;
  align-items: center;
  padding: 100px 80px;
  overflow-y: auto !important;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--gold) 0%, 
    var(--gold-bright) 25%, 
    var(--gold-bright) 50%, 
    var(--gold-bright) 75%, 
    var(--gold) 100%
  );
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.how-step__circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(158, 122, 30, 0.3);
  position: relative;
  z-index: 1;
  transition: transform .4s ease;
}

.how-step:hover .how-step__circle {
  transform: scale(1.1) rotate(5deg);
}

.how-step__circle i {
  color: #fff;
  font-size: 48px;
}

.how-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.how-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* 
   
   SUPPLIERS  TICKER STYLE
   
 */
.suppliers.fp-section {
  display: flex !important;
  align-items: center;
  padding: 100px 80px;
  overflow-y: auto !important;
  background: var(--cream-2);
}

.supplier-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1400px;
  margin: 60px auto 0;
  flex-wrap: wrap;
}

.supplier-logo-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 60px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(100, 75, 20, 0.08);
  transition: all .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supplier-logo-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 48px rgba(100, 75, 20, 0.18);
  border-color: var(--gold);
}

.supplier-logo-box span {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}

/* 
   
   PLANS  PRICING CARDS
   
 */
.plans.fp-section {
  display: flex !important;
  align-items: center;
  padding: 100px 80px;
  overflow-y: auto !important;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1300px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(100, 75, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  opacity: 0;
  transition: opacity .4s ease;
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(100, 75, 20, 0.2);
  border-color: var(--gold);
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card--featured {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(158, 122, 30, 0.25);
  transform: scale(1.05);
}

.plan-card--featured::before {
  opacity: 1;
}

.plan-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.plan-card__price {
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  margin: 0;
}

.plan-card__price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
}

.plan-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.plan-card__feature i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-card .btn-primary,
.plan-card .btn-ghost {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: 2px solid var(--border-hover);
  transition: all .3s ease;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--cream-2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* 
   
   SECURITY
   
 */
.security.fp-section {
  display: flex !important;
  align-items: center;
  padding: 100px 80px;
  overflow-y: auto !important;
  background: var(--cream-2);
}

.security__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.security__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(100, 75, 20, 0.08);
  transition: all .35s ease;
  min-width: 180px;
}

.security-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(100, 75, 20, 0.15);
}

.security-badge i {
  font-size: 48px;
  color: var(--gold);
}

.security-badge strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

/* 
   
   CONTACT / CTA
   
 */
.contact.fp-section {
  display: flex !important;
  align-items: center;
  padding: 100px 80px;
  overflow-y: auto !important;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
}

.contact__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.contact__inner .section-title {
  font-size: 64px;
  max-width: 700px;
}

.contact__inner .section-kicker {
  margin-bottom: 8px;
}

.contact__actions {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-info-item i {
  font-size: 32px;
  color: var(--gold);
}

.contact-info-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color .3s ease;
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* 
   
   RESPONSIVE
   
 */
@media (max-width: 1200px) {
  .hero__title { font-size: 72px; }
  .section-title { font-size: 48px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
}

@media (max-width: 768px) {
  .hero__content { padding: 0 40px; }
  .hero__title { font-size: 48px; }
  .hero__sub { font-size: 18px; }
  .section-title { font-size: 36px; }
  .about.fp-section,
  .categories.fp-section,
  .features.fp-section,
  .how.fp-section,
  .suppliers.fp-section,
  .plans.fp-section,
  .security.fp-section,
  .contact.fp-section {
    padding: 80px 32px;
  }
  .cat-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions a { width: 100%; text-align: center; justify-content: center; }
  
  /* Mobile nav */
  .nav__links { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all .3s ease;
  }
  .nav__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248, 243, 232, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(100, 75, 20, 0.12);
  }
  .nav__mobile.active {
    display: flex;
  }
  .nav__mobile a {
    padding: 12px;
    text-align: center;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background .3s ease;
  }
  .nav__mobile a:hover {
    background: var(--cream-2);
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/*

   ABOUT — EDITORIAL SPLIT (FULLPAGE)

*/
/* ── About section: editorial split, always fits one viewport ── */
.about.about--luxury.fp-section {
  padding: 0 !important;
  background: #f5ede0 !important;
  overflow: hidden !important;
}

/* Full-height inner grid */
.ab {
  display: grid;
  grid-template-columns: 46fr 54fr;
  width: 100%;
  height: 100%;
}

/* ── LEFT: dark charcoal editorial panel ── */
.ab__left {
  background: linear-gradient(162deg, #160f04 0%, #2a1b08 55%, #160f04 100%);
  padding: clamp(52px, 6vh, 72px) clamp(36px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.ab__left::before {
  content: '';
  position: absolute;
  right: -140px;
  top: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.ab__left::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.ab__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.9);
  align-self: flex-start;
  position: relative;
}

.ab__kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(212,175,55,0.65);
  display: block;
}

.ab__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 3.8vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #f8ecd2;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
}

.ab__nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
}

.ab__num {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.18);
}
.ab__num:last-child { border-right: none; }

.ab__num strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  color: #f8ecd2;
}

.ab__num span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(248,236,210,0.6);
}

.ab__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  padding: 0 28px;
  height: 48px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  align-self: flex-start;
  box-shadow: 0 8px 24px rgba(158,122,30,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
  margin-bottom: 18px;
}

.ab__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(158,122,30,0.45);
}

.ab__suppliers {
  font-size: 10px;
  letter-spacing: 0.6px;
  color: rgba(248,236,210,0.5);
  margin: 0;
  text-transform: uppercase;
}

/* ── RIGHT: cream editorial text panel ── */
.ab__right {
  background: #f5ede0;
  border-left: 1px solid rgba(153,116,31,0.22);
  padding: clamp(52px, 6vh, 72px) clamp(36px, 4.5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.ab__lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  color: var(--text);
  max-width: 54ch;
  margin: 0;
}

.ab__items {
  border-top: 1px solid rgba(153,116,31,0.22);
  display: flex;
  flex-direction: column;
}

.ab__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(153,116,31,0.16);
  transition: padding-left .2s ease;
  cursor: default;
}

.ab__item:hover {
  padding-left: 6px;
}

.ab__item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  min-width: 28px;
  margin-top: 0;
}

.ab__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  letter-spacing: 0.1px;
}

.ab__item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

.ab__tagline {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.7;
}

@media (max-width: 1100px) {
  .ab { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .ab__left {
    padding: 40px 32px;
    justify-content: flex-start;
    gap: 20px;
    min-height: 0;
  }
  .ab__headline { flex: unset; font-size: 2.4rem; }
  .ab__right { padding: 36px 32px; min-height: 0; overflow-y: auto; }
}

@media (max-width: 768px) {
  .ab { grid-template-columns: 1fr; }
  .ab__left { padding: 36px 24px; gap: 18px; }
  .ab__right { padding: 32px 24px; gap: 16px; }
  .ab__headline { font-size: 2rem; }
  .ab__cta { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   SHARED EDITORIAL EXTENSIONS
   ═══════════════════════════════════════════════════ */

/* Reversed split: left = cream, right = dark */
.ab--rev { grid-template-columns: 54fr 46fr; }
.ab--rev .ab__right {
  order: 1;
  border-left: none;
  border-right: 1px solid rgba(153,116,31,0.22);
}
.ab--rev .ab__left { order: 2; }

/* Small descriptive copy on dark panel */
.ab__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248,236,210,0.72);
  margin: 0;
  max-width: 44ch;
}

/* Subtle arrow text-link on dark panel */
.ab__kicker-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.85);
  text-decoration: none;
  align-self: flex-start;
  transition: gap .2s ease, color .2s ease;
}
.ab__kicker-link:hover { gap: 12px; color: #d4af37; }

/* Icon variant for list items (Categories, Security) */
.ab__item-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(153,116,31,0.12);
  border: 1px solid rgba(153,116,31,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: background .2s ease;
}
.ab__item:hover .ab__item-icon { background: rgba(153,116,31,0.22); }

/* ═══════════════════════════════════════════════════
   CATEGORIES — service items on cream panel
   ═══════════════════════════════════════════════════ */
.categories .ab__items.cat__items { justify-content: center; }
.categories .ab__item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.categories .ab__item span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   FEATURES — 6-item list on cream panel
   ═══════════════════════════════════════════════════ */

/* Pill tags on dark panel */
.feat__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.feat__pills span {
  font-size: 11px;
  letter-spacing: 0.6px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.35);
  color: rgba(212,175,55,0.8);
}

/* Feature list — 2-col grid */
.feat__grid-wrap {
  overflow: hidden;
}
.feat__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 100%;
}
.feat__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(153,116,31,0.14);
  border-right: 1px solid rgba(153,116,31,0.14);
  transition: background .2s ease;
}
.feat__item:hover { background: rgba(153,116,31,0.05); }
.feat__item:nth-child(even) { border-right: none; }
.feat__item:nth-last-child(-n+2) { border-bottom: none; }
.feat__icon {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(158,122,30,0.15), rgba(200,165,65,0.08));
  border: 1px solid rgba(153,116,31,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
}
.feat__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.feat__item span {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS — full dark horizontal steps
   ═══════════════════════════════════════════════════ */

.how.section--dark {
  background: linear-gradient(162deg, #160f04 0%, #2a1b08 55%, #160f04 100%);
  position: relative;
  overflow: hidden;
}
.how.section--dark::before {
  content: '';
  position: absolute;
  left: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.how__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px,6vh,72px) clamp(48px,6vw,96px);
  gap: clamp(32px,4vh,52px);
  box-sizing: border-box;
}
.how__head {
  display: flex;
  align-items: baseline;
  gap: clamp(20px,3vw,48px);
}
.how__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.9);
  white-space: nowrap;
}
.how__kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(212,175,55,0.65);
  display: block;
}
.how__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,3.2vw,3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: #f8ecd2;
  margin: 0;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: clamp(24px,3vh,40px);
}
.how__step {
  padding: 0 clamp(16px,2vw,32px) 0 0;
  border-right: 1px solid rgba(212,175,55,0.15);
  padding-right: clamp(16px,2.5vw,36px);
}
.how__step:last-child { border-right: none; padding-right: 0; }
.how__step:not(:first-child) { padding-left: clamp(16px,2.5vw,36px); }
.how__step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,3.5vw,52px);
  font-weight: 300;
  color: rgba(212,175,55,0.3);
  line-height: 1;
  margin-bottom: 12px;
}
.how__step h4 {
  font-size: clamp(14px,1.2vw,16px);
  font-weight: 600;
  color: #f8ecd2;
  margin: 0 0 10px;
  line-height: 1.3;
}
.how__step p {
  font-size: clamp(12px,1vw,13.5px);
  line-height: 1.6;
  color: rgba(248,236,210,0.62);
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   PARTNERS TICKER — editorial dark header
   ═══════════════════════════════════════════════════ */

.partners-ticker-section {
  background: linear-gradient(162deg, #160f04 0%, #2a1b08 55%, #160f04 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: hidden;
  position: relative;
}
.partners-ticker-section::before {
  content: '';
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.pticker__ed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(40px,5vh,64px) clamp(48px,6vw,96px) clamp(24px,3vh,40px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
.pticker__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,3vw,3.4rem);
  font-weight: 600;
  color: #f8ecd2;
  margin: 8px 0 0;
  line-height: 1.1;
}
.pticker__ed-left { display: flex; flex-direction: column; }
.pticker__ed-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(248,236,210,0.62);
  max-width: 38ch;
  margin: 0;
  flex-shrink: 0;
}

/* Restyle ticker items to match dark theme */
.pticker__rail-wrap { padding: clamp(20px,3vh,36px) 0; position: relative; }
.pticker__item {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: rgba(248,236,210,0.65) !important;
  background: rgba(212,175,55,0.06) !important;
  border: 1px solid rgba(212,175,55,0.2) !important;
  border-radius: 6px !important;
  padding: 10px 20px !important;
  margin: 0 8px !important;
  transition: color .2s ease, border-color .2s ease !important;
}
.pticker__item:hover {
  color: rgba(212,175,55,0.9) !important;
  border-color: rgba(212,175,55,0.45) !important;
}
.pticker__dot { color: rgba(212,175,55,0.5) !important; font-size: 8px !important; }

/* ═══════════════════════════════════════════════════
   PLANS — dual plan cards on cream panel
   ═══════════════════════════════════════════════════ */

.plans__cards {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  overflow: hidden;
  justify-content: center !important;
}
.plan-ed {
  border: 1px solid rgba(153,116,31,0.22);
  border-radius: 12px;
  padding: 22px 24px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
  position: relative;
}
.plan-ed:hover {
  border-color: rgba(153,116,31,0.45);
  box-shadow: 0 8px 32px rgba(153,116,31,0.1);
}
.plan-ed--gold {
  background: linear-gradient(135deg, rgba(158,122,30,0.06), rgba(200,165,65,0.04));
  border-color: rgba(153,116,31,0.4);
}
.plan-ed__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.plan-ed__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(153,116,31,0.15);
}
.plan-ed__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(158,122,30,0.15), rgba(200,165,65,0.08));
  border: 1px solid rgba(153,116,31,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}
.plan-ed__head h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 2px;
}
.plan-ed__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
}
.plan-ed__price em {
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}
.plan-ed__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 16px;
}
.plan-ed__items span {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.plan-ed__items span i { color: var(--gold); font-size: 10px; }
.plan-ed__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(153,116,31,0.35);
  border-radius: 999px;
  padding: 8px 20px;
  transition: background .2s ease, color .2s ease;
}
.plan-ed__cta:hover {
  background: rgba(153,116,31,0.08);
}
.plan-ed__cta--solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(158,122,30,0.3);
}
.plan-ed__cta--solid:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  box-shadow: 0 8px 28px rgba(158,122,30,0.4);
}

/* Plans dark panel gets extra stats bottom */
.plans .ab__nums { margin-top: auto; }

/* ═══════════════════════════════════════════════════
   SECURITY — items on cream panel
   ═══════════════════════════════════════════════════ */

.security .ab__items { justify-content: center; }
.security .ab__item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.security .ab__item span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   CTA / CONTACT — full dark centered editorial
   ═══════════════════════════════════════════════════ */

.cta-band {
  background: linear-gradient(162deg, #0e0903 0%, #1a1005 50%, #0e0903 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px,2.5vh,28px);
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 40px;
}
.cta__kicker {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(212,175,55,0.9);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta__kicker::before,
.cta__kicker::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(212,175,55,0.5);
  display: block;
}
.cta__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem,5vw,5.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: #f8ecd2;
  margin: 0;
}
.cta__headline em {
  font-style: italic;
  color: #d4af37;
}
.cta__sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(248,236,210,0.62);
  margin: 0;
  max-width: 50ch;
}
.cta__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cta__ghost {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.45);
  color: rgba(248,236,210,0.85);
  font-size: 13px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.cta__ghost:hover {
  border-color: rgba(212,175,55,0.8);
  background: rgba(212,175,55,0.06);
}
.cta__email {
  font-size: 13px;
  color: rgba(248,236,210,0.42);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
}
.cta__email:hover { color: rgba(212,175,55,0.8); }
.cta__meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248,236,210,0.25);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — all new sections
   ═══════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .ab--rev { grid-template-columns: 1fr; }
  .ab--rev .ab__right { order: 1; border-right: none; border-bottom: 1px solid rgba(153,116,31,0.2); }
  .ab--rev .ab__left { order: 2; }

  .feat__list { grid-template-columns: 1fr; }
  .feat__item:nth-child(even) { border-right: none; }
  .feat__item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(153,116,31,0.14); }
  .feat__item:last-child { border-bottom: none; }

  .how__steps { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .how__step:nth-child(2) { border-right: none; }
  .how__step:nth-child(3) { border-right: 1px solid rgba(212,175,55,0.15); padding-left: 0; }
  .how__step:nth-child(4) { border-right: none; }

  .pticker__ed-head { flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 20px; }

  .plans__cards { gap: 14px !important; }
  .plan-ed { padding: 18px 20px; }
}

@media (max-width: 768px) {
  .how__steps { grid-template-columns: 1fr; }
  .how__step { border-right: none !important; padding-left: 0 !important; border-bottom: 1px solid rgba(212,175,55,0.12); padding-bottom: 20px; }
  .how__step:last-child { border-bottom: none; padding-bottom: 0; }

  .cta__headline { font-size: 2.4rem; }
  .cta__btns { flex-direction: column; align-items: center; }
  .cta__btns .ab__cta, .cta__ghost { width: 100%; justify-content: center; }

  .pticker__ed-head { padding: 28px 24px 16px; }
  .pticker__headline { font-size: 1.8rem; }

  .feat__list { grid-template-columns: 1fr; }
}

/* Typography standardization */
body,
input,
select,
textarea,
button {
  font-family: var(--font-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.title,
.headline,
.serif,
[class*="title"],
[class*="heading"],
[class*="headline"] {
  font-family: var(--font-heading) !important;
}
