:root {
  --bg: #f5efe6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.54);
  --surface-ink: #17313c;
  --text: #19313b;
  --muted: #58717a;
  --line: rgba(25, 49, 59, 0.12);
  --line-strong: rgba(25, 49, 59, 0.2);
  --brand: #0f766e;
  --brand-dark: #0a4f50;
  --brand-deep: #123c42;
  --accent: #cc8a3e;
  --accent-soft: rgba(204, 138, 62, 0.14);
  --success: #1f7a52;
  --shadow: 0 24px 80px rgba(18, 43, 52, 0.12);
  --shadow-soft: 0 16px 40px rgba(18, 43, 52, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(204, 138, 62, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f1e7 0%, #f3ece2 48%, #efe7dd 100%);
  line-height: 1.62;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(12, 116, 110, 0.28);
  outline-offset: 3px;
}

p,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.8rem 1rem;
  background: var(--surface-strong);
  border-radius: var(--radius-sm);
  z-index: 999;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(245, 239, 230, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(18, 43, 52, 0.04);
}

.nav-backdrop {
  display: none;
}

.nav-shell,
.footer-shell {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 4.7rem;
  position: relative;
}

.brand-mark {
  text-decoration: none;
  color: var(--surface-ink);
}

.brand-name {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-tagline {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.65);
  color: var(--surface-ink);
  border-radius: 999px;
  padding: 0.75rem 0.95rem;
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--surface-ink);
}

.nav-cta {
  margin-left: 0.45rem;
  min-height: 2.9rem;
  padding: 0.82rem 1rem;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
}

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--surface-ink);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero {
  padding: 2.75rem 0 1.1rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.6rem;
  align-items: start;
}

body[data-page="home"] .hero-layout .hero-copy h1 {
  font-size: clamp(1.85rem, 3.7vw, 3.15rem);
  max-width: 10.9ch;
}

body[data-page="home"] .hero-copy {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .hero-copy::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.08), transparent 72%);
  pointer-events: none;
}

.hero-copy,
.hero-panel,
.service-card,
.feature-panel,
.step-card,
.detail-panel,
.contact-panel,
.cta-panel,
.spotlight,
.story-panel,
.legal-card,
.process-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

body[data-page="home"] .hero-copy {
  padding: 1.95rem;
}

.hero-panel {
  padding: 1.1rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 250, 249, 0.82));
}

.eyebrow,
.card-kicker,
.stat-label {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.08;
  color: var(--surface-ink);
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2.15rem, 4.75vw, 3.95rem);
  max-width: 13.5ch;
  letter-spacing: -0.04em;
}

.page-hero .hero-copy h1 {
  font-size: clamp(1.95rem, 3.75vw, 3.2rem);
  max-width: 14.5ch;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  max-width: 15ch;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.02rem;
  max-width: 58ch;
  color: var(--muted);
}

.intro-note,
.cta-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta-note strong,
.intro-note strong {
  color: var(--surface-ink);
}

.lead-sm {
  font-size: 1rem;
}

.lead-sm,
.section-intro p,
.feature-panel p,
.service-card p,
.step-card p,
.detail-panel p,
.detail-panel li,
.cta-panel p,
.spotlight p,
.story-panel p,
.contact-panel p,
.legal-card p,
.legal-card li,
.footer-meta,
.footer-links a,
.meta-list,
.plain-list li {
  color: var(--muted);
}

.check-list,
.plain-list,
.meta-list {
  padding-left: 1.2rem;
}

.plain-list.compact-list,
.meta-list.compact-list {
  padding-left: 1rem;
}

.check-list li,
.plain-list li,
.meta-list li {
  margin-bottom: 0.65rem;
}

.check-list {
  margin-top: 1.2rem;
}

.check-list li::marker {
  color: var(--brand);
}

.stat-card {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  line-height: 1.45;
}

body[data-page="home"] .hero-panel {
  gap: 0.95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 248, 246, 0.9));
}

body[data-page="home"] .stat-card:nth-child(2),
body[data-page="home"] .stat-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 247, 245, 0.84));
}

