:root {
  --primary: #0f172a;
  --primary-2: #1e293b;
  --accent: #b5935b;
  --text: #1e293b;
  --text-soft: #475569;
  --text-muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(181, 147, 91, 0.28);
  --success: #2f6b4f;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 12px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 40px rgba(15, 23, 42, 0.08);
  --maxw: 1100px;
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
}

.container {
  width: min(var(--maxw), calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-trigger {
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--text);
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  color: var(--accent);
  background: rgba(181, 147, 91, 0.08);
  outline: none;
}

.dropdown {
  position: relative;
}

.nav-trigger::after {
  content: "▾";
  margin-left: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  padding: 0.55rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
}

.dropdown-menu a span {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.35rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--line);
}

.page-shell {
  padding-bottom: 3rem;
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: var(--accent);
  opacity: 0.22;
  filter: blur(150px);
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  margin: 18px 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--white);
}

.hero-copy p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-actions,
.cta-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.eyebrow,
.kicker {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.trust-list,
.summary-list,
.check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.trust-list li,
.summary-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-list li:last-child,
.summary-list li:last-child {
  border-bottom: 0;
}

.trust-list li strong,
.summary-list li strong {
  color: var(--white);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 1rem;
}

.trust-list li span,
.summary-list li span {
  color: rgba(255, 255, 255, 0.78);
}

main section:not(.hero) {
  padding: 88px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
}

.card h3,
.card h4 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(181, 147, 91, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 4.2rem;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pricing-card {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.15fr 0.85fr;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.75rem 0 1rem;
}

.price-display strong {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--primary);
}

.price-display span,
.meta-note {
  color: var(--text-muted);
}

.check-list {
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.18;
}

.cta-band .section-head,
.cta-band h2,
.cta-band p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-band .section-head p {
  opacity: 0.82;
}

.inline-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.3rem 1.3rem;
  color: var(--text-soft);
}

.service-grid a.card,
.related-grid a.card {
  text-decoration: none;
  display: block;
}

.service-grid a.card:hover,
.related-grid a.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.1);
}

.split-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.feature-panel {
  background: var(--light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 32px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.audience-block {
  background: var(--white);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mini-stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  border-top: 4px solid var(--accent);
}

.mini-stat strong {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.quote-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.96) 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.quote-panel::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 170px;
  height: 170px;
  background: var(--accent);
  filter: blur(110px);
  opacity: 0.25;
}

.quote-panel p,
.quote-panel h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.site-footer {
  background: #0a0f1c;
  color: var(--white);
  padding: 64px 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid p,
.footer-grid a {
  margin: 0.45rem 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-card,
  .split-feature,
  .audience-grid,
  .mini-stat-row,
  .pricing-card,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--nav-height) + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    margin-top: 0.4rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 100%;
    box-shadow: none;
  }

  .dropdown.is-open .dropdown-menu {
    display: block;
  }

  .hero,
  main section:not(.hero) {
    padding: 72px 0;
  }

  .hero-card,
  .split-feature,
  .audience-grid,
  .mini-stat-row,
  .pricing-card,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 36px 24px;
  }
}
