/* ================================================================
   FORMA BUSINESS — style.css
   Design: Dark luxury editorial with gold accents
   ================================================================ */

/* ── CSS Variables ──────────────────────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #9A7A30;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --dark: #0A0A0F;
  --dark-2: #111118;
  --dark-3: #181820;
  --dark-4: #22222E;
  --dark-5: #2C2C3C;
  --light: #F5F3EE;
  --light-muted: rgba(245, 243, 238, 0.65);
  --border: rgba(201, 168, 76, 0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--dark);
}

/* ── Typography ─────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--gold);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--light);
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 1rem;
  color: var(--light-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-body {
  color: var(--light-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.section-body.light {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 13px 30px;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s var(--ease-out);
}

.btn-gold:hover::after {
  transform: translateX(110%) skewX(-15deg);
}

.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
  color: var(--dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── Intersection Observer Reveal Animations ────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.navbar-brand {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--light) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.navbar-brand strong {
  font-weight: 700;
  color: var(--gold);
}

.brand-icon {
  color: var(--gold);
  font-size: 1.3rem;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-muted) !important;
  padding: 8px 12px !important;
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--light) !important;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 4px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--light);
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ── Hero ───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-duration: 9s;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 80, 200, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation-duration: 11s;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-duration: 7s;
  animation-delay: -5s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, -30px) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--light-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.metric {
  text-align: center;
}

.metric-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.metric-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-top: 4px;
  display: block;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: ringRotate 20s linear infinite;
}

.visual-ring--outer {
  width: 360px;
  height: 360px;
  border-style: dashed;
  border-color: rgba(201, 168, 76, 0.15);
  animation-duration: 30s;
}

.visual-ring--mid {
  width: 270px;
  height: 270px;
  animation-direction: reverse;
  animation-duration: 20s;
}

.visual-ring--inner {
  width: 180px;
  height: 180px;
  border-color: rgba(201, 168, 76, 0.35);
  animation-duration: 12s;
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

.visual-center {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--dark);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
  z-index: 2;
}

.visual-dot {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  z-index: 3;
}

.vd-1 {
  top: 20px;
  right: 40px;
}

.vd-2 {
  bottom: 50px;
  right: 20px;
}

.vd-3 {
  bottom: 20px;
  left: 50px;
}

.vd-4 {
  top: 60px;
  left: 30px;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--light-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-hint i {
  font-size: 1rem;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
}

/* ── About ──────────────────────────────────────────────────────── */
.section-about {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative;
}

.section-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-image-wrapper {
  position: relative;
  padding: 24px;
}

.about-img-card {
  border-radius: 4px;
}

.about-img-card--back {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, transparent 70%);
  border: 1px solid var(--border);
  border-radius: 4px;
  transform: rotate(-3deg);
  opacity: 0.4;
}

.about-img-card--front {
  position: relative;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  z-index: 1;
}

.about-img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.aig-item {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.aig-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.aig-item i {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.aig-item span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-muted);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 16px 20px;
  border-radius: 4px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.ab-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.ab-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(10, 10, 15, 0.7);
  line-height: 1.3;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  background: var(--gold-muted);
  transition: var(--transition);
}

.tag:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
}

/* ── Pillars ────────────────────────────────────────────────────── */
.section-pillars {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

.section-head {
  margin-bottom: 20px;
}

.pillar-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.pillar-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card--featured {
  background: linear-gradient(160deg, var(--dark-4) 0%, var(--dark-3) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
}

.pillar-card--featured::before {
  transform: scaleX(1);
}

.pillar-card--featured:hover {
  transform: translateY(-6px);
}

.pillar-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 2px;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.pillar-card--featured .pillar-num {
  color: rgba(201, 168, 76, 0.25);
}

.pillar-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--light);
}

.pillar-body {
  font-size: 0.88rem;
  color: var(--light-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--light-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pillar-list li:last-child {
  border: none;
}

.pillar-list i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.pillar-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pillar-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
}

.pillar-link:hover {
  gap: 14px;
  color: var(--gold-light);
}

/* ── Steps / Timeline ───────────────────────────────────────────── */
.section-steps {
  padding: 120px 0;
  background: var(--dark-2);
}

.steps-timeline {
  position: relative;
  max-width: 860px;
  margin: 60px auto 0;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
  transform: translateX(-50%);
}

.step-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}

.step-item:nth-child(even) .step-marker {
  order: 2;
}

.step-item:nth-child(even) .step-content {
  order: 3;
  text-align: left;
}

.step-item:nth-child(odd) .step-content {
  order: 1;
  text-align: right;
  grid-column: 1;
}

