/*
Theme Name:   ideaBoss v2 — Light Theme
Theme URI:    https://ideaboss.io
Description:  v2 light-theme child theme for ideaBoss. Replaces all parent CSS, JS, nav, footer, and templates.
Author:       Cox Group
Author URI:   https://coxgrouponline.com
Template:     ideaboss-theme
Version:      2.0.0
License:      Proprietary
License URI:  https://ideaboss.io
Text Domain:  ideaboss-v2
*/

/* ============================================================
   ideaBoss® — styles.css (v2 Light Theme)
   Brand Tokens + Full Site Styles
   ideaboss.io | Cox Group | Est. 1999
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  --color-bg:          #FFFFFF;
  --color-surface:     #F5F5F5;
  --color-surface-2:   #EBEBEB;
  --color-border:      #E0E0E0;
  --color-border-dark: #CCCCCC;
  --color-text:        #1A1A1A;
  --color-text-muted:  #555555;
  --color-text-dim:    #888888;
  --color-red:         #CC1111;
  --color-red-deep:    #8B0000;
  --color-red-bright:  #E01515;
  --color-red-soft:    rgba(204,17,17,0.06);
  --color-chrome:      #4A5560;
  --color-white:       #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --section-py:    clamp(72px, 9vw, 128px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 60px);

  --transition:      0.28s ease;
  --transition-slow: 0.55s ease;
  --nav-height:      76px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text);
}
h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
h1 { font-size: clamp(48px, 8vw, 100px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(26px, 3.5vw, 48px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  display: block;
  margin-bottom: 18px;
}

.accent { color: var(--color-red); }

/* ideaBoss wordmark styling */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
section { padding: var(--section-py) 0; }
.section-white { background: var(--color-bg); }
.section-silver {
  background: var(--color-surface);
  position: relative;
}
/* Ghosted background element for silver sections */
.section-ghosted::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 20% 30%, var(--color-red) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--color-red) 0%, transparent 50%);
  pointer-events: none;
}
.section-ghosted-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 80px,
    var(--color-red) 80px,
    var(--color-red) 81px
  );
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--color-red-bright);
  border-color: var(--color-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,17,17,0.3);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-border-dark);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #FFFFFF;
}
.btn-outline-white:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links > a,
.nav-links > .nav-dropdown > .nav-dropdown-trigger {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-links > .nav-dropdown:hover > .nav-dropdown-trigger {
  color: #FFFFFF;
}
.nav-links .nav-cta {
  background: var(--color-red);
  color: #FFFFFF !important;
  padding: 10px 24px;
  border: 1px solid var(--color-red);
  font-size: 14px;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--color-red-bright);
  border-color: var(--color-red-bright);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
}
.nav-dropdown-trigger .arrow {
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-trigger .arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 12px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  border-radius: 3px;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--color-red-soft);
  color: var(--color-red);
}
.nav-dropdown-menu .dropdown-price {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-dim);
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #FFFFFF;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--color-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(28px, 6vw, 48px);
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--color-red); }
.mobile-nav .mobile-nav-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.mobile-nav .mobile-nav-sub a {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--color-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(204,17,17,0.06) 0%, rgba(204,17,17,0.02) 40%, transparent 70%);
  pointer-events: none;
}
.hero-streaks {
  position: absolute;
  inset: -100%;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 120px,
    rgba(204,17,17,0.018) 120px,
    rgba(204,17,17,0.018) 121px
  );
  animation: heroStreaks 25s linear infinite;
  pointer-events: none;
}
@keyframes heroStreaks {
  from { transform: translate(0,0); }
  to   { transform: translate(171px, 171px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-pad);
  max-width: 1100px;
}
.hero-logo {
  width: clamp(140px, 18vw, 240px);
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.1s forwards;
}
.hero h1 {
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
  margin-bottom: 24px;
  line-height: 0.95;
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll-hint span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--color-red) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-stat {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--color-border);
}
.proof-stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(48px, 6vw, 84px);
  color: var(--color-red);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 10px;
  display: block;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 620px; }

