:root {
  --black: #000000;
  --charcoal: #080808;
  --charcoal-2: #0a0a0a;
  --slate: #111111;
  --slate-2: #151515;

  --gold: #d4af37;
  --gold-bright: #f3c300;
  --gold-soft: #f7db72;

  --white: #f5f5f3;
  --white-soft: rgba(255, 255, 255, 0.801);
  --white-dim: rgba(255, 255, 255, 0.877);
  --white-muted: rgba(255, 255, 255, 0.87);

  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);

  --green: #77e0ae;
  --red: #ff6d78;

  --container-width: 1380px;

  --font-heading: "Clash Display", sans-serif;
  --font-body: "Manrope", sans-serif;

  --shadow-xl: 0 35px 100px rgba(0, 0, 0, 0.62);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(212, 175, 55, 0.035),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 35%,
      rgba(255, 255, 255, 0.025),
      transparent 22%
    ),
    var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold);
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container-xxl-custom {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(80px, 10vw, 150px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.section-title {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-copy {
  max-width: 630px;
  margin-top: 24px;
  color: var(--white-soft);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  font-weight: 400;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease,
    padding 0.45s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  border-color: var(--line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: var(--white-dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-gold {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #f6d86f 0%,
    var(--gold) 42%,
    #ad8620 100%
  );
  color: #080808;
  box-shadow:
    0 10px 35px rgba(212, 175, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-body);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translate(var(--mag-x), var(--mag-y));
  transition:
    transform 0.24s var(--ease),
    box-shadow 0.35s ease,
    filter 0.35s ease;
  white-space: nowrap;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.btn-gold:hover {
  color: #050505;
  box-shadow:
    0 16px 50px rgba(212, 175, 55, 0.2),
    0 0 0 1px rgba(243, 195, 0, 0.16);
  filter: brightness(1.05);
}

.btn-outline-gold {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-body);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translate(var(--mag-x), var(--mag-y));
  transition:
    transform 0.24s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease;
  white-space: nowrap;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.75);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.sticky-socials {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.sticky-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: var(--white-dim);
  transition: all 0.3s var(--ease);
}

.sticky-social-link:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(-4px);
}

.sticky-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 112svh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.82) 55%,
      rgba(0, 0, 0, 0.96) 100%
    ),
    url("../images/home-data/hero-banner.jpg") center/cover;
  opacity: 0.6;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  right: -180px;
  top: 80px;
  background: rgba(212, 175, 55, 0.07);
  filter: blur(100px);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 24px;
}

.hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: clamp(-0.06em, 2vw, 0.08em);
}

.hero-title .gold {
  color: var(--gold);
}
.hero-title .soft {
  color: #9b9b98;
}

.hero-copy-row {
  margin-top: 36px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
}

.hero-lang-note {
  max-width: 560px;
  margin: 0 auto 32px;
  padding: 14px 22px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-price-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.hero-price-value span {
  color: var(--gold);
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--line-strong);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white-dim);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(119, 224, 174, 0.65);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--white-muted);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 4;
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.philosophy {
  border-top: 1px solid var(--line);
  background: #050505;
  position: relative;
  overflow: hidden;
}

.philosophy::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: 42vw;
  height: 65%;
  max-width: 680px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86)),
    url("../images/home-data/philosophy-visual-image-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(1) contrast(1.15);
  pointer-events: none;
}

.philosophy-heading {
  margin-top: 24px;
  max-width: 1200px;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.philosophy-heading span:first-child {
  color: var(--white);
}

.philosophy-heading span:last-child {
  display: block;
  margin-left: 16%;
  color: var(--gold);
  -webkit-text-stroke: 0;
}

.philosophy-visual-banner {
  position: relative;
  height: 240px;
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 48px 0;
  background: #080808;
  border-radius: 8px;
}

.philosophy-visual-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.25)),
    url("../images/home-data/philosophy-visual-image.jpg")
      center/cover;
  filter: grayscale(1);
  opacity: 0.58;
}

.philosophy-visual-copy {
  position: absolute;
  left: 28px;
  bottom: 26px;
  max-width: 580px;
  padding-right: 20px;
  top: 63px;
}