.step-item:nth-child(odd) .step-marker {
  order: 2;
}

.step-item:nth-child(odd) .step-empty {
  order: 3;
  grid-column: 3;
}

.step-item:nth-child(even) .step-content {
  grid-column: 3;
}

.step-item:nth-child(even) .step-empty {
  grid-column: 1;
}

/* Simplify: align alternating sides */
.step-item:nth-child(odd) {
  direction: ltr;
}

.step-item:nth-child(even) {
  direction: ltr;
}

.step-marker {
  width: 56px;
  height: 56px;
  background: var(--dark-4);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--dark-2);
}

.step-marker span {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.step-content {
  padding: 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--transition);
}

.step-content:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: scale(1.02);
}

.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.87rem;
  color: var(--light-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Stats ──────────────────────────────────────────────────────── */
.section-stats {
  padding: 0;
  background: var(--dark);
}

.stats-inner {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 15px;
  position: relative;
  overflow: hidden;
}

.stats-inner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.stat-box {
  text-align: center;
  padding: 20px 10px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  vertical-align: top;
  margin-top: 6px;
}

.stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-top: 10px;
}

.progress-stat {
  padding: 4px 0;
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ps-header span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.ps-header strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
}

.ps-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.ps-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 1.6s var(--ease-out);
}

/* ── Testimonials ───────────────────────────────────────────────── */
.section-testimonials {
  padding: 120px 0;
  background: var(--dark-2);
}

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testi-card--gold {
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.08) 0%, var(--dark-3) 100%);
  border-color: var(--gold);
}

.testi-quote i {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.testi-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--light);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 11px;
  color: var(--light-muted);
}

.testi-result {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Quote Band ──────────────────────────────────────────────────── */
.section-quote {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.section-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.quote-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -20px;
  font-family: serif;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--light);
  margin: 0 0 24px;
  border: none;
  padding: 0;
}

.quote-block blockquote em {
  font-style: italic;
  color: var(--gold);
}

.quote-block cite {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-muted);
  font-style: normal;
}

/* ── Contact ────────────────────────────────────────────────────── */
.section-contact {
  padding: 120px 0;
  background: var(--dark-2);
}

.contact-perks {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contact-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--light-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-perks li:last-child {
  border: none;
}

.contact-perks i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px 40px;
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 28px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--light);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: border-color 0.3s;
}

.form-control::placeholder {
  color: rgba(245, 243, 238, 0.25);
}

.form-control:focus,
.form-select:focus {
  background: var(--dark-4);
  border-color: var(--gold);
  color: var(--light);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  outline: none;
}

.form-select option {
  background: var(--dark-3);
}

textarea.form-control {
  resize: none;
}

.form-disclaimer {
  font-size: 10px;
  color: var(--light-muted);
  text-align: center;
  margin-top: 14px;
  opacity: 0.6;
  margin-bottom: 0;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-brand {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-brand strong {
  color: var(--gold);
  font-weight: 700;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--light-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--light-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-sub {
  font-size: 0.82rem;
  color: var(--light-muted);
  margin-bottom: 14px;
}

.footer-subscribe {
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.footer-subscribe input {
  flex: 1;
  background: var(--dark-3);
  border: none;
  color: var(--light);
  padding: 12px 16px;
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-sans);
}

.footer-subscribe input::placeholder {
  color: rgba(245, 243, 238, 0.25);
}

.footer-subscribe button {
  background: var(--gold);
  border: none;
  color: var(--dark);
  padding: 12px 18px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.25s;
}

.footer-subscribe button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--light-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--light-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── Back to Top ────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ── Toast Notification ─────────────────────────────────────────── */
.toast-notification {
  position: fixed;
  bottom: 90px;
  right: 32px;
  background: var(--dark-3);
  border: 1px solid var(--gold);
  color: var(--light);
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 0.87rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-notification i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-metrics {
    flex-wrap: wrap;
    gap: 16px;
  }

  .steps-timeline::before {
    left: 28px;
  }

  .step-item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    direction: ltr !important;
  }

  .step-item:nth-child(even) .step-content,
  .step-item:nth-child(odd) .step-content {
    order: 2;
    text-align: left;
    grid-column: auto;
  }

  .step-item .step-empty {
    display: none;
  }

  .step-item .step-marker {
    order: 1 !important;
  }

  .stats-inner::after {
    display: none;
  }
}

@media (max-width: 767px) {

  .section-about,
  .section-pillars,
  .section-steps,
  .section-testimonials,
  .section-contact {
    padding: 80px 0;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}