.problem-rows { display: grid; gap: 0; }
.problem-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.problem-row:first-child { border-top: 1px solid var(--color-border); }
.problem-row.visible { opacity: 1; transform: translateY(0); }

.problem-left { text-align: right; }
.problem-left strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--color-text);
  margin-bottom: 4px;
}
.problem-left p { font-size: 16px; margin: 0; line-height: 1.5; }

.problem-arrow {
  width: 48px;
  height: 48px;
  background: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 3px;
}
.problem-arrow svg { width: 20px; height: 20px; fill: white; }

.problem-right { text-align: left; }
.problem-right strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--color-red);
  margin-bottom: 4px;
}
.problem-right p { font-size: 16px; margin: 0; line-height: 1.5; }

/* ============================================================
   SYSTEM / METHOD SECTION
   ============================================================ */
.system-section {
  text-align: center;
}
.system-mantra {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-top: 20px;
  display: block;
}
.system-flow {
  display: flex;
  align-items: stretch;
  margin: 60px 0 48px;
  gap: 2px;
}
.system-step {
  flex: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 40px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.system-step:hover {
  border-color: var(--color-red);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(204,17,17,0.1);
  z-index: 1;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 64px;
  color: rgba(204,17,17,0.1);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.system-step:hover .step-num { color: rgba(204,17,17,0.3); }
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--color-red);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.system-step p { font-size: 17px; line-height: 1.65; margin: 0; }

/* ============================================================
   SERVICES / WHAT WE DO CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 0 0 1px var(--color-red) inset;
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-red);
  margin-bottom: 24px;
}
.service-card h4 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--color-text);
}
.service-card p { font-size: 17px; margin: 0; }
.services-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   PRODUCT CARDS (homepage overview)
   ============================================================ */
.products-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.product-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 40px 36px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.product-card .product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}
.product-card .product-tagline {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  flex: 1;
}
.product-card .product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--color-red);
  margin-bottom: 20px;
}
.product-card .btn { font-size: 13px; padding: 12px 24px; }

/* Lead magnet card (Ghost Revenue Report) */
.lead-magnet-card {
  background: linear-gradient(135deg, var(--color-red-deep) 0%, var(--color-red) 100%);
  border: none;
  padding: 48px 44px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.lead-magnet-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 80px,
    rgba(255,255,255,0.03) 80px, rgba(255,255,255,0.03) 81px
  );
  pointer-events: none;
}
.lead-magnet-card .product-name,
.lead-magnet-card .product-tagline,
.lead-magnet-card .product-price { color: #FFFFFF; position: relative; }
.lead-magnet-card .product-price { opacity: 0.8; }
.lead-magnet-card .btn {
  background: #FFFFFF;
  color: var(--color-red);
  border-color: #FFFFFF;
  position: relative;
}
.lead-magnet-card .btn:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
}

/* ============================================================
   PRICING TIERS (product pages)
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--color-red);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(204,17,17,0.1);
}
.pricing-card.recommended {
  border-color: var(--color-red);
  box-shadow: 0 0 0 1px var(--color-red);
}
.pricing-card.recommended::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--color-red);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px;
  text-align: center;
}
.pricing-card.recommended { padding-top: 64px; }
.pricing-tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 15px;
  color: var(--color-text-dim);
  margin-bottom: 24px;
}
.pricing-features {
  text-align: left;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 16px;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  opacity: 0.5;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   CHECKLIST (product pages — "What They Get")
   ============================================================ */
