/* ========================================
   Wealthy Gym Owners — Design System
   Inspired by StoryBrand's clarity-first approach
   Typography: Dharma Gothic E · Outfit · Fraunces
   ======================================== */

/* --- Custom Properties --- */
:root {
  --black: #0c1a2a;
  --charcoal: #132236;
  --dark: #101e30;
  --cream: #faf7f2;
  --warm-white: #f3ede4;
  --red: #C8963E;
  --red-dark: #B07A2E;
  --red-glow: rgba(200, 150, 62, 0.35);
  --gold: #C8963E;
  --gold-light: #f5e6cc;
  --gold-muted: rgba(200, 150, 62, 0.12);
  --green: #21354C;
  --green-light: #e8eef5;
  --accent: #C8963E;
  --accent-dark: #B07A2E;
  --accent-glow: rgba(200, 150, 62, 0.35);
  --brand: #21354C;
  --white: #faf7f2;
  --white-true: #ffffff;
  --text: #182840;
  --text-muted: #5a708a;
  --text-light: #7a92aa;
  --text-on-dark: #faf7f2;
  --text-on-dark-muted: rgba(250, 247, 242, 0.6);
  --border: #c6d0dc;
  --border-dark: rgba(250, 247, 242, 0.1);

  --font-display: 'dharma-gothic-e', 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-display-weight: 600;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-accent: 'Fraunces', 'Georgia', serif;

  --section-pad: 120px 0;
  --section-pad-sm: 80px 0;
  --container-max: 1180px;
  --container-narrow: 780px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.06);
  --shadow-lifted: 0 24px 48px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-glow-red: 0 8px 32px rgba(200, 150, 62, 0.35);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-pill: 100px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--gold-muted); color: var(--black); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight, 600);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}
h1 { font-size: clamp(3.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  text-transform: none;
}
h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: none;
}
p { margin-bottom: 1rem; color: var(--text-muted); font-weight: 400; }
strong { color: var(--text); font-weight: 600; }

.lead {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}
.display-serif {
  font-family: var(--font-accent);
  font-weight: 600;
  font-style: normal;
}

/* --- Layout --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* --- Sections --- */
.section { padding: var(--section-pad); position: relative; }
.section-sm { padding: var(--section-pad-sm); position: relative; }