.section {
  padding: 1.15rem 0 3.9rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.34));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-contrast {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(252, 249, 244, 0.54));
}

.section-cta {
  padding-bottom: 5rem;
}

.section-intro {
  max-width: 70ch;
  margin-bottom: 1.6rem;
}

.section-intro h2 {
  max-width: 13ch;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-strip span,
.process-strip {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-weight: 700;
}

.mini-proof-grid,
.testimonial-grid,
.contact-promise-grid,
.audience-grid,
.faq-grid,
.project-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

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

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

.project-grid {
  gap: 1.2rem;
}

.trust-card,
.testimonial-card,
.promise-card,
.faq-card,
.audience-card,
.project-card,
.pricing-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow-soft);
}

.pricing-card:first-child,
.pricing-card:last-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 249, 0.82));
}

.project-card,
.pricing-card {
  position: relative;
  overflow: hidden;
}

.project-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.85), rgba(204, 138, 62, 0.55));
}

.testimonial-card,
.project-card {
  border-color: rgba(25, 49, 59, 0.1);
}

.trust-card strong,
.promise-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--surface-ink);
}

.testimonial-quote {
  font-size: 1.04rem;
  color: var(--surface-ink);
}

.audience-card strong,
.faq-card strong,
.project-card strong,
.pricing-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--surface-ink);
}

.faq-card p,
.audience-card p,
.project-card p,
.pricing-card p {
  color: var(--muted);
}

.testimonial-byline {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.service-card,
.feature-panel,
.step-card,
.detail-panel,
.contact-panel,
.story-panel,
.legal-card {
  padding: 1.45rem;
}

.detail-panel,
.contact-panel,
.story-panel,
.legal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
}

.service-card h3 a {
  text-decoration: none;
}

.service-card:hover,
.feature-panel:hover,
.trust-card:hover,
.testimonial-card:hover,
.promise-card:hover,
.faq-card:hover,
.audience-card:hover,
.project-card:hover,
.pricing-card:hover,
.detail-panel:hover,
.story-panel:hover,
.contact-panel:hover {
  transform: translateY(-2px);
  transition: transform 180ms ease;
}

.service-card h2,
.service-card h3 {
  margin-bottom: 0.65rem;
}

.service-includes {
  margin: 1rem 0 1.1rem;
  padding: 0.95rem 1rem 0.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.045), rgba(255, 255, 255, 0.6));
}

.service-includes strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.project-card .card-kicker,
.pricing-card .card-kicker {
  margin-bottom: 0.7rem;
}

.pricing-amount {
  display: block;
  margin-bottom: 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1;
  color: var(--surface-ink);
}

.pricing-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(204, 138, 62, 0.08);
  color: var(--muted);
}

.pricing-kicker-row,
.project-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.7rem 0 0.95rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(18, 60, 66, 0.06);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-emphasis {
  margin-top: 1.1rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.8));
}

.price-emphasis strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--surface-ink);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.project-card-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 246, 0.84));
}

.project-browser {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.project-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 239, 230, 0.9);
}

.project-browser-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(18, 60, 66, 0.18);
}

.project-browser-label {
  margin-left: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--surface-ink);
}

.project-browser-body {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.project-browser-body strong {
  color: var(--surface-ink);
}

.project-browser-body p {
  color: var(--muted);
}

.project-summary {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.05), rgba(255, 255, 255, 0.84));
}

.project-summary strong {
  display: block;
  margin-bottom: 0.35rem;
}

.project-summary p {
  color: var(--muted);
}

.faq-accordion {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 800;
  color: var(--surface-ink);
}

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

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(15, 118, 110, 0.045);
}

.faq-item p {
  padding: 1rem 1.2rem 1.2rem;
  color: var(--muted);
}

.faq-overview {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-dark);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brand);
}

.split-layout,
.page-hero,
.content-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-number {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 800;
  background: var(--accent-soft);
  color: var(--brand-dark);
}

.spotlight,
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem;
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: start;
}