.checklist {
  margin: 36px 0;
}
.checklist li {
  font-size: 18px;
  color: var(--color-text-muted);
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================================
   GUARANTEE BOX
   ============================================================ */
.guarantee-box {
  background: var(--color-red-soft);
  border: 1px solid rgba(204,17,17,0.15);
  border-left: 4px solid var(--color-red);
  padding: 32px 36px;
  margin: 36px 0;
  border-radius: 2px;
}
.guarantee-box h4 {
  color: var(--color-red);
  margin-bottom: 8px;
  font-size: 18px;
}
.guarantee-box p {
  font-size: 17px;
  color: var(--color-text);
  margin: 0;
}

/* ============================================================
   AUTHORITY QUOTE (BossClaw)
   ============================================================ */
.authority-quote {
  border-left: 4px solid var(--color-red);
  padding: 24px 0 24px 32px;
  margin: 0 0 32px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--color-text);
  line-height: 1.4;
}
.authority-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--color-chrome);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.faq-a {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 700px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 52px 0 40px;
}
.industry-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: var(--transition);
  cursor: default;
}
.industry-tag:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: var(--color-red-soft);
}
.industries-sub { max-width: 620px; margin: 0 auto; font-size: 18px; }

/* ============================================================
   YOUTUBE SECTION
   ============================================================ */
.youtube-section h2 { margin-bottom: 12px; }
.youtube-section > .container > p { margin-bottom: 48px; max-width: 560px; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 28px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.video-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.video-placeholder {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 28px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 3px;
}
.video-placeholder-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(204,17,17,0.12) 0%, transparent 65%),
    var(--color-surface);
  transition: background var(--transition-slow);
}
.video-placeholder:hover .video-placeholder-bg {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(204,17,17,0.2) 0%, transparent 65%),
    var(--color-surface);
}
.video-placeholder-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  padding: 32px;
}
.video-play-btn {
  width: 72px;
  height: 72px;
  color: var(--color-red);
  transition: transform var(--transition), color var(--transition);
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  color: var(--color-red-bright);
}
.video-placeholder-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}
.video-placeholder-handle {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red);
  margin: 0;
  text-align: center;
}
.video-thumb {
  aspect-ratio: 16/9;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
  border-radius: 3px;
}
.video-thumb:hover { border-color: var(--color-red); }
.video-thumb span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

/* ============================================================
   LEAD CAPTURE
   ============================================================ */
.lead-section {
  text-align: center;
}
.lead-section h2 { margin-bottom: 12px; }
.lead-section > .container > p { margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
.lead-form {
  max-width: 520px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 17px;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 2px;
}
.form-input:focus, .form-textarea:focus { border-color: var(--color-red); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-text-dim); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 17px;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-select:focus { border-color: var(--color-red); }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 4px;
}
.form-privacy {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-top: 16px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.blog-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  border-radius: 3px;
}
.blog-card:hover {
  border-color: var(--color-red);
  transform: translateY(-5px);
}
.blog-img {
  aspect-ratio: 16/9;
  background: var(--color-surface);
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 28px; }
.blog-cat {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  display: block;
  margin-bottom: 10px;
}
.blog-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 19px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 12px;
}
.blog-body p { font-size: 16px; margin-bottom: 18px; color: var(--color-text-muted); }
.read-more {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-red);
  transition: letter-spacing var(--transition);
}
.read-more:hover { letter-spacing: 0.25em; }
.blog-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  background: var(--color-bg);
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -50deg, transparent, transparent 80px,
    rgba(204,17,17,0.015) 80px, rgba(204,17,17,0.015) 81px
  );
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 680px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-red-deep) 0%, var(--color-red) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 80px,
    rgba(255,255,255,0.03) 80px, rgba(255,255,255,0.03) 81px
  );
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; position: relative; font-size: clamp(18px, 2vw, 22px); }
.cta-banner .btn-outline-white { position: relative; }
.cta-banner .btn-primary {
  background: #FFFFFF;
  color: var(--color-red);
  border-color: #FFFFFF;
  position: relative;
}
.cta-banner .btn-primary:hover {
  background: var(--color-surface);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   METHODOLOGY (what-we-do / about)
   ============================================================ */
.method-steps { display: grid; gap: 2px; margin-top: 60px; }
.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 40px;
  transition: border-color var(--transition);
}
.method-step:hover { border-color: var(--color-red); }
.method-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 72px;
  color: rgba(204,17,17,0.12);
  line-height: 0.9;
  transition: color var(--transition);
}
.method-step:hover .method-num { color: rgba(204,17,17,0.3); }
.method-body h3 { font-size: clamp(22px, 3vw, 36px); color: var(--color-text); margin-bottom: 12px; }
.method-body p { font-size: 18px; margin: 0; }