.philosophy-visual-copy span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.philosophy-visual-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.philosophy-subrow {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.focus-item {
  position: relative;
  min-height: 220px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  transition: background 0.35s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.focus-item:last-child {
  border-right: 0;
}
.focus-item:hover {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 175, 55, 0.08),
    transparent 70%
  );
}
.focus-item::after {
  content: "↗";
  position: absolute;
  right: 22px;
  top: 28px;
  color: rgba(212, 175, 55, 0.42);
  font-size: 1rem;
}

.focus-item h4 {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.focus-line {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
}

.focus-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.focus-desc {
  margin: 8px 0 0;
  max-width: 220px;
  color: var(--white-muted);
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.75;
}

/* =========================================================
           PRICING PLANS
        ========================================================= */
.pricing-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}

.pricing-card-wrap {
  display: flex;
}

.pricing-card {
  --hover-y: 0px;
  --hover-scale: 1;
  position: relative;
  width: 100%;
  padding: 44px 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  flex-direction: column;
  overflow: visible;
  transform: translateY(var(--hover-y)) scale(var(--hover-scale));
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  clip-path: inset(0 round 14px);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.4);
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(212, 175, 55, 0.09),
      transparent 45%
    ),
    rgba(255, 255, 255, 0.02);
}

.pricing-card:hover {
  --hover-y: -10px;
  --hover-scale: 1.015;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

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

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 38px;
  right: 38px;
  width: max-content;
  max-width: calc(100% - 76px);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
  z-index: 2;
}

.pricing-name {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
}