.content-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.detail-stack {
  display: grid;
  gap: 1rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.meta-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.meta-title {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-method {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.contact-method strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-method a {
  color: var(--brand-dark);
  font-weight: 700;
}

.info-form {
  display: grid;
  gap: 1rem;
}

.form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-weight: 700;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.form-row textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-panel .button {
  margin-top: 0.2rem;
}

.contact-panel h2 {
  margin-bottom: 0.7rem;
}

.contact-reassurance {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.05);
}

.contact-reassurance strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--surface-ink);
}

.contact-reassurance p {
  color: var(--muted);
}

.disclosure-banner,
.inline-affiliate-notice,
.crypto-risk-notice {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.disclosure-banner {
  background: rgba(15, 118, 110, 0.05);
}

.inline-affiliate-notice {
  background: rgba(204, 138, 62, 0.08);
}

.crypto-risk-notice {
  background: rgba(161, 67, 44, 0.08);
}

.disclosure-banner strong,
.inline-affiliate-notice strong,
.crypto-risk-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--surface-ink);
}

.disclosure-banner p,
.inline-affiliate-notice p,
.crypto-risk-notice p {
  color: var(--muted);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.36));
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
}

.footer-brand {
  max-width: 52ch;
}

.footer-contact a {
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.footer-links-group strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--surface-ink);
}

.footer-links a {
  text-decoration: none;
  display: block;
  margin-bottom: 0.45rem;
}

.footer-meta {
  margin-top: 1rem;
}

.effective-date {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.faq-section-group {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
}

.faq-section-group + .faq-section-group {
  margin-top: 1.35rem;
}

.faq-section-title {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--surface-ink);
}

.comparison-note,
.proof-note {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--muted);
}

.proof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.95rem 0 1rem;
}

.proof-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.stack-tight {
  display: grid;
  gap: 0.8rem;
}

.cta-panel h2,
.spotlight h2 {
  max-width: 12ch;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 246, 0.9));
  border-color: rgba(15, 118, 110, 0.18);
}

.pricing-card-featured::before {
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.95), rgba(15, 118, 110, 0.65));
}

.pricing-card-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 236, 0.88));
}

.pricing-card .cta-note-inline {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem 1rem 1.15rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.995);
    box-shadow: 0 28px 56px rgba(18, 43, 52, 0.22);
    z-index: 3;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-header.is-open {
    background: rgba(245, 239, 230, 0.96);
    box-shadow: 0 14px 34px rgba(18, 43, 52, 0.08);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    border: 0;
    background: rgba(18, 43, 52, 0.48);
    backdrop-filter: blur(7px);
    z-index: 2;
  }

  .site-header.is-open .nav-backdrop {
    display: block;
  }

  .site-nav a {
    padding: 0.78rem 0.25rem;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-layout,
  .card-grid-3,
  .mini-proof-grid,
  .testimonial-grid,
  .contact-promise-grid,
  .audience-grid,
  .faq-grid,
  .project-grid,
  .pricing-grid,
  .steps-grid,
  .split-layout,
  .page-hero,
  .content-grid,
  .contact-grid,
  .footer-shell,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .spotlight,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .form-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.55rem;
  }

  .hero-copy,
  .service-card,
  .feature-panel,
  .step-card,
  .detail-panel,
  .contact-panel,
  .cta-panel,
  .spotlight,
  .story-panel,
  .legal-card {
    padding: 1.2rem;
  }

  .hero-copy {
    padding: 1.15rem;
  }

  .hero-panel {
    padding: 1rem;
  }

  .nav-shell {
    gap: 0.6rem;
  }

  .button,
  .button-link {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 9vw, 2.65rem);
  }

  body[data-page="home"] .hero-layout .hero-copy h1 {
    font-size: clamp(1.58rem, 6.35vw, 2.08rem);
    max-width: 10.4ch;
  }

  .page-hero .hero-copy h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.35rem);
  }

  .section {
    padding-bottom: 3.1rem;
  }

  .project-actions {
    flex-direction: column;
  }

  .faq-section-group {
    padding: 1rem;
  }

  .trust-strip span,
  .process-strip,
  .contact-method,
  .trust-card,
  .testimonial-card,
  .promise-card,
  .faq-card,
  .audience-card {
    text-align: left;
  }
}

