/* =========================================================
   MIAMI MARKETER — Dark-Mode-First Design System
   ========================================================= */

:root {
  /* === Surface Colors === */
  --bg-primary: #0d0d0d;
  --bg-secondary: #111111;
  --bg-tertiary: #141414;
  --bg-quaternary: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);

  /* === Text Colors === */
  --text-primary: #ffffff;
  --text-secondary: #c8d6f0;
  --text-muted: #8893a8;
  --text-faint: #565a7c;

  /* === Brand Colors === */
  --red: #fc0311;
  --red-deep: #be1b23;
  --gold: #fdc054;
  --blue: #188bf6;

  /* === Gradients === */
  --gradient-red: linear-gradient(90deg, var(--red), var(--red-deep));
  --gradient-accent: linear-gradient(90deg, var(--red), var(--gold));

  /* === Typography === */
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;

  /* === Spacing === */
  --section-pad: clamp(4rem, 10vw, 7rem);

  /* === Radius === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* === Shadows === */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow-red: 0 0 40px rgba(252, 3, 17, 0.1);

  /* === Transitions === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.6s;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.08;
  color: var(--text-primary);
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(252, 3, 17, 0.35));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.75rem;
  color: var(--text-muted);
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* === LAYOUT === */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--text-muted);
}

.center {
  text-align: center;
}

.center-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.88rem 1.6rem;
  background: var(--gradient-red);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform var(--duration-fast) ease,
    box-shadow var(--duration-normal) ease;
  box-shadow: 0 8px 24px rgba(252, 3, 17, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(252, 3, 17, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-normal) ease,
    min-height var(--duration-normal) ease;
}

.site-header.header-scrolled {
  border-bottom-color: var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 2rem;
  transition: min-height var(--duration-normal) ease,
    padding var(--duration-normal) ease;
}

.header-scrolled .header-inner {
  min-height: 76px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: block;
  width: 240px;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--duration-fast) ease;
}

.main-nav a:hover {
  color: var(--text-primary);
}

.btn-header {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration-normal) ease,
    opacity var(--duration-fast) ease;
}

/* Hamburger → X animation */
.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) ease,
    visibility var(--duration-normal) ease;
}

.nav-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav a {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.72) 50%,
    rgba(13, 13, 13, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 7rem 0 4rem;
}

.hero-content p {
  color: var(--text-secondary);
  max-width: 65ch;
}

.hero-sub {
  font-size: 1.05rem;
}

.hero-callout {
  color: var(--text-primary) !important;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

/* Hero stagger animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-anim {
  opacity: 0;
  animation: fadeSlideUp 0.7s var(--ease-out) forwards;
}

.hero-anim-1 {
  animation-delay: 0.2s;
}
.hero-anim-2 {
  animation-delay: 0.4s;
}
.hero-anim-3 {
  animation-delay: 0.6s;
}
.hero-anim-4 {
  animation-delay: 0.8s;
}

/* =========================================================
   CREDIBILITY BAR
   ========================================================= */
.credibility-bar {
  background: var(--bg-secondary);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.stat-block {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--text-primary);
  line-height: 1;
}

.stat-prefix {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

.authority-strip {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.authority-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  font-weight: 700;
  margin-bottom: 1rem;
}

.authority-strip img {
  max-height: 80px;
  width: 100%;
  object-fit: contain;
  filter: brightness(2) contrast(0.7) grayscale(0.5);
  opacity: 0.7;
  margin: 0 auto;
}

.authority-badges {
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.badges-strip {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
}

.badges-strip img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================================================
   PROBLEM / AGITATION
   ========================================================= */
.section-problem {
  background: var(--bg-primary);
}

.problem-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.gradient-line {
  height: 2px;
  width: 100px;
  background: var(--gradient-accent);
  margin: 1.8rem auto;
  border-radius: 2px;
}

.problem-pivot {
  color: var(--text-primary) !important;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.6rem;
}

/* =========================================================
   AUDIENCE INTELLIGENCE
   ========================================================= */
.section-intelligence {
  background: var(--bg-secondary);
  overflow: hidden;
}

.section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse,
    rgba(128, 67, 247, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.section-glow-red {
  background: radial-gradient(
    ellipse,
    rgba(252, 3, 17, 0.07) 0%,
    transparent 60%
  );
}

.intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intel-text h2 {
  margin-bottom: 1.2rem;
}

.intel-callout {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid;
  border-image: var(--gradient-accent) 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.intel-callout p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.intel-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intel-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.intel-step h3 {
  margin-bottom: 0.25rem;
}

.intel-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.intel-connector {
  width: 2px;
  height: 20px;
  background: var(--border-subtle);
  margin-left: 2.1rem;
}

/* =========================================================
   GEAR FRAMEWORK
   ========================================================= */
.section-gear {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.gear-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: background var(--duration-fast) ease,
    box-shadow var(--duration-normal) ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow-red);
}

.gear-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.gear-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
}

.gear-icon svg {
  width: 100%;
  height: 100%;
  color: var(--text-muted);
  opacity: 0.85;
}

.glass-card:hover .gear-icon svg {
  color: var(--text-primary);
  opacity: 1;
}

.gear-title {
  font-size: clamp(4rem, 9vw, 7.2rem);
  display: block;
  line-height: 0.9;
  letter-spacing: 0.15em;
  margin-bottom: 0;
}

.gear-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-top: 0.1em;
}

/* Tighten the eyebrow → GEAR → subtitle grouping */
.section-gear .section-head .eyebrow {
  margin-bottom: 0.5rem;
}

.section-gear .section-head h2 {
  margin-bottom: 0.5rem;
}

.glass-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.glass-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.fit-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.fit-card h3 {
  margin-bottom: 1rem;
}

.fit-card ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.fit-card li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.fit-yes {
  border-left: 3px solid #4ade80;
}

.fit-no {
  border-left: 3px solid var(--red);
}

/* =========================================================
   32 CAPABILITIES
   ========================================================= */
.section-capabilities {
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-quaternary) 100%);
}

