/* ============================================================
   ALIGNED PROFIT — Global Stylesheet
   Dark & Professional: Black + Red + Silver — Inter
   ============================================================ */

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

:root {
  --bg-primary:      #000000;
  --bg-secondary:    #0A0A0A;
  --bg-card:         #111111;
  --bg-card-hover:   #1A1A1A;
  --accent-gold:     #B8B8B8;
  --accent-gold-lt:  #D4D4D4;
  --accent-gold-dk:  #888888;
  --accent-red:      #E10600;
  --accent-red-lt:   #FF3B38;
  --text-primary:    #FFFFFF;
  --text-secondary:  #C0C0C0;
  --text-muted:      #808080;
  --border:          rgba(192,192,192,.15);
  --border-strong:   rgba(192,192,192,.35);
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --shadow-card:     0 4px 32px rgba(0,0,0,.65);
  --transition:      .25s ease;
  --nav-height:      72px;
  --max-w:           1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold-lt); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.8; }

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.85;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: .75rem;
  display: block;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.centered .section-label { justify-content: center; }

/* ---------- DIVIDER ---------- */
.gold-rule {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-lt));
  border-radius: 3px;
  margin: 1.25rem 0 2rem;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .02em;
}
.nav__logo-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: .02em;
  padding: .25rem 0;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--text-primary); }
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  background: transparent;
  border: 1.5px solid var(--accent-red);
  color: var(--accent-red) !important;
  padding: .5rem 1.25rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--accent-red) !important;
  color: #FFFFFF !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-red);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--accent-red-lt);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225,6,0,.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-gold);
  padding: .875rem 0;
}
.btn-ghost:hover { color: var(--accent-gold-lt); }
.btn-ghost::after { content: ' →'; }

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(180,180,180,.12);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

/* ---------- GRID ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---------- HERO ---------- */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 100px;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(180,180,180,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(0,0,0,.8) 0%, transparent 60%),
    var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180,180,180,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,180,180,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(180,180,180,.1);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero__title span { color: var(--accent-gold); }

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.85;
  max-width: 540px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.hero__stat-num span { color: var(--accent-gold); }