.guide-page {
  --guide-bg: #0d141d;
  --guide-surface: rgba(15, 24, 34, 0.9);
  --guide-surface-strong: #121c28;
  --guide-surface-soft: rgba(16, 25, 35, 0.72);
  --guide-text: #eef4f8;
  --guide-muted: #a7bac7;
  --guide-line: rgba(208, 223, 235, 0.12);
  --guide-line-strong: rgba(208, 223, 235, 0.22);
  --guide-accent: #6fdbc0;
  --guide-accent-deep: #1b6f69;
  --guide-highlight: #d89a57;
  --guide-shadow: 0 30px 90px rgba(2, 8, 16, 0.38);
  color: var(--guide-text);
  background:
    radial-gradient(circle at top left, rgba(48, 114, 105, 0.32), transparent 30%),
    radial-gradient(circle at top right, rgba(216, 154, 87, 0.2), transparent 24%),
    linear-gradient(180deg, #081018 0%, #0d141d 28%, #101923 100%);
}

.guide-page .container {
  width: min(1180px, calc(100% - 2rem));
}

.guide-page .section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
  border-top: 1px solid var(--guide-line);
  border-bottom: 1px solid var(--guide-line);
}

.guide-page .section-contrast {
  background:
    radial-gradient(circle at top right, rgba(111, 219, 192, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.06));
}

.guide-page h1,
.guide-page h2,
.guide-page h3,
.guide-page strong,
.guide-page summary,
.guide-page dt {
  color: var(--guide-text);
}

.guide-page p,
.guide-page li,
.guide-page dd {
  color: var(--guide-muted);
}

.guide-page .eyebrow,
.guide-page .card-kicker,
.guide-page .stat-label {
  color: var(--guide-accent);
}

.guide-page .button {
  background: linear-gradient(135deg, var(--guide-accent), #3fa98d);
  color: #081018;
  box-shadow: 0 18px 34px rgba(111, 219, 192, 0.16);
}

.guide-page .button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--guide-text);
  border-color: var(--guide-line-strong);
}

.guide-page .plain-list li::marker,
.guide-page .check-list li::marker {
  color: var(--guide-accent);
}

.guide-disclosure-bar {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--guide-line);
  background: rgba(7, 12, 18, 0.92);
  backdrop-filter: blur(16px);
}

.guide-disclosure-bar p {
  padding: 0.8rem 0;
  font-size: 0.9rem;
  text-align: center;
  color: #d7e5ee;
}

.guide-header {
  position: sticky;
  top: 3.2rem;
  z-index: 110;
  border-bottom: 1px solid var(--guide-line);
  background: rgba(13, 20, 29, 0.84);
  backdrop-filter: blur(18px);
}

.guide-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  position: relative;
}

.guide-brand {
  text-decoration: none;
}

.guide-brand-name {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #f4f7fa;
}

.guide-brand-tagline {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--guide-muted);
}

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

.guide-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--guide-muted);
}

.guide-nav a:hover,
.guide-nav a:focus-visible {
  color: var(--guide-text);
  background: rgba(255, 255, 255, 0.04);
}

.guide-nav-cta {
  margin-left: 0.35rem;
}

.guide-nav-toggle {
  display: none;
  border: 1px solid var(--guide-line-strong);
  border-radius: 999px;
  padding: 0.78rem 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--guide-text);
  font: inherit;
}

.guide-hero {
  padding: 4rem 0 2rem;
}

.guide-hero-layout,
.guide-overview-grid,
.guide-compare-grid,
.guide-footer-grid {
  display: grid;
  gap: 1.25rem;
}

.guide-hero-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: stretch;
}

.guide-hero-copy,
.guide-hero-panel,
.guide-info-card,
.guide-benefit-card,
.guide-checklist-panel,
.guide-compare-card,
.guide-platform-card,
.guide-step-card,
.guide-final-cta,
.guide-legal-card {
  border: 1px solid var(--guide-line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 28, 40, 0.94), rgba(14, 22, 31, 0.86));
  box-shadow: var(--guide-shadow);
}

.guide-hero-copy {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
}

.guide-hero-copy::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 219, 192, 0.16), transparent 72%);
  pointer-events: none;
}