.capabilities-accordion {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
}

.capability-category {
  border-bottom: 1px solid var(--border-subtle);
}

.category-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.1rem 0.4rem;
  background: none;
  border: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}

.category-header:hover {
  color: var(--gold);
}

.category-name {
  text-align: left;
  flex-shrink: 0;
}

.category-desc {
  flex: 1;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  padding-left: 0.8rem;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  background: rgba(252, 3, 17, 0.12);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0 0.5rem;
  margin-right: 1rem;
}

.category-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform var(--duration-normal) ease;
  flex-shrink: 0;
}

.capability-category.expanded .category-chevron {
  transform: rotate(-135deg);
}

.category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) ease;
}

.capability-category.expanded .category-content {
  /* JS sets max-height to scrollHeight */
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 0.4rem 1.2rem;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.skill-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

/* =========================================================
   SALES EDGE
   ========================================================= */
.section-sales-edge {
  background: var(--bg-primary);
}

.sales-edge-content {
  max-width: 780px;
  margin: 0 auto;
}

.sales-edge-content h2 {
  margin-bottom: 1.4rem;
}

.philosophy-quote {
  margin: 2.5rem 0 0;
  padding: 1.6rem 2rem;
  border-left: 3px solid;
  border-image: var(--gradient-accent) 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.philosophy-quote p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.philosophy-quote cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
}

/* =========================================================
   CAMPAIGN EXPERIENCE
   ========================================================= */
.section-experience {
  background: var(--bg-tertiary);
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0;
}

.brand-grid img {
  flex: 0 0 calc((100% - 6 * 0.6rem) / 7);
  min-width: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 0.6rem;
}

.partner-strip {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.partner-strip img {
  max-height: 90px;
  width: 100%;
  object-fit: contain;
  filter: brightness(1.6) contrast(0.8);
  opacity: 0.75;
  margin: 0 auto;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.section-testimonials {
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, #181216 100%);
}

.stars {
  width: 160px;
  margin: 0 auto 1rem;
}

.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1060px;
  margin: 0 auto 2rem;
}

.video-testimonial-card {
  padding: 0.6rem;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  background: #000;
}

.video-name {
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin: 0.8rem 0 0.2rem;
}

.fiverr-testimonials {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  max-width: 1160px;
  margin: 0 auto;
}

.fiverr-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: background var(--duration-fast) ease;
}

.fiverr-card:hover {
  background: var(--bg-card-hover);
}

.fiverr-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.fiverr-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.fiverr-author strong {
  font-size: 0.78rem;
  color: var(--text-primary);
}

.fiverr-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   PROCESS
   ========================================================= */
.section-process {
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.process-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.2rem;
}

.process-bonus {
  text-align: center;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}

.process-bonus p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.process-bonus .gradient-text {
  -webkit-text-fill-color: transparent;
}

.process-card {
  padding: 1.3rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.process-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}

.process-card h3 {
  margin-bottom: 0.4rem;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================================
   FOUNDER
   ========================================================= */
.section-founder {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.founder-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.founder-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(190, 27, 35, 0.12);
}

.founder-photo img {
  width: 100%;
  height: auto;
}

.founder-subline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem !important;
}

.founder-text .btn {
  margin-top: 0.8rem;
}

.founder-socials {
  margin-top: 1.6rem;
}

.founder-socials-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.founder-socials-icons {
  display: flex;
  gap: 0.7rem;
}

.founder-socials-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: background var(--duration-fast) ease,
    color var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.founder-socials-icons a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

/* =========================================================
   LEAD MAGNET CALLOUT
   ========================================================= */
.section-lead-magnet {
  background: var(--bg-secondary);
  padding: 2.5rem 0;
}

.lead-magnet-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 1.8rem 2.5rem;
  border: 1px solid rgba(253, 192, 84, 0.15);
  background: rgba(253, 192, 84, 0.03);
}