.hero__stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* Hero card (right column) */
.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.hero__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hero__card-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bg-primary);
  font-weight: 700;
}
.hero__card-title { font-size: .95rem; font-weight: 600; color: var(--text-primary); }
.hero__card-sub { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

.pipeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: .6rem;
  background: rgba(180,180,180,.04);
  border: 1px solid var(--border);
}
.pipeline-item-left { display: flex; align-items: center; gap: .85rem; }
.pipeline-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green  { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,.4); }
.dot-gold   { background: var(--accent-gold); box-shadow: 0 0 6px rgba(180,180,180,.4); }
.dot-blue   { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,.4); }
.dot-purple { background: #c084fc; box-shadow: 0 0 6px rgba(192,132,252,.4); }

.pipeline-item-name { font-size: .85rem; font-weight: 500; color: var(--text-primary); }
.pipeline-item-industry { font-size: .72rem; color: var(--text-muted); margin-top: 1px; }
.pipeline-item-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
}
.badge-qualified { background: rgba(74,222,128,.12); color: #4ade80; }
.badge-engaged  { background: rgba(180,180,180,.12); color: var(--accent-gold); }
.badge-mapped   { background: rgba(96,165,250,.12); color: #60a5fa; }
.badge-ready    { background: rgba(192,132,252,.12); color: #c084fc; }

/* ---------- TICKER / MARQUEE ---------- */
.marquee-section {
  padding: 24px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.marquee-item span { color: var(--accent-gold); }

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

/* ---------- PAIN POINTS ---------- */
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pain-card:hover {
  border-color: rgba(180,180,180,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.pain-card__num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pain-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .6rem;
  font-family: 'Inter', sans-serif;
}
.pain-card__desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.75; }
.pain-card__solution {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--accent-gold);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.pain-card__solution::before { content: '→'; flex-shrink: 0; }

/* ---------- PERSONAS ---------- */
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}
.persona-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.persona-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.persona-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .35rem;
  font-family: 'Inter', sans-serif;
}
.persona-subtitle {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.persona-hook {
  font-size: .85rem;
  color: var(--accent-gold);
  font-style: italic;
  border-left: 2px solid var(--accent-gold);
  padding-left: .75rem;
  line-height: 1.6;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 56px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
}
.process-step + .process-step { margin-top: 32px; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(180,180,180,.1);
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content { padding-top: .75rem; }
.step-content h4 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: .4rem; }
.step-content p { font-size: .875rem; }

/* ---------- PRICING TABLE ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pricing-card.featured {
  border-color: var(--accent-red);
  background: linear-gradient(160deg, #130000, var(--bg-card));
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent-red);
  color: #FFFFFF;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.pricing-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: .5rem;
}
.pricing-card__price sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--text-secondary);
}
.pricing-card__price span { font-size: 1.1rem; color: var(--text-secondary); font-family: 'Inter', sans-serif; font-weight: 400; }
.pricing-card__desc {
  font-size: .85rem;
  color: var(--text-secondary);
  margin: .75rem 0 1.75rem;
  min-height: 3.5em;
  line-height: 1.65;
}

.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text-secondary);
  margin-bottom: .75rem;
}
.pricing-feature::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- ADDONS ---------- */
.addon-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.addon-table th {
  background: var(--bg-secondary);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.addon-table td {
  padding: 1.1rem 1.5rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.65;
}
.addon-table tr:last-child td { border-bottom: none; }
.addon-table tr:hover td { background: rgba(180,180,180,.025); }
.addon-price { color: var(--accent-gold); font-weight: 600; white-space: nowrap; }

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-primary);
  gap: 1rem;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(180,180,180,.1);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer p {
  font-size: .875rem;
  line-height: 1.8;
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- CONTACT FORM ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-secondary);
}
.form-label span { color: var(--accent-gold); }

.form-input, .form-select, .form-textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  padding: .85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(180,180,180,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg-secondary); }

.form-textarea { resize: vertical; min-height: 120px; }

/* ---------- COMPARISON TABLE ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table th {
  background: var(--bg-secondary);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child { min-width: 160px; }
.compare-table td {
  padding: 1rem 1.25rem;
  font-size: .85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.65;
  color: var(--text-secondary);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(180,180,180,.02); }
.compare-table td:first-child { font-weight: 600; color: var(--text-primary); }
.compare-table .highlight-row td { background: rgba(180,180,180,.04); }
.compare-table .highlight-row td:first-child { color: var(--accent-gold); }

/* ---------- TESTIMONIAL / QUOTE ---------- */
.quote-block {
  border-left: 3px solid var(--accent-gold);
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}
.quote-block p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.footer__brand-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}
.footer__desc { font-size: .85rem; line-height: 1.75; color: var(--text-muted); max-width: 280px; }

