/* ============================================
   RoofingProfitCo — Main Stylesheet
   Bold, modern, high-converting
   ============================================ */

:root {
  --brand: #FF6B00;
  --brand-dark: #E55A00;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --mid: #333333;
  --border: #2A2A2A;
  --text: #E8E8E8;
  --text-muted: #888888;
  --text-dim: #555555;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 100px;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--brand); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .btn { color: var(--white); }

/* ---- HERO ---- */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(160deg, #0A0A0A 0%, #111111 60%, #1A0800 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 span { color: var(--brand); }

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-proof span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- PROBLEM ---- */
.problem {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.problem-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- SOLUTION ---- */
.solution h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 12px;
  max-width: 600px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 60px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.solution-item {
  display: flex;
  gap: 24px;
  padding: 40px;
  background: var(--dark-3);
  transition: background 0.2s;
}
.solution-item:hover { background: var(--dark-4); }

.solution-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 1px;
  min-width: 32px;
  margin-top: 3px;
}

.solution-item h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.solution-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.solution-cta { text-align: center; }

/* ---- PRICING TEASER ---- */
.pricing-teaser {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-card-featured {
  background: linear-gradient(135deg, #1A0800 0%, #1A1A1A 100%);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand);
}

.pricing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 100px;
}

.pricing-amounts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pricing-setup {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}
.pricing-setup span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

.pricing-divider {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dim);
}

.pricing-monthly {
  font-size: 52px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -2px;
}
.pricing-monthly span {
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card-featured p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ---- WHY ---- */
.why h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.why .section-sub {
  max-width: 640px;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-item {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--dark-3);
}

.why-item h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 96px 0;
  background: linear-gradient(135deg, #1A0800 0%, #0F0F0F 100%);
  border-top: 1px solid rgba(255,107,0,0.2);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(160deg, #0A0A0A 0%, #111111 100%);
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 640px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 560px;
  line-height: 1.7;
}

/* ---- SERVICES DETAIL ---- */
.services-detail {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.services-detail h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 60px;
}

.service-block {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.service-block:last-child { border-bottom: 1px solid var(--border); }

.service-block-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,107,0,0.2);
  min-width: 80px;
  line-height: 1;
  letter-spacing: -2px;
}

.service-block-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.service-block-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
}

.service-block-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-block-content ul li {
  color: var(--text-muted);
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}

.service-block-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 13px;
}

/* ---- PRICING MAIN ---- */
.pricing-main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.pricing-main-left {
  position: sticky;
  top: 88px;
  background: var(--dark-3);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.pricing-main-left::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--brand);
  border-radius: 3px 3px 0 0;
  margin: -48px -40px 40px;
}

.pricing-hero-amounts {
  margin: 24px 0 32px;
}

.pricing-big {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
}

.pricing-big .mo {
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-big-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.pricing-plus {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-dim);
  margin: 8px 0;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.5;
}

.pricing-main-right h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.included-list li {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.included-list li:first-child { border-top: 1px solid var(--border); }

.check {
  font-size: 18px;
  color: var(--brand);
  font-weight: 900;
  min-width: 24px;
  margin-top: 2px;
}

.included-list strong {
  display: block;
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}

.included-list p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CONTACT ---- */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.form-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

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

.form-disclaimer {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.contact-info-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expect-list li {
  display: flex;
  gap: 16px;
}

.expect-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.expect-list strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.expect-list p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-guarantee {
  text-align: center;
}

.guarantee-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-guarantee p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-direct {
  margin-top: 8px;
}

.contact-direct a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.contact-direct a:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--dark-2);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-inner p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin: 4px 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  color: var(--text-dim) !important;
  font-size: 13px !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .solution-grid { grid-template-columns: 1fr; }
  .pricing-main { grid-template-columns: 1fr; }
  .pricing-main-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .service-block { flex-direction: column; gap: 20px; }
  .service-block-num { font-size: 32px; }
}

@media (max-width: 640px) {
  .nav-links li:not(:last-child) { display: none; }
  .hero { padding: 80px 0 64px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card-featured { padding: 40px 24px; }
  .section { padding: 64px 0; }
}

/* ---- CONVERSION LEVER BANNER ---- */
.lever-banner {
  background: rgba(255,107,0,0.08);
  border-top: 1px solid rgba(255,107,0,0.2);
  border-bottom: 1px solid rgba(255,107,0,0.2);
  padding: 20px 0;
}

.lever-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lever-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.lever-text {
  flex: 1;
  min-width: 200px;
}

.lever-text strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lever-text span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ---- HOW IT WORKS TEASER ---- */
.hiw-teaser {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-teaser h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 60px;
  max-width: 500px;
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hiw-step {
  flex: 1;
  min-width: 200px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.hiw-step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.hiw-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.hiw-step h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hiw-arrow {
  font-size: 24px;
  color: var(--text-dim);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ---- FOUNDER ---- */
.founder {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
  width: 260px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  max-width: 260px;
}

.founder-photo {
  width: 260px;
  height: 280px;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(20%);
  border: 1px solid var(--border);
}

.founder-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,107,0,0.2);
  pointer-events: none;
}

.founder-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 500px;
}

.founder-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 520px;
}

.founder-creds {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.founder-cred strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.founder-cred span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- WHY icons ---- */
.why-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

/* ---- HOW IT WORKS PAGE ---- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 32px;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(255,107,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 8px 0;
  min-height: 40px;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content {
  padding-bottom: 56px;
  flex: 1;
}

.timeline-item:last-child .timeline-content {
  padding-bottom: 0;
}

.timeline-week {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
  margin-top: 14px;
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 580px;
}

.timeline-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-content ul li {
  color: var(--text-muted);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.timeline-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 13px;
}

/* ---- HIW CONTRAST SECTION ---- */
.hiw-contrast {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hiw-contrast h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 56px;
}

.nolist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nolist-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.nolist-x {
  font-size: 20px;
  color: var(--brand);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.nolist-item strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}

.nolist-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo-wrap { width: 160px !important; height: 200px !important; max-width: 160px !important; border-radius: 16px !important; overflow: hidden; margin: 0 auto; }
  .founder-photo { width: 160px !important; height: 200px !important; border-radius: 16px !important; object-position: center top; border: 2px solid rgba(255,107,0,0.3) !important; }
  .founder-photo-wrap::after { border-radius: 16px !important; }
  .founder-content { text-align: center; }
  .founder-creds { justify-content: center; }
  .founder-content h2 { max-width: 100%; margin-left: auto; margin-right: auto; }
  .founder-content p { margin-left: auto; margin-right: auto; }
  .hiw-steps { flex-direction: column; }
  .hiw-arrow { display: none; }
  .nolist-grid { grid-template-columns: 1fr; }
  .lever-inner { flex-direction: column; align-items: flex-start; }
}