/* ============================================================
   PILLARS (what-we-do)
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.pillar-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 36px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.pillar-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
}
.pillar-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 48px;
  color: rgba(204,17,17,0.15);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.pillar-card h4 { font-size: 16px; margin-bottom: 14px; color: var(--color-red); }
.pillar-card p { font-size: 16px; line-height: 1.6; margin: 0; }

/* ============================================================
   SOLUTIONS (solutions page)
   ============================================================ */
.solutions-category { margin-bottom: 80px; }
.solutions-category:last-child { margin-bottom: 0; }
.cat-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.cat-header h3 { margin-bottom: 0; }
.cat-sub {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: normal;
}
.solutions-list { display: grid; gap: 2px; }
.solution-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 28px 36px;
  transition: border-color var(--transition);
}
.solution-item:hover { border-color: var(--color-red); }
.solution-info h4 { font-size: 20px; margin-bottom: 8px; color: var(--color-text); }
.solution-info p { font-size: 17px; margin: 0; }
.solution-cta { flex-shrink: 0; }

/* ============================================================
   RESULTS / CASE STUDIES
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.case-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 40px;
  transition: border-color var(--transition);
}
.case-card:hover { border-color: var(--color-red); }
.case-industry {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  display: block;
  margin-bottom: 16px;
}
.case-card h4 { font-size: 22px; margin-bottom: 16px; }
.case-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}
.case-text { font-size: 17px; margin-bottom: 20px; }
.case-outcome {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 17px;
  color: var(--color-chrome);
  font-weight: 500;
}

/* ============================================================
   INDUSTRIES ICON GRID (results page)
   ============================================================ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.ind-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.ind-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.ind-card-more {
  background: var(--color-red-soft);
  border-color: rgba(204,17,17,0.15);
}
.ind-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--color-red);
}
.ind-icon svg { width: 100%; height: 100%; }
.ind-card h4 {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 10px;
}
.ind-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: var(--color-text-muted);
}

/* ============================================================
   SHOP
   ============================================================ */
.shop-redirect {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-bg);
  padding-top: var(--nav-height);
}
.shop-cats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 52px;
  flex-wrap: wrap;
}
.shop-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-form-wrap h3 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 32px; }
.contact-info h3 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 32px; }
.contact-details { display: grid; gap: 24px; margin-bottom: 40px; }
.contact-detail .detail-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  display: block;
  margin-bottom: 6px;
}
.contact-detail p { font-size: 18px; color: var(--color-text); margin: 0; }
.contact-detail a { transition: color var(--transition); }
.contact-detail a:hover { color: var(--color-red); }

.contact-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition);
  border-radius: 2px;
}
.social-icon svg {
  width: 20px;
  height: 20px;
}
.social-icon:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: var(--color-red-soft);
}

.book-call-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 36px;
  margin-top: 48px;
  text-align: center;
  border-radius: 3px;
}
.book-call-box h4 { margin-bottom: 12px; font-size: 22px; }
.book-call-box p { font-size: 17px; margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding: 88px 0 0;
  color: #FFFFFF;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  object-fit: contain;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 16px; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,0.6); }
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 22px;
  display: block;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav-links a {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav-links a:hover { color: #FFFFFF; }
.footer-contact-info { display: grid; gap: 12px; }
.footer-contact-info p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.6);
}
.footer-contact-info a { color: rgba(255,255,255,0.6); }
.footer-contact-info a:hover { color: var(--color-red); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  border-radius: 2px;
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}
.footer-social a:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(204,17,17,0.1);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0;
  letter-spacing: 0.06em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   AFFILIATE PAGE
   ============================================================ */
.commission-table-wrap { overflow-x: auto; margin-top: 36px; }
.commission-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  min-width: 520px;
}
.commission-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 14px 16px;
  border-bottom: 2px solid var(--color-red);
  text-align: left;
}
.commission-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.commission-table tr:last-child td { border-bottom: none; }
.commission-table td:first-child { font-weight: 600; }