.guide-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  letter-spacing: -0.05em;
}

.guide-hero-copy .lead {
  max-width: 58ch;
  font-size: 1.04rem;
  color: #c1d1dc;
}

.guide-trust-line,
.guide-cta-disclosure {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #d9e8ef;
}

.guide-hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  align-content: start;
  background: linear-gradient(180deg, rgba(17, 28, 40, 0.88), rgba(14, 24, 35, 0.95));
}

.guide-signal-card {
  padding: 1.2rem;
  border: 1px solid var(--guide-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.guide-signal-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--guide-highlight);
}

.guide-value-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.guide-value-strip span {
  padding: 1rem 1.1rem;
  border: 1px solid var(--guide-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  text-align: center;
  color: #d7e5ee;
}

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

.guide-info-card,
.guide-benefit-card,
.guide-compare-card,
.guide-step-card,
.guide-legal-card,
.guide-platform-card {
  padding: 1.45rem;
}

.guide-card-grid {
  gap: 1rem;
}

.guide-benefit-card,
.guide-step-card,
.guide-platform-card {
  position: relative;
  overflow: hidden;
}

.guide-benefit-card::before,
.guide-step-card::before,
.guide-platform-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--guide-accent), rgba(216, 154, 87, 0.75));
}

.guide-checklist-panel {
  padding: 1.5rem;
  display: grid;
  gap: 1.2rem;
}

.guide-checklist {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.2rem;
}

.guide-inline-button {
  justify-self: start;
}

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

.guide-platform-list {
  display: grid;
  gap: 0.95rem;
}

.guide-platform-list div {
  padding-top: 0.9rem;
  border-top: 1px solid var(--guide-line);
}

.guide-platform-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.guide-platform-list dt {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--guide-accent);
}

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

.guide-step-card .step-number {
  background: rgba(216, 154, 87, 0.16);
  color: #f4d6b4;
}

.guide-final-cta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background:
    radial-gradient(circle at right top, rgba(111, 219, 192, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(18, 28, 40, 0.96), rgba(14, 22, 31, 0.88));
}

.guide-final-actions {
  max-width: 26rem;
}

.guide-footer {
  padding: 0 0 3rem;
}

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

.guide-legal-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.guide-page .faq-item {
  border-color: var(--guide-line);
  background: linear-gradient(180deg, rgba(18, 28, 40, 0.92), rgba(14, 22, 31, 0.84));
  box-shadow: var(--guide-shadow);
}

.guide-page .faq-item summary {
  padding: 1.15rem 1.2rem;
}

.guide-page .faq-item[open] summary {
  border-bottom-color: var(--guide-line);
  background: rgba(111, 219, 192, 0.06);
}

.guide-page .faq-item p {
  padding: 1rem 1.2rem 1.2rem;
}

@media (max-width: 1080px) {
  .guide-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .guide-header {
    top: 3.85rem;
  }

  .guide-nav-toggle {
    display: inline-flex;
  }

  .guide-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--guide-line-strong);
    border-radius: 24px;
    background: rgba(9, 15, 22, 0.98);
    box-shadow: var(--guide-shadow);
  }

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

  .guide-hero-layout,
  .guide-overview-grid,
  .guide-compare-grid,
  .guide-steps-grid,
  .guide-footer-grid,
  .guide-value-strip,
  .guide-final-cta {
    grid-template-columns: 1fr;
  }

  .guide-final-cta {
    display: grid;
  }
}

@media (max-width: 640px) {
  .guide-disclosure-bar p {
    text-align: left;
  }

  .guide-header {
    top: 4.6rem;
  }

  .guide-hero {
    padding-top: 2rem;
  }

  .guide-hero-copy,
  .guide-info-card,
  .guide-benefit-card,
  .guide-checklist-panel,
  .guide-compare-card,
  .guide-platform-card,
  .guide-step-card,
  .guide-final-cta,
  .guide-legal-card {
    padding: 1.2rem;
  }

  .guide-hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(2rem, 10vw, 2.95rem);
  }

  .guide-inline-button {
    width: 100%;
  }

  .guide-value-strip span {
    text-align: left;
  }
}