.pricing-title {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pricing-amount {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-amount .num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.pricing-amount .period {
  color: var(--white-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0 24px;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--white-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-list li svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.pricing-list li.included svg {
  color: var(--green);
}

.pricing-list li.excluded {
  color: var(--white-muted);
}

.pricing-list li.excluded svg {
  color: rgba(255, 109, 120, 0.55);
}

.pricing-list-heading {
  color: var(--white-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 18px 0 10px;
}

.pricing-list-heading:first-child {
  margin-top: 0;
}

.pricing-cta {
  margin-top: 30px;
}
.pricing-cta .btn-gold,
.pricing-cta .btn-outline-gold {
  width: 100%;
}

/* =========================================================
           CASE STUDIES
        ========================================================= */

.case-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
}

.case-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 65px;
  flex-wrap: wrap;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.case-stack {
  display: grid;
  gap: 16px;
}

.case-card {
  position: relative;
  min-height: 520px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #0d0d0d;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.4s ease,
    transform 0.4s var(--ease);
}

.case-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.case-card:active {
  transform: translateY(-1px) scale(0.99);
}

.case-card {
  display: block;
}

.case-card.small {
  min-height: 252px;
}

.case-media {
  position: absolute;
  inset: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
  border-radius: 8px;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  filter: saturate(0.55) contrast(1.06) brightness(0.55);
  transition:
    transform 0.7s var(--ease),
    opacity 0.5s ease;
}

.case-card:hover .case-media img {
  transform: scale(1.035);
  opacity: 0.68;
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.case-media-label {
  position: absolute;
  z-index: 3;
  left: 16px;
  top: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-soft);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.chart-scan {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 78px,
      rgba(255, 255, 255, 0.04) 79px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 48px,
      rgba(255, 255, 255, 0.04) 49px,
      transparent 50px
    );
}

.case-content {
  position: absolute;
  z-index: 3;
  left: 42px;
  right: 42px;
  bottom: 36px;
}

.case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.case-title {
  max-width: 580px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.case-small-content {
  left: 34px;
  right: 34px;
  bottom: 28px;
}
.case-small-content .case-title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 25px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric small {
  color: var(--white-muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.metric strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}
.metric strong.positive {
  color: var(--green);
}

.case-note {
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.04);
  color: var(--gold-soft);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.case-card {
  border: 1px solid var(--line);
  text-align: left;
  color: inherit;
  font-family: inherit;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.case-lightbox.open {
  display: flex;
}

.case-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.case-lightbox-panel {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: var(--shadow-xl);
  animation: lightboxIn 0.35s var(--ease);
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.case-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.case-lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.case-lightbox-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.case-lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-lightbox-info {
  padding: 30px 34px 34px;
}

.case-lightbox-info .case-title {
  max-width: 100%;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.case-lightbox-info .case-metrics {
  margin-top: 22px;
}

@media (max-width: 600px) {
  .case-lightbox-info {
    padding: 22px 20px 26px;
  }
}

@media (max-width: 480px) {
  .pricing-card.featured {
    margin-top: 14px;
  }
  .pricing-badge {
    left: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
    font-size: 0.56rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 6px 10px;
  }
}

/* =========================================================
   CASE STUDIES MODAL CAROUSEL
   ========================================================= */

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.cs-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #0d0d0d;
  cursor: pointer;
  min-height: 340px;
  text-align: left;
  color: inherit;
  font-family: inherit;
  padding: 0;
  transition:
    border-color 0.35s ease,
    transform 0.35s var(--ease);
}

.cs-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.cs-card-image {
  position: absolute;
  inset: 0;
}

.cs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.92);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s ease;
}

.cs-card:hover .cs-card-image img {
  transform: scale(1.05);
  filter: saturate(1.05) brightness(1);
}

.cs-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.08) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  transition: background 0.4s ease;
}

.cs-card:hover .cs-overlay-grad {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.12) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.cs-card-content {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.cs-card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.cs-card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cs-card-icon {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

/* MODAL */
.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cs-modal.open {
  display: flex;
}

.cs-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(6px);
}

.cs-modal-panel {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #0b0b0b;
  box-shadow: var(--shadow-xl);
  animation: lightboxIn 0.3s var(--ease);
}

.cs-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.cs-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cs-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
  border-radius: 14px 14px 0 0;
  padding: 4px;
}

.cs-gallery {
  display: grid;
  gap: 4px;
  grid-auto-rows: 240px;
}

.cs-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
  background: #0a0a0a;
}

.cs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.cs-gallery-item:hover img {
  transform: scale(1.06);
}

.cs-gallery-item::after {
  content: "⤢";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold-soft);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-gallery-item:hover::after {
  opacity: 1;
}

.cs-gallery-count-1 {
  grid-template-columns: 1fr;
  grid-auto-rows: 420px;
}

.cs-gallery-count-2 {
  grid-template-columns: 1fr 1fr;
}

.cs-gallery-count-3 {
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 200px;
}
.cs-gallery-count-3 .cs-gallery-item:first-child {
  grid-row: 1 / 3;
}

.cs-gallery-count-4 {
  grid-template-columns: 1fr 1fr;
}

.cs-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.cs-zoom-overlay.open {
  display: flex;
}

.cs-zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.cs-zoom-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cs-zoom-prev {
  left: 16px;
}
.cs-zoom-next {
  right: 16px;
}

.cs-zoom-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.cs-zoom-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
}

.cs-zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  cursor: pointer;
}
.cs-zoom-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cs-modal-info {
  padding: 28px 32px 34px;
}

.cs-modal-tag {
  color: var(--gold-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cs-modal-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cs-modal-text {
  color: var(--white-dim);
  font-size: 0.98rem;
  line-height: 1.8;
}

.cs-modal-text p {
  margin: 0 0 14px;
}

.cs-modal-text p:last-child {
  margin-bottom: 0;
}

.cs-modal-text ul,
.cs-modal-text ol {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--white-dim);
  font-size: 0.98rem;
  line-height: 1.8;
}

.cs-modal-text ul {
  list-style: disc;
}

.cs-modal-text ol {
  list-style: decimal;
}

.cs-modal-text li {
  margin-bottom: 8px;
}

.cs-modal-text li:last-child {
  margin-bottom: 0;
}

.cs-modal-text li > ul,
.cs-modal-text li > ol {
  margin-top: 8px;
  margin-bottom: 0;
}

.cs-modal-text strong,
.cs-modal-text b {
  color: var(--white);
  font-weight: 700;
}

.cs-modal-text em,
.cs-modal-text i {
  font-style: italic;
}

.cs-modal-text a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cs-modal-text a:hover {
  color: var(--gold);
}

.cs-modal-text h1,
.cs-modal-text h2,
.cs-modal-text h3,
.cs-modal-text h4 {
  margin: 24px 0 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.3;
}

.cs-modal-text h1:first-child,
.cs-modal-text h2:first-child,
.cs-modal-text h3:first-child,
.cs-modal-text h4:first-child {
  margin-top: 0;
}

.cs-modal-text h1 { font-size: 1.6rem; }
.cs-modal-text h2 { font-size: 1.4rem; }
.cs-modal-text h3 { font-size: 1.2rem; }
.cs-modal-text h4 { font-size: 1.05rem; }

.cs-modal-text blockquote {
  margin: 0 0 14px;
  padding: 10px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.05);
  color: var(--white-soft);
  font-style: italic;
}

.cs-modal-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 14px 0;
}