.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { font-size: .875rem; color: var(--text-secondary); }
.footer__links a:hover { color: var(--accent-gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: .8rem; color: var(--text-muted); }

/* ---------- HIGHLIGHT / CALLOUT ---------- */
.callout {
  background: rgba(180,180,180,.08);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 2.5rem 3rem;
  text-align: center;
}

/* ---------- BADGE TAGS ---------- */
.tag {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: rgba(180,180,180,.1);
  color: var(--accent-gold);
  border: 1px solid var(--border);
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(180,180,180,.06) 0%, transparent 60%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .lead { margin: 1.25rem auto 0; text-align: center; }

/* ---------- SEPARATOR ---------- */
.sep { height: 1px; background: var(--border); margin: 0; }

/* ---------- UTILITY ---------- */
.text-gold    { color: var(--accent-gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.mt-1  { margin-top:  .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom:  .5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.flex  { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ---------- MOBILE NAV OVERLAY ---------- */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: rgba(0,0,0,.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 99;
  border-top: 1px solid var(--border);
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: .03em;
}
.nav__mobile-menu a:hover { color: var(--accent-gold); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding-bottom: 64px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__desc { max-width: 100%; }
  .addon-table, .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .process-step { grid-template-columns: 60px 1fr; }
  .callout { padding: 2rem 1.5rem; }
  .hero__stats { gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   WHITE SECTIONS + IMAGERY ADDITIONS
   ============================================================ */

/* ---- Light / white sections ---- */
.section-light {
  --bg-primary:      #FFFFFF;
  --bg-secondary:    #F4F4F4;
  --bg-card:         #F0F0F0;
  --bg-card-hover:   #E8E8E8;
  --text-primary:    #000000;
  --text-secondary:  #444444;
  --text-muted:      #888888;
  --border:          rgba(0,0,0,.10);
  --border-strong:   rgba(0,0,0,.22);
  background: #FFFFFF;
  color: #000000;
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: #000000; }
.section-light p,
.section-light .lead { color: #444444; }
.section-light .gold-rule {
  background: linear-gradient(90deg, #aaa, #ccc);
}
.section-light .section-label { color: #777; }
.section-light .section-label::before { background: #999; }
.section-light .pricing-feature::before { color: var(--accent-red); }
.section-light .pricing-feature { color: #333; }
/* ---- Inline image card ---- */
.img-card {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: grayscale(100%) contrast(1.05);
  display: block;
}

/* ---- Hero with bg image ---- */
.hero-img-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(.18);
  z-index: 0;
}
.hero { position: relative; }
.hero .container { position: relative; z-index: 1; }

/* ---- White stat strip ---- */
.stat-strip {
  background: #FFFFFF;
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-strip__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(0,0,0,.1);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
}
.stat-strip__num span { color: var(--accent-gold); }
.stat-strip__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-top: .4rem;
}

/* ── Image Banner Wrap ──────────────────────────────────────────────── */
.img-banner-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.img-banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(.48);
}
.img-banner-wrap .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0,0,0,.28);
}
.img-banner-wrap .overlay blockquote {
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 0 1.1rem;
  letter-spacing: -.015em;
}
.img-banner-wrap .overlay span {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

@media (max-width: 768px) {
  .img-banner-wrap { height: 280px; }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.1); }
}

/* ── Logo Icon Spin ─────────────────────────────────────────────────── */
@keyframes logo-spin {
  0%   { transform: rotate(0deg) scale(1); }
  30%  { transform: rotate(200deg) scale(1.15); }
  70%  { transform: rotate(340deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}
.nav__logo-icon {
  transition: filter var(--transition);
}
.nav__logo-icon:hover {
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(225,6,0,.5));
}
.nav__logo-icon.spinning {
  animation: logo-spin 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}



/* ══════════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE STYLES
   ══════════════════════════════════════════════════════════════════════ */

/* ── Tablet: 1024px ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }

  /* Collapse any inline 3- or 4-col grids */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* About founder – narrow photo col */
  [style*="grid-template-columns:220px"],
  [style*="grid-template-columns: 220px"] {
    grid-template-columns: 180px 1fr !important;
    gap: 40px !important;
  }
}

/* ── Mobile: 768px ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* === GLOBAL === */
  .container { padding: 0 1.1rem; }
  section { padding: 56px 0 !important; }
  .page-header { padding: 100px 0 48px !important; }

  /* Typography scale-down */
  h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.5rem !important; line-height: 1.25 !important; }
  h3 { font-size: 1.15rem !important; }
  .page-header h1 { font-size: 1.9rem !important; }
  .lead { font-size: .97rem !important; }
  .hero__badge { font-size: .72rem; }

  /* === NAV === */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* === HERO === */
  .hero__inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .hero__card  { display: none; }
  .hero h1 { font-size: 2rem !important; }

  /* === STAT STRIP === */
  .stat-strip__grid { grid-template-columns: repeat(2,1fr) !important; }
  .stat-strip__item { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,.1); }
  .stat-strip__num  { font-size: 1.6rem !important; }

  /* === ALL INLINE 2-COL GRIDS → 1 COL === */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:2fr 3fr"],
  [style*="grid-template-columns: 2fr 3fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns:220px 1fr"],
  [style*="grid-template-columns: 220px 1fr"],
  [style*="grid-template-columns:200px 1fr"],
  [style*="grid-template-columns: 200px 1fr"],
  [style*="grid-template-columns:auto 1fr"],
  [style*="grid-template-columns: auto 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* === ALL INLINE 3- AND 4-COL GRIDS → 1 COL === */
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  /* Pairs of equal cards: 2-up looks fine on mobile */
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-3,
  .grid-4 { grid-template-columns: 1fr !important; }

  /* Reset order so content appears before visual on mobile */
  [style*="order:2"], [style*="order: 2"] { order: initial !important; }
  [style*="order:1"], [style*="order: 1"] { order: initial !important; }

  /* Reduce large gaps from inline styles */
  [style*="gap:72px"], [style*="gap: 72px"],
  [style*="gap:64px"], [style*="gap: 64px"],
  [style*="gap:56px"], [style*="gap: 56px"],
  [style*="gap:80px"], [style*="gap: 80px"] {
    gap: 28px !important;
  }

  /* === ABOUT FOUNDER PHOTO === */
  /* Circle photo centres itself in single-col layout */
  [style*="grid-template-columns:220px"] > div:first-child,
  [style*="grid-template-columns: 220px"] > div:first-child {
    align-items: center;
  }

  /* === IMAGE BANNERS === */
  .img-banner-wrap { height: 240px !important; }
  .img-banner-wrap .overlay { padding: 1.5rem 1rem; }
  .img-banner-wrap .overlay blockquote { font-size: 1.05rem !important; }

  /* === PAGE HEADER === */
  .page-header .lead { font-size: .92rem; max-width: 100%; }

  /* === CALLOUT / CTA === */
  .callout { padding: 2rem 1.25rem !important; }

  /* === FOOTER === */
  .footer__grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer__bottom { flex-direction: column; text-align: center; gap: .5rem; }

  /* === TABLES (pricing compare) === */
  .addon-table, .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  /* === PROCESS STEPS === */
  .process-step { grid-template-columns: 44px 1fr; gap: 12px; }

  /* === PIPELINE DASHBOARD STAGES (4-col) === */
  .stat-strip__grid,
  [style*="grid-template-columns:1fr 1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    grid-template-columns: repeat(2,1fr) !important;
  }

  /* === PERSONA CARDS (4-col) === */
  .persona-grid { grid-template-columns: 1fr !important; }

  /* === PRICING CARDS === */
  .pricing-grid { grid-template-columns: 1fr !important; }

  /* === FORM === */
  .form-grid { grid-template-columns: 1fr !important; }
  .form-group.full { grid-column: 1 !important; }

  /* === BUTTONS === */
  .hero__actions { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .btn { width: 100%; text-align: center; justify-content: center; }

  /* === NAV MOBILE MENU === */
  .nav__mobile-menu a { font-size: 1rem; padding: .9rem 1.5rem; }

  /* === TAGS ROW === */
  [style*="display:flex"][style*="flex-wrap:wrap"] { gap: .5rem !important; }

  /* === MAX-WIDTH OVERRIDES for centered prose === */
  [style*="max-width:760px"],
  [style*="max-width: 760px"],
  [style*="max-width:860px"],
  [style*="max-width: 860px"],
  [style*="max-width:720px"],
  [style*="max-width: 720px"] {
    max-width: 100% !important;
  }
}

/* ── Small mobile: 480px ──────────────────────────────────────────── */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.35rem !important; }
  .stat-strip__num  { font-size: 1.4rem !important; }
  .stat-strip__grid { grid-template-columns: repeat(2,1fr) !important; }
  .img-banner-wrap  { height: 200px !important; }
  .container { padding: 0 1rem; }
  .nav__logo-icon { height: 36px !important; }
  .btn { font-size: .85rem; padding: .75rem 1.25rem; }
}