.lead-magnet-content .eyebrow {
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.lead-magnet-content h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.lead-magnet-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.lead-magnet-card .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-lead-magnet {
  background: var(--gold);
  color: #0d0d0d;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(253, 192, 84, 0.2);
}

.btn-lead-magnet:hover {
  background: #ffe08a;
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 192, 84, 0.3);
}

/* =========================================================
   GET STARTED (BOOK SECTION)
   ========================================================= */
.section-book {
  background: var(--bg-primary);
}

.start-options {
  max-width: 900px;
  margin: 0 auto;
}

.start-card {
  padding: 2rem 2.5rem;
  position: relative;
}

.start-primary {
  border: 1px solid var(--border-medium);
  margin-bottom: 1.5rem;
}

.start-badge {
  position: absolute;
  top: -0.6rem;
  left: 2rem;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
}

.start-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.start-card > p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.start-steps-mini {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.mini-step {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.mini-step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.start-secondary-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.start-card-sm {
  padding: 1.5rem 1.8rem;
}

.start-card-sm h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.start-card-sm p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.section-final-cta {
  background: var(--bg-primary);
  overflow: hidden;
}

.section-final-cta h2 {
  margin-bottom: 1rem;
}

.section-final-cta .btn {
  margin-top: 0.5rem;
}

.cta-footnote {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.cta-alt {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.text-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--duration-fast) ease;
}

.text-link:hover {
  color: var(--text-primary);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand img {
  width: 180px;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin: 0;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.3rem;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--duration-fast) ease;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  padding-top: 0.2rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: background var(--duration-fast) ease,
    color var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-faint);
  transition: color var(--duration-fast) ease;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

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

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}

/* =========================================================
   RESPONSIVE — TABLET (≤1100px)
   ========================================================= */
@media (max-width: 1100px) {
  .intel-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gear-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-grid img {
    flex: 0 0 calc((100% - 3 * 0.6rem) / 4);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-3 {
    grid-template-columns: 1fr;
  }

  .lead-magnet-card {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
  }

  .start-steps-mini {
    flex-direction: column;
    gap: 0.6rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-block {
    flex: 0 0 calc(50% - 1rem);
  }

  .fiverr-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer-legal {
    justify-content: center;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  .main-nav,
  .btn-header {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    width: 190px;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-content {
    padding-top: 5.5rem;
  }

  .gear-cards,
  .fit-grid,
  .founder-wrap,
  .video-testimonials {
    grid-template-columns: 1fr;
  }

  .founder-wrap {
    gap: 2rem;
  }

  .brand-grid img {
    flex: 0 0 calc((100% - 2 * 0.6rem) / 3);
  }

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

  .start-secondary-options {
    grid-template-columns: 1fr;
  }

  .start-card {
    padding: 1.5rem;
  }

  .stats-grid {
    gap: 1.2rem;
  }

  .stat-block {
    flex: 0 0 calc(50% - 0.6rem);
  }

  .fiverr-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-desc {
    display: none;
  }
}

/* =========================================================
   RESPONSIVE — SMALL PHONE (≤480px)
   ========================================================= */
@media (max-width: 480px) {
  .container {
    width: 90%;
  }

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

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

  .brand-grid img {
    flex: 0 0 calc((100% - 2 * 0.6rem) / 3);
  }

  .philosophy-quote {
    padding: 1.2rem 1.4rem;
  }

  .fiverr-testimonials {
    grid-template-columns: 1fr;
  }
}

/* === Scroll margin for anchor links under fixed header === */
[id] {
  scroll-margin-top: 90px;
}