.cs-modal-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 14px;
  font-size: 0.9rem;
}

.cs-modal-text table td,
.cs-modal-text table th {
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  text-align: left;
}

.cs-modal-text table th {
  color: var(--white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .cs-card {
    min-height: 300px;
  }
  .cs-modal {
    padding: 10px;
  }
  .cs-modal-info {
    padding: 20px 18px 26px;
  }
}
@media (max-width: 600px) {
  .cs-zoom-nav {
    width: 38px;
    height: 38px;
  }
  .cs-zoom-prev {
    left: 10px;
  }
  .cs-zoom-next {
    right: 10px;
  }
}
@media (max-width: 640px) {
  .cs-gallery-count-2,
  .cs-gallery-count-3,
  .cs-gallery-count-4 {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .cs-gallery-count-3 .cs-gallery-item:first-child {
    grid-row: auto;
  }
  .cs-gallery-count-1 {
    grid-auto-rows: 260px;
  }
}

/* =========================================================
           STUDENT SUCCESS STORIES
        ========================================================= */
.success-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
}

.success-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.success-stat-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 20px 28px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.05);
}

.success-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.success-stat-label {
  margin-top: 8px;
  color: var(--white-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.success-grid {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.success-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
}

.success-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: #0d0d0d;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.success-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.success-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
  filter: saturate(0.9) brightness(0.88);
}

.success-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.success-item::after {
  content: "⤢";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold-soft);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}

.success-item:hover::after {
  opacity: 1;
}

/* Zoom overlay */
.success-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.success-zoom-overlay.open {
  display: flex;
}

.success-zoom-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
}

.success-zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  cursor: pointer;
}
.success-zoom-close:hover { border-color: var(--gold); color: var(--gold); }

.success-zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.success-zoom-nav:hover { border-color: var(--gold); color: var(--gold); }
.success-zoom-prev { left: 16px; }
.success-zoom-next { right: 16px; }

.success-zoom-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

@media (max-width: 820px) {
  .success-heading-row {
    display: block;
  }
  .success-stat-badge {
    margin-top: 24px;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .success-zoom-nav {
    width: 38px;
    height: 38px;
  }
  .success-zoom-prev { left: 10px; }
  .success-zoom-next { right: 10px; }
}

/* =========================================================
           TESTIMONIALS
        ========================================================= */

.testimonials {
  border-top: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
}

.quote-track-wrap {
  position: relative;
  margin-top: 70px;
}
.quote-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 35s linear infinite;
}
.quote-track:hover {
  animation-play-state: paused;
}

.quote-card {
  width: min(500px, 85vw);
  min-height: 285px;
  padding: 34px;
  border: 1px solid var(--line);
  background: #0b0b0b;
  flex: 0 0 auto;
  border-radius: 8px;
}

.quote-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.quote-stars {
  color: var(--gold);
  font-size: 1.75rem;
  letter-spacing: 2px;
}

.quote-stars::before {
  content: "★★★★★";
}

.quote-whop-badge {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-image: url("../images/home-data/whop-orange.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonials-cta {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

.quote-card p {
  margin: 0;
  color: var(--white-soft);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
}
.quote-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-soft);
}

.quote-avatar::before {
  content: attr(data-initial);
}

.quote-meta strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}
.quote-meta span {
  display: block;
  margin-top: 4px;
  color: var(--white-muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
           FOUNDER & MENTORS
        ========================================================= */
.team {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 8% 50%,
      rgba(212, 175, 55, 0.035),
      transparent 30%
    ),
    #080808;
}

.founder-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 22px;
}

