/* Realign — Shared Design System */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #F7F3EE;
  --charcoal: #1A1A1A;
  --warm-gray: #6B6560;
  --terracotta: #C4653A;
  --terracotta-hover: #B55A32;
  --light-warm: #EDE8E1;
  --soft-line: #D9D3CB;
  --white: #FFFFFF;
  --error: #C44A3A;
  --success: #3A7D44;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Navigation ─── */
nav {
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
nav.scrolled {
  border-bottom-color: var(--soft-line);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  background: var(--charcoal);
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--terracotta);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-terracotta {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-terracotta:hover {
  background: var(--terracotta-hover);
}

/* ─── Section Labels ─── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

/* ─── Hero Sections ─── */
.hero {
  padding: 6rem 4rem 8rem;
  max-width: 1100px;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  max-width: 900px;
  margin-bottom: 2.5rem;
}
.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ─── Page Hero (smaller) ─── */
.page-hero {
  padding: 5rem 4rem 4rem;
  max-width: 1100px;
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  max-width: 800px;
  margin-bottom: 1.5rem;
}
.page-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 600px;
}

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 4rem;
}

/* ─── Split Section ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 4rem 0;
}
.split-panel {
  padding: 5rem 4rem;
}
.split-panel.dark {
  background: var(--charcoal);
  color: var(--cream);
}
.split-panel h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.split-panel.dark h2 {
  color: var(--cream);
}
.split-list {
  list-style: none;
}
.split-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}
.split-panel.dark .split-list li {
  border-color: rgba(255,255,255,0.12);
  color: rgba(247,243,238,0.8);
}

/* ─── Framework / Phases ─── */
.framework {
  padding: 6rem 4rem;
  max-width: 1100px;
}
.framework h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.framework-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.7;
}
.phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.phase {
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--soft-line);
  position: relative;
}
.phase:first-child {
  border-left: none;
  padding-left: 0;
}
.phase-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.phase h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.phase p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── Credentials ─── */
.credentials {
  background: var(--charcoal);
  color: var(--cream);
  padding: 6rem 4rem;
}
.credentials-inner {
  max-width: 1100px;
}
.credentials h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.15;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.cred-item {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cred-stat {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.cred-desc {
  font-size: 0.9rem;
  color: rgba(247,243,238,0.7);
  line-height: 1.5;
}

/* ─── Closing ─── */
.closing {
  padding: 8rem 4rem;
  max-width: 800px;
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.closing p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ─── Content Sections ─── */
.content-section {
  padding: 5rem 4rem;
  max-width: 1100px;
}
.content-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.content-section p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 650px;
}

/* ─── Offer Cards ─── */
.offer-card {
  background: var(--white);
  border: 1px solid var(--soft-line);
  padding: 3.5rem;
  margin-bottom: 2rem;
}
.offer-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.offer-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}
.offer-term {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}
.offer-list {
  list-style: none;
  margin-bottom: 2.5rem;
}
.offer-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--light-warm);
  font-size: 0.95rem;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.offer-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ─── Timeline ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 3rem 0;
}
.timeline-item {
  padding: 2rem;
  border-left: 2px solid var(--soft-line);
  position: relative;
}
.timeline-item:first-child {
  border-left: 2px solid var(--terracotta);
}
.timeline-month {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.timeline-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.timeline-item p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── Form Styles ─── */
.form-section {
  padding: 5rem 4rem;
  max-width: 700px;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.form-group .label-hint {
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--warm-gray);
  margin-top: 0.2rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--soft-line);
  outline: none;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--charcoal);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
}
.form-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.3rem;
}

/* Radio/Check Options */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.option-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--soft-line);
  cursor: pointer;
  transition: all 0.2s ease;
}
.option-item:hover {
  border-color: var(--charcoal);
}
.option-item.selected {
  border-color: var(--terracotta);
  background: rgba(196, 101, 58, 0.04);
}
.option-item input[type="radio"] {
  width: auto;
  accent-color: var(--terracotta);
}
.option-item span {
  font-size: 0.95rem;
}

/* ─── Step Indicator ─── */
.step-indicator {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
}
.step-dot {
  flex: 1;
  height: 3px;
  background: var(--soft-line);
  transition: background 0.3s ease;
}
.step-dot.active {
  background: var(--terracotta);
}
.step-dot.completed {
  background: var(--charcoal);
}
.step-header {
  margin-bottom: 2.5rem;
}
.step-count {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}
.step-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.step-header p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  font-weight: 300;
}

/* Step navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--soft-line);
}
.step-back {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.2s ease;
}
.step-back:hover {
  color: var(--charcoal);
}

/* ─── Success State ─── */
.success-state {
  text-align: center;
  padding: 6rem 4rem;
  max-width: 600px;
  margin: 0 auto;
}
.success-check {
  width: 60px;
  height: 60px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.success-check svg {
  width: 28px;
  height: 28px;
  stroke: var(--cream);
}
.success-state h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.success-state p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── About Page Specific ─── */
.about-story {
  padding: 4rem 4rem;
  max-width: 750px;
}
.about-story p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.about-story p strong {
  color: var(--charcoal);
  font-weight: 500;
}
.about-story .pullquote {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 5rem 4rem;
  max-width: 750px;
}
.faq-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--soft-line);
  padding: 1.5rem 0;
}
.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--warm-gray);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding-top: 1rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Footer ─── */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--soft-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--charcoal);
}
.footer-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ─── Dark Section Utility ─── */
.dark-section {
  background: var(--charcoal);
  color: var(--cream);
  padding: 6rem 4rem;
}
.dark-section .section-label {
  color: var(--terracotta);
}
.dark-section h2 {
  color: var(--cream);
}
.dark-section p {
  color: rgba(247,243,238,0.7);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  .nav-left {
    gap: 0;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--soft-line);
    gap: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 0.8rem 0;
    font-size: 0.95rem;
  }
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero {
    padding: 3rem 1.5rem 5rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .divider {
    margin: 0 1.5rem;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-panel {
    padding: 3rem 1.5rem;
  }
  .framework {
    padding: 4rem 1.5rem;
  }
  .phases {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .phase {
    border-left: none;
    border-bottom: 1px solid var(--soft-line);
    padding: 1.5rem 0;
  }
  .phase:first-child {
    padding-top: 0;
  }
  .phase:last-child {
    border-bottom: none;
  }
  .credentials {
    padding: 4rem 1.5rem;
  }
  .cred-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .closing {
    padding: 5rem 1.5rem;
  }
  .page-hero {
    padding: 3rem 1.5rem 2rem;
  }
  .content-section {
    padding: 3rem 1.5rem;
  }
  .form-section {
    padding: 3rem 1.5rem;
  }
  .about-story {
    padding: 3rem 1.5rem;
  }
  .faq-section {
    padding: 3rem 1.5rem;
  }
  .dark-section {
    padding: 4rem 1.5rem;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    border-left: 2px solid var(--soft-line);
  }
  .timeline-item:first-child {
    border-left: 2px solid var(--terracotta);
  }
  .offer-card {
    padding: 2rem 1.5rem;
  }
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
    gap: 1rem;
  }
}
