/* === INDEX PAGE — High-ticket fractional COO === */

/* HERO (dark) */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 67, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero *:focus-visible { outline-color: #ffffff; }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.8rem;
  max-width: 620px;
  position: relative;
}
.hero .subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 1rem;
  line-height: 1.75;
  position: relative;
}
.hero .subtitle + .subtitle { margin-bottom: 2.5rem; }
.hero .subtitle-strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; font-weight: 600;
  color: var(--white); background: var(--accent);
  text-decoration: none; padding: 0.85rem 2rem;
  border-radius: var(--radius); transition: background 0.15s, transform 0.1s;
  position: relative;
}
.hero-cta:hover { background: var(--accent-hover); }
.hero-cta:active { transform: scale(0.98); }
.hero-cta svg { width: 16px; height: 16px; }
.hero-sub {
  margin-top: 1rem; font-size: 0.82rem;
  color: rgba(255,255,255,0.48); position: relative;
}

/* PAIN SECTION */
.pain-section { padding: 5.5rem 0; background: var(--bg); }
.pain-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 0.6rem; line-height: 1.2;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}
.pain-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.pain-card .quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--text); display: block;
  margin-bottom: 0.5rem; line-height: 1.35;
}
.pain-card .explanation {
  font-size: 0.85rem; color: var(--text-mid);
  line-height: 1.6; margin: 0;
}

/* POSITIONING */
.positioning {
  background: var(--bg-warm);
  padding: 5.5rem 0;
}
.pos-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.positioning .statement {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem; font-weight: 400;
  line-height: 1.35; color: var(--text);
  margin-bottom: 1.5rem;
}
.positioning p {
  color: var(--text-mid);
  font-size: 0.95rem; line-height: 1.75;
  margin-bottom: 1rem;
}
.positioning .stat-line {
  color: var(--text); font-weight: 600;
  font-size: 0.95rem;
}
.positioning .personal {
  color: var(--text-light);
  font-size: 0.88rem; font-style: italic;
  margin-top: 0.3rem;
}
.pos-sidebar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.pos-sidebar .sidebar-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.pos-sidebar ul { list-style: none; }
.pos-sidebar ul li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 0.6rem 0; line-height: 1.5;
  border-bottom: 1px solid var(--border-light);
}
.pos-sidebar ul li:last-child { border-bottom: none; }
.mid-cta { margin-top: 1.8rem; }
.mid-cta a {
  color: var(--accent); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border-bottom: 1.5px solid var(--accent-light);
  padding: 0.5rem 0; display: inline-block; transition: border-color 0.15s;
}
.mid-cta a:hover { border-color: var(--accent); }

/* HOW IT WORKS */
.how-section { background: var(--bg); padding: 5.5rem 0; }
.how-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.ladder { position: relative; margin-top: 0.5rem; }
.ladder::before {
  content: ''; position: absolute;
  left: 23px; top: 28px; bottom: 28px;
  width: 2px; background: var(--border);
}
.ladder-step {
  display: flex; gap: 2rem;
  margin-bottom: 2rem; position: relative;
}
.ladder-step:last-child { margin-bottom: 0; }
.ladder-marker {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--white); border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 700;
  color: var(--text-light); position: relative; z-index: 1;
}
.ladder-step.active .ladder-marker {
  background: var(--accent); border-color: var(--accent); color: var(--white);
}
.ladder-content {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 1.6rem 1.8rem;
  flex: 1; box-shadow: var(--shadow);
}
.ladder-step.active .ladder-content {
  border-color: var(--accent); border-width: 1.5px;
  box-shadow: 0 0 0 3px var(--accent-light), var(--shadow);
}
.ladder-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.25rem;
}
.ladder-step.active .ladder-label { color: var(--accent); }
.ladder-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; font-weight: 400; margin-bottom: 0.15rem;
}
.ladder-price {
  font-size: 0.88rem; font-weight: 700;
  color: var(--accent); margin-bottom: 0.7rem;
}
.ladder-step:first-child .ladder-price { color: var(--text-light); font-weight: 600; }
.ladder-content p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin: 0;
}
.ladder-content p + p { margin-top: 0.5rem; }
.ladder-cta { margin-top: 1rem; }
.ladder-cta-link {
  color: var(--accent); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; padding: 0.5rem 0; display: inline-block;
  transition: border-color 0.15s;
}
.ladder-cta-link:hover { text-decoration: underline; }
.ladder-cta-btn {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  color: var(--white); background: var(--accent);
  text-decoration: none; padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm); transition: background 0.15s;
}
.ladder-cta-btn:hover { background: var(--accent-hover); }
.diy-callout {
  margin-top: 2rem; font-size: 0.9rem; color: var(--text-mid);
  text-align: center;
}
.diy-callout a {
  color: var(--accent); font-weight: 600;
  text-decoration: none; border-bottom: 1.5px solid var(--accent-light);
  padding: 0.5rem 0; display: inline-block; transition: border-color 0.15s;
}
.diy-callout a:hover { border-color: var(--accent); }

/* FIT SECTION */
.fit-section { background: var(--bg-warm); padding: 5.5rem 0; }
.fit-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fit-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
}
.fit-card h3 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1rem;
  padding-bottom: 0.7rem; border-bottom: 2px solid var(--border-light);
}
.fit-card.yes h3 { color: #2a7d5f; border-color: #2a7d5f; }
.fit-card.no h3 { color: var(--text-light); border-color: var(--border); }
.fit-card ul { list-style: none; }
.fit-card ul li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 0.5rem 0; line-height: 1.5;
}
.fit-card ul li + li { border-top: 1px solid var(--border-light); }

/* RESPONSIVE — INDEX */
@media (max-width: 700px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 0.95rem; }
  .hero-cta { padding: 0.85rem 1.6rem; font-size: 0.9rem; }
  .pain-section h2, .how-section h2, .fit-section h2 { font-size: 1.6rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .pos-layout { grid-template-columns: 1fr; gap: 2rem; }
  .positioning .statement { font-size: 1.3rem; }
  .fit-grid { grid-template-columns: 1fr; }
  .pain-section, .how-section, .fit-section, .positioning { padding: 3.5rem 0; }
  .ladder-step { gap: 1rem; }
  .ladder::before { left: 17px; }
  .ladder-marker { width: 36px; height: 36px; font-size: 0.65rem; }
  .ladder-content { padding: 1.2rem 1.2rem; }
  .ladder-content h3 { font-size: 1.05rem; }
  .ladder-cta-btn { padding: 0.65rem 1.2rem; font-size: 0.82rem; }
  .pain-card { padding: 1.2rem 1.3rem; }
  .pain-card .quote { font-size: 0.95rem; }
  .pos-sidebar { padding: 1.5rem; }
}