.section-dark {
  --green: #C8963E;
  background: var(--black);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(24, 40, 64, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(33, 53, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--text-on-dark-muted); }
.section-dark strong { color: var(--white); }
.section-dark .eyebrow { color: var(--gold); }

.section-charcoal {
  --green: #C8963E;
  background: var(--charcoal);
  color: var(--text-on-dark);
  position: relative;
}
.section-charcoal h1, .section-charcoal h2, .section-charcoal h3, .section-charcoal h4 { color: var(--white); }
.section-charcoal p { color: var(--text-on-dark-muted); }
.section-charcoal strong { color: var(--white); }

.section-cream { background: var(--cream); }
.section-cream .eyebrow { color: var(--brand); }
.section-warm { background: var(--warm-white); }
.section-warm .eyebrow { color: var(--brand); }
.section-sand { background: #eee9dd; }
.section-sand .eyebrow { color: var(--brand); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 1.0625rem; margin: 0 auto; max-width: 560px; }

/* Decorative rule */
.rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0 0 24px;
}
.rule-center { margin: 0 auto 24px; }
.rule-red { background: var(--red); }

/* --- Navigation --- */
.navbar {
  --green: #C8963E;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(12, 26, 42, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border-dark);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight, 600);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links .btn-nav {
  background: var(--red);
  color: #0c1a2a !important;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.8125rem;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}
.nav-links .btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-red);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover > a::after,
.nav-dropdown.open > a::after {
  transform: rotate(-135deg) translateY(-1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(12, 26, 42, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.nav-dropdown-menu .dropdown-label {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-top: 2px;
}

/* Founders Section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.founder-card {
  text-align: center;
}
.founder-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid var(--border);
}
.section-dark .founder-img {
  border-color: var(--border-dark);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 999; }
.mobile-overlay.active { display: block; }

/* --- Hero --- */
.hero {
  --green: #C8963E;
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 70% 20%, rgba(24, 40, 64, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(33, 53, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 .highlight { color: var(--red); }
.hero .lead {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 560px;
  font-size: 1.125rem;
}
.hero-page { padding: 160px 0 80px; }
.hero-center { text-align: center; }
.hero-center h1, .hero-center .lead { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  gap: 8px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: #0c1a2a;
  font-weight: 600;
}
.btn-red:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-glow-red);
  color: #0c1a2a;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal);
  box-shadow: var(--shadow-lifted);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--text);
  box-shadow: var(--shadow-soft);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-glow-red);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  box-shadow: var(--shadow-lifted);
}

.btn-lg { font-size: 1.0625rem; padding: 18px 40px; }
.btn-sm { font-size: 0.8125rem; padding: 10px 20px; }
.btn-block { display: flex; width: 100%; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.grid-1-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.card { position: relative; }
.bonus-value {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lifted);
  transform: translateY(-4px);
}
.card-dark {
  background: var(--charcoal);
  border-color: var(--border-dark);
  color: var(--white);
}
.card-dark h4 { color: var(--white); }
.card-dark p { color: var(--text-on-dark-muted); }
.card-dark:hover { border-color: rgba(255, 255, 255, 0.12); }

/* --- Testimonial Cards --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.testimonial-card .result-badge {
  display: inline-block;
  background: var(--gold-muted);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  align-self: flex-start;
  letter-spacing: 0.02em;
}
.testimonial-card .quote {
  font-family: var(--font-accent);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.8125rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.testimonial-card .author-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--text);
}
.testimonial-card .author-info p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

/* Dark variant */
.testimonial-card-dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
}
.testimonial-card-dark .quote { color: rgba(255, 255, 255, 0.65); }
.testimonial-card-dark .author { border-top-color: var(--border-dark); }
.testimonial-card-dark .author-info h4 { color: var(--white); }
.testimonial-card-dark .author-info p { color: rgba(255, 255, 255, 0.4); }

/* Featured testimonial (large) */
.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: none;
  background: transparent;
}
.testimonial-featured:hover { transform: none; box-shadow: none; }
.testimonial-featured .quote {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--text);
}
.testimonial-featured .author { justify-content: center; border-top: none; padding-top: 0; }

/* --- Pain / Problem Section --- */
.pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pain-list li {
  padding: 14px 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid var(--border-dark);
}
.pain-list li:last-child { border-bottom: none; }
.pain-list .pain-icon {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}
.pain-list strong { color: var(--white); }

/* --- Check List --- */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-list .check-icon {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.75;
}
.check-list-dark li { color: rgba(255, 255, 255, 0.65); }
.check-list-dark .check-icon { color: var(--gold); }

/* --- Tier / Pricing Cards --- */
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.tier-card:hover {
  box-shadow: var(--shadow-lifted);
  transform: translateY(-6px);
}
.tier-card .tier-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}
.tier-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.tier-card .tier-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.tier-card .tier-price {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight, 600);
  font-size: 3rem;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.tier-card .tier-price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
}
.tier-card ul { text-align: left; margin: 24px 0 32px; }
.tier-card ul li {
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-card ul li:last-child { border-bottom: none; }
.tier-card ul li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Featured tier */
.tier-card-featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.tier-card-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* --- For / Not For --- */
.for-not-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.for-column h3 {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
}
.for-column ul { list-style: none; }
.for-column ul li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.for-column .icon-yes {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
}
.for-column .icon-no {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
}
.section-dark .for-column ul li { color: rgba(255, 255, 255, 0.65); }

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: 60px 0;
}
.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* --- Guarantee --- */
.guarantee-box {
  background: var(--green-light);
  border: 1px solid #a8d4b8;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.guarantee-box h3 { color: var(--green); margin-bottom: 16px; text-transform: none; font-family: var(--font-body); font-weight: 700; font-size: 1.375rem; }
.guarantee-box p { color: var(--text-muted); }

/* --- Video --- */
.video-wrapper {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lifted);
  max-width: 900px;
  margin: 0 auto;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 130%;
  border: none;
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: var(--white);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}
.form-group input::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.active { display: block; }
.form-success .checkmark {
  width: 72px;
  height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* --- Numbered Steps --- */
.numbered-steps { counter-reset: step-counter; }
.numbered-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step-counter;
}
.numbered-step:last-child { border-bottom: none; }
.numbered-step .step-num {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight, 600);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.numbered-step h4 { margin-bottom: 8px; }
.numbered-step p { margin-bottom: 0; font-size: 0.9375rem; }