.affiliate-copy-block { margin-top: 32px; }
.affiliate-copy-block h4 { margin-bottom: 12px; }
.affiliate-copy-block div {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: 2px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  cursor: text;
  user-select: all;
  -webkit-user-select: all;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-stat:nth-child(2) { border-right: none; }
  .proof-stat:nth-child(3),
  .proof-stat:nth-child(4) { border-top: 1px solid var(--color-border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .products-overview { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: clamp(40px, 10vw, 64px); }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .video-thumbs { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .system-flow { flex-direction: column; gap: 2px; }
  .problem-row { grid-template-columns: 1fr; gap: 12px; }
  .problem-left { text-align: left; }
  .problem-arrow { width: 36px; height: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .commission-table { font-size: 15px; }
  .commission-table th, .commission-table td { padding: 10px 8px; }
  .method-step { grid-template-columns: 1fr; gap: 16px; }
  .method-num { font-size: 48px; }
  .solution-item { flex-direction: column; align-items: flex-start; }
  .cat-header { flex-direction: column; gap: 8px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  :root { --section-py: clamp(52px, 10vw, 80px); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-group { flex-direction: column; }
}

/* ============================================================
   OUR STORY PAGE
   ============================================================ */
.story-hero {
  padding: clamp(100px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  background: var(--color-bg);
}
.story-hero h1 { margin-bottom: 20px; }
.story-hero p {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
}

.story-text {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.story-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 24px;
  color: var(--color-text);
}
.story-text h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  margin-bottom: 16px;
  text-transform: none;
  font-style: italic;
  color: var(--color-red);
}
.story-text p {
  margin-bottom: 24px;
}

.pull-quote {
  border-left: 4px solid var(--color-red);
  padding: 28px 32px;
  margin: 48px 0;
  background: var(--color-red-soft);
  border-radius: 0 8px 8px 0;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
}
.pull-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  color: var(--color-text-muted);
}

.lineage-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 4px;
  margin: 40px 0;
  padding: 32px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
.lineage-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  white-space: nowrap;
}
.lineage-item.current {
  color: var(--color-red);
  font-weight: 800;
}
.lineage-arrow {
  color: var(--color-text-dim);
  font-size: 18px;
}

.trademark-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 40px;
  margin: 48px 0;
  max-width: 560px;
}
.trademark-card .tm-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}
.trademark-card .tm-logo {
  height: 48px;
  margin-bottom: 16px;
}
.trademark-card .tm-reg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 4px;
}
.trademark-card .tm-date {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.trademark-card .tm-class {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.trademark-card .tm-class strong {
  color: var(--color-text);
}
.trademark-card .tm-use {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.timeline-section { position: relative; }
.timeline-section .container { max-width: 960px; }
.timeline-section h2 {
  text-align: center;
  margin-bottom: 60px;
}
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border-dark);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-red);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-red);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.timeline-item:last-child { margin-bottom: 0; }

.cta-banner .closing-lines {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
  position: relative;
}
.cta-banner .closing-sub {
  font-size: clamp(17px, 1.8vw, 22px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  position: relative;
}

@media (max-width: 640px) {
  .lineage-row { flex-direction: column; gap: 6px; }
  .lineage-arrow { transform: rotate(90deg); }
  .trademark-card { padding: 28px 24px; }
  .timeline { padding-left: 32px; }
  .timeline-item { padding-left: 16px; }
  .timeline-item::before { left: -25px; }
}