.founder-row-spaced {
  margin-top: 60px;
}

.mentors-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-top: 12px;
}

.founder-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03) brightness(1);
  transition:
    transform 0.7s var(--ease),
    filter 0.5s ease;
}

.founder-image:hover img {
  filter: saturate(1.05) contrast(1.05) brightness(1.05);
  transform: scale(1.06);
}

.founder-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.35) 80%
  );
}

.founder-caption {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 28px;
  color: var(--white-dim);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.founder-caption-right {
  left: auto;
  right: 30px;
}

.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8vw 60px 70px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.01);
}

.founder-name {
  margin: 22px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.founder-role {
  margin-top: 14px;
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.founder-socials .sticky-social-link {
  position: static;
  width: 38px;
  height: 38px;
}

.founder-content p {
  max-width: 560px;
  margin-top: 30px;
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.85;
}

.mentors-heading {
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.mentors-heading .eyebrow {
  justify-content: center;
}

.mentors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.mentor-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0b0b0b;
  transition: all 0.4s var(--ease);
}

.mentor-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-6px);
}

.mentor-card-image {
  position: relative;
  height: 35rem;
  overflow: hidden;
}

.mentor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03) brightness(1);
  transition:
    filter 0.5s ease,
    transform 0.7s var(--ease);
}

.mentor-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.16),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.mentor-card:hover .mentor-card-image::before {
  opacity: 1;
}

.mentor-card:hover .mentor-card-image img {
  filter: saturate(1.05) contrast(1.05) brightness(1.05);
  transform: scale(1.06);
}

.mentor-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 11, 0.55),
    rgba(11, 11, 11, 0) 55%
  );
}

.mentor-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.mentor-card-body {
  padding: 26px 26px 30px;
}

