:root {
  --orange: #7D1B2E;
  --orange-hover: #651626;
  --orange-light: #F6EAED;
  --orange-bg: #F2E4E8;
  --dark: #191B23;
  --text: #333640;
  --text-secondary: #6C7080;
  --border: #E0E2E9;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

a { color: var(--orange); }

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: -0.015em;
  line-height: 1;
}
.logo .accent { color: var(--orange); }
.logo:hover { color: var(--dark); }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-fill { background: var(--orange); color: #fff; }
.btn-fill:hover { background: var(--orange-hover); }
.btn-ghost { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn-ghost:hover { background: var(--orange-light); }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: var(--orange-light); }

/* BREADCRUMBS */
.crumbs {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 1.2rem clamp(1.5rem, 5vw, 5rem) 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.crumbs a { color: var(--text-secondary); text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.crumbs span { margin: 0 0.4rem; opacity: 0.5; }

/* HERO */
.hero {
  padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}
.hero-label svg { flex-shrink: 0; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  max-width: 820px;
}
.hero h1 span { color: var(--orange); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* SECTION COMMON */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
}
.section-overline {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
h2 span { color: var(--orange); }
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* PROSE */
.prose { max-width: 760px; }
.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}
.prose p {
  font-size: 0.96rem;
  color: var(--text);
  margin-bottom: 0.9rem;
  line-height: 1.75;
}
.prose ul {
  margin: 0.6rem 0 1rem 1.2rem;
  padding: 0;
}
.prose ul li {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.prose strong { color: var(--dark); }

/* CALLOUT */
.callout {
  border-left: 3px solid var(--orange);
  padding: 1.2rem 1.5rem;
  background: var(--orange-light);
  margin: 1.5rem 0;
}
.callout p {
  font-weight: 600;
  color: var(--dark) !important;
  font-size: 1rem !important;
  margin-bottom: 0 !important;
}

/* CARDS / GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.card {
  background: var(--bg);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
a.card:hover { background: #FBF5F6; }
.card-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { stroke: var(--orange); }
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.card .arrow {
  margin-top: 1rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
}

/* COMPARE TABLE */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.92rem;
}
.compare th, .compare td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.compare th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare tr td:first-child { font-weight: 600; color: var(--dark); width: 22%; }

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--border);
}
.step { padding: 2rem 1.5rem; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }
.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* FAQ */
.faq-section { background: var(--bg-soft); }
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
}
.faq-list { max-width: 760px; margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 1.2rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Outfit', sans-serif;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 360px; }
.faq-a p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 1.2rem;
}

/* RELATED */
.related-section { background: var(--bg-soft); border-top: 1px solid var(--border); }
.related-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 5rem);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.6rem;
}
.related-card:hover { border-color: var(--orange); background: #FBF5F6; }
.related-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.related-card .arrow { color: var(--orange); font-size: 0.8rem; font-weight: 600; }

/* CTA */
.cta-band {
  background: var(--dark);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band h2 span { color: var(--orange); }
.cta-band p {
  color: #9498A5;
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.5rem, 5vw, 5rem) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.015em;
}
.footer-logo .accent { color: var(--orange); }
footer p { font-size: 0.85rem; color: var(--text-secondary); }
footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer a { color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .compare { font-size: 0.85rem; }
  .compare th, .compare td { padding: 0.7rem 0.6rem; }
}
@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