/* --- Logo Bar --- */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 32px 0;
  opacity: 0.4;
  flex-wrap: nowrap;
}
.logo-bar span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: currentColor;
  white-space: nowrap;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-entrepreneur {
  transform: translateY(3px);
}
.logo-perform-better {
  transform: translateY(2px);
}
.section-dark .logo-img {
  filter: brightness(0) invert(1);
}
.logo-bar-dark .logo-img {
  filter: brightness(0);
  opacity: 0.35;
}

/* --- CTA Banner --- */
.cta-banner {
  --green: #C8963E;
  text-align: center;
  padding: 100px 24px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(33, 53, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p { color: var(--text-on-dark-muted); max-width: 540px; margin: 0 auto 36px; }

/* --- Resource Cards --- */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.resource-card:hover {
  box-shadow: var(--shadow-lifted);
  transform: translateY(-4px);
}
.resource-card .resource-img {
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.resource-card .resource-body { padding: 28px; }
.resource-card .resource-body h4 { margin-bottom: 12px; }
.resource-card .resource-body p { font-size: 0.9375rem; }

/* --- Fit Section (adspend style) --- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}
.fit-column {
  padding: 0;
}
.fit-heading {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-dark);
}
.fit-heading-yes { color: var(--green-light); }
.fit-heading-no { color: rgba(250, 247, 242, 0.4); }
.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fit-list li {
  padding: 12px 0;
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}
.fit-icon {
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}
.fit-icon-yes { color: var(--green-light); }
.fit-icon-no { color: rgba(250, 247, 242, 0.25); }

/* --- Footer --- */
.footer {
  --green: #C8963E;
  background: var(--black);
  color: rgba(255, 255, 255, 0.45);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight, 600);
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.4); line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 5px 0;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255, 255, 255, 0.35); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--white); }

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 998;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; max-width: 400px; }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* Fade in only (no translate) */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.fade-in.revealed { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .card:hover, .testimonial-card:hover, .tier-card:hover, .resource-card:hover { transform: none; }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.bg-cream { background: var(--cream); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-500 { max-width: 500px; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-900 { max-width: 900px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Divider line */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}
.divider-dark { background: var(--border-dark); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 1rem; }
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .section-header { margin-bottom: 48px; }
  .hero { padding: 140px 0 80px; }
  .hero-page { padding: 130px 0 60px; }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 80px 28px 28px;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    transition: right 0.35s var(--ease-out);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid var(--border-dark);
    text-align: center;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links .btn-nav {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    padding: 14px 24px;
  }
  .mobile-toggle { display: flex; }

  /* Mobile dropdown — smooth open */
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
    opacity: 1;
  }
  .nav-dropdown-menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.875rem;
    text-align: center;
  }
  .nav-dropdown-menu a:hover { background: transparent; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-1-1 { grid-template-columns: 1fr; gap: 40px; }
  .for-not-grid { grid-template-columns: 1fr; gap: 40px; }
  .fit-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-name-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sticky-cta { display: block; }
  .card { padding: 28px; }
  .form-card { padding: 28px; }
  .tier-card { padding: 32px 24px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }
  .guarantee-box { padding: 32px 24px; }
  .numbered-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .numbered-step .step-num { font-size: 2.25rem; }
  .cta-banner { padding: 72px 24px; }
  .logo-bar { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 120px 0 60px; }
}