.mentor-card-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mentor-card-role {
  margin-top: 10px;
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mentor-card-body p {
  margin-top: 14px;
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
           PROCESS
        ========================================================= */

.process {
  border-top: 1px solid var(--line);
  background: #050505;
}

.process-track {
  position: relative;
  margin-top: 80px;
}
.process-line {
  position: absolute;
  top: 32px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.7),
    rgba(212, 175, 55, 0.1)
  );
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 18px 12px;
}
.process-step::before {
  content: "";
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: radial-gradient(
    circle at 35% 25%,
    rgba(212, 175, 55, 0.14),
    rgba(255, 255, 255, 0.015) 65%
  );
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.process-step:nth-child(1)::after {
  content: "☰";
}
.process-step:nth-child(2)::after {
  content: "$";
}
.process-step:nth-child(3)::after {
  content: "↗";
}
.process-step:nth-child(4)::after {
  content: "✓";
}

.process-step::after {
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.process-number {
  position: absolute;
  top: -6px;
  left: calc(50% + 16px);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #050505;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.process-step h3 {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process-step p {
  max-width: 220px;
  margin: 10px auto 0;
  color: var(--white-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.process-price {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.035);
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq {
  border-top: 1px solid var(--line);
  background: #060606;
}

.faq-wrap {
  max-width: 100%;
  margin: 70px auto 0;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 32px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.faq-question svg {
  flex: 0 0 auto;
  transition: transform 0.4s var(--ease);
  color: var(--gold);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-inner {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 0 28px 0;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.final-cta {
  position: relative;
  padding: 150px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(212, 175, 55, 0.045),
      transparent 36%
    ),
    #050505;
  isolation: isolate;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0.52),
      rgba(0, 0, 0, 0.9)
    ),
    url("../images/home-data/cta.jpg");
  background-size: cover;
  background-position: center 42%;
  opacity: 0.22;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
  z-index: -1;
  border-radius: 8px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.cta-overline {
  color: var(--gold-soft);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 16px;
}

.cta-title {
  max-width: 1000px;
  margin: 22px auto 0;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cta-copy {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.8;
}

.cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* POLICY PAGES */
.policy-hero {
  padding: clamp(140px, 18vw, 190px) 0 50px;
  border-bottom: 1px solid var(--line);
  background: #060606;
  text-align: center;
}

.policy-hero .eyebrow {
  justify-content: center;
}

.policy-updated {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-body {
  padding: clamp(60px, 8vw, 100px) 0;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 44px 0 16px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--white-dim);
  font-size: 0.98rem;
  line-height: 1.85;
  margin: 0 0 18px;
}

.policy-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--white-dim);
  font-size: 0.98rem;
  line-height: 1.85;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* TRUST SLIDER */
.trust-slider-section {
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #060606;
}
.trust-slider-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 22s linear infinite;
}
.trust-slide {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-body);
}
.trust-slide strong {
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 700;
}
.trust-slide span {
  color: var(--white-muted);
  font-size: 0.8rem;
}

/* HERO COUNTDOWN */
.hero-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.05);
}
.countdown-label {
  color: var(--white-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.countdown-time {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* STICKY MOBILE CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9998;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  width: auto;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6d86f 0%, var(--gold) 42%, #ad8620 100%);
  color: #080808;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s var(--ease);
}

@media (max-width: 820px) {
  .sticky-mobile-cta {
    display: flex;
  }
}

.sticky-mobile-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s var(--ease);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

footer {
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-main {
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-copy {
  max-width: 320px;
  margin-top: 24px;
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-socials .sticky-social-link {
  position: static;
  width: 40px;
  height: 40px;
}

.footer-heading {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--white-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
  display: inline-block;
  width: max-content;
}

.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(4px);
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.footer-newsletter-form input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-newsletter-form button[type="submit"] {
  cursor: pointer;
}

.footer-newsletter-form input::placeholder {
  color: var(--white-muted);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: #000;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.copyright {
  color: var(--white-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.copyright-brand {
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

.copyright-brand:hover {
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.18s;
}
.reveal-delay-3 {
  transition-delay: 0.25s;
}

@media (max-width: 1200px) {
  .sticky-socials {
    display: none;
  }
  .hero-inner {
    gap: 30px;
  }
  .risk-grid,
  .milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 20px;
  }
  .offer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .offer-card.large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 360px;
  }
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .focus-item:nth-child(2n) {
    border-right: 0;
  }
  .focus-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .founder-row {
    grid-template-columns: 1fr;
  }
  .founder-content {
    border-right: 1px solid var(--line);
    padding: 60px 40px;
    border-radius: 0 0 8px 8px;
  }
  .founder-image {
    min-height: 420px;
    border-radius: 8px 8px 0 0;
  }
  .mentors-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav-links a .nav-ico {
    display: none;
  }
  .philosophy::after {
    width: 70vw;
    opacity: 0.08;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 55px;
  }
  .process-line {
    display: none;
  }
}

@media (max-width: 820px) {
  .container-xxl-custom {
    width: min(100% - 28px, var(--container-width));
  }
  .section {
    padding: 90px 0;
  }
  .nav-links,
  .site-header .btn-gold {
    display: none;
  }
  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    padding: 20px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }
  .mobile-menu.open {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--white-soft);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .mobile-menu a:last-child {
    border-bottom: 0;
  }
  .mobile-menu .mobile-cta {
    margin-top: 16px;
    text-align: center;
  }

  .hero {
    padding-top: 150px;
    padding-bottom: 120px;
    min-height: 100svh;
  }
  .hero-copy-row {
    display: block;
    margin-top: 35px;
  }
  .hero-meta {
    margin-top: 30px;
  }
  .offer-header,
  .case-heading-row {
    display: block;
  }
  .offer-index {
    display: block;
    margin-top: 25px;
  }

  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }
  .focus-item:nth-child(2n) {
    border-right: 0;
  }
  .focus-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .risk-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand {
    font-size: 1rem;
  }
  .hero {
    padding-top: 130px;
  }
  .hero-meta {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
  .hero-divider {
    display: none;
  }

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

  .visual-strip {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }
  .visual-strip-copy {
    padding: 15px;
  }

  .philosophy-heading span:last-child {
    margin-left: 0;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .focus-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .focus-item:last-child {
    border-bottom: 0;
  }

  .case-card {
    min-height: 390px;
  }
  .case-card.small {
    min-height: 290px;
  }
  .case-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .founder-content {
    padding: 50px 24px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 100px 0;
  }
  .final-cta::before {
    inset: 15px;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .sticky-mobile-cta {
    bottom: 20px;
    left: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
