:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #fbf8f2;
  --text: #172033;
  --text-soft: #5f6675;
  --accent: #b88a44;
  --accent-deep: #8d6830;
  --line: #e5e0d8;
  --dark: #101827;
  --dark-soft: #1b2536;
  --shadow: 0 22px 48px rgba(16, 24, 39, 0.08);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 138, 68, 0.11), transparent 28%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 32%, #f2ede4 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 1.02;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  line-height: 1.45;
}

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

.page-shell {
  min-height: 100vh;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 24px 0 20px;
}

.section-dark {
  color: #f6f0e7;
  background:
    radial-gradient(circle at top right, rgba(184, 138, 68, 0.22), transparent 22%),
    linear-gradient(135deg, #101827 0%, #182335 100%);
}

.section-muted {
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(229, 224, 216, 0.7);
  border-bottom: 1px solid rgba(229, 224, 216, 0.7);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}

.eyebrow-dark {
  color: #d2b27c;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 239, 0.84);
  border-bottom: 1px solid rgba(229, 224, 216, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, #142033, #243249);
  color: #f2eadf;
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(229, 224, 216, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-button.is-active {
  background: linear-gradient(135deg, #172033, #25324a);
  color: #fff8ed;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #b88a44, #c8a467);
  color: #fffaf3;
  box-shadow: 0 14px 32px rgba(184, 138, 68, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

.button-small {
  padding: 12px 18px;
}

.button-inverse {
  background: linear-gradient(135deg, #d5b06e, #bb8c43);
  color: #162132;
}

.hero {
  padding-top: 68px;
}

.hero-grid,
.split-section,
.feature-layout,
.contact-layout,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 44px;
  align-items: center;
}

.hero-copy,
.feature-copy,
.contact-copy,
.content-block,
.section-heading,
.page-hero-copy {
  display: grid;
  gap: 20px;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions,
.section-actions,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  font-size: 0.95rem;
  color: var(--text);
}

.hero-panel,
.feature-card,
.contact-form,
.service-card,
.detail-card,
.pricing-card,
.mini-card,
.timeline-step,
.comparison-card,
.summary-panel,
.info-card,
.pricing-line,
.legal-shell,
.faq-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(229, 224, 216, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel,
.feature-card,
.contact-form,
.service-card,
.detail-card,
.pricing-card,
.timeline-step,
.comparison-card,
.summary-panel,
.info-card,
.pricing-line,
.faq-item {
  padding: 28px;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 239, 0.88)),
    radial-gradient(circle at top right, rgba(184, 138, 68, 0.18), transparent 30%);
}

.panel-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.panel-list,
.check-list,
.deliverables-list,
.bullet-list,
.faq-list,
.stack-list {
  display: grid;
  gap: 14px;
}

.panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-item span,
.step-number,
.stat-label {
  font-size: 0.82rem;
  color: var(--accent-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.panel-foot,
.feature-meta,
.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-foot {
  padding-top: 20px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.credibility-strip,
.card-grid,
.timeline,
.pricing-grid,
.footer-grid,
.stats-grid,
.info-grid,
.pricing-list,
.faq-list,
.form-grid {
  display: grid;
  gap: 22px;
}

.credibility-strip {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.credibility-item,
.mini-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.check-list,
.deliverables-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.deliverables-list li,
.bullet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.check-list li::before,
.deliverables-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

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

.service-card,
.detail-card,
.comparison-card,
.pricing-card {
  display: grid;
  gap: 16px;
}

.card-foot,
.pricing-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.price-tag,
.pricing-value,
.pricing-line span {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  font-weight: 700;
}

.section-note,
.footer-meta,
.microcopy {
  font-size: 0.94rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section-dark .feature-copy p,
.section-dark .feature-card .panel-label {
  color: rgba(236, 226, 211, 0.82);
}

.section-dark .feature-copy h2 {
  color: #fbf5eb;
}

.section-dark .feature-meta {
  margin-top: 8px;
  gap: 12px;
}

.section-dark .feature-meta span {
  color: #f6efe3;
  font-size: 1rem;
  line-height: 1.45;
}

.section-dark .feature-meta span:first-child {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(212, 176, 110, 0.18);
  border: 1px solid rgba(212, 176, 110, 0.28);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff6e8;
}

.section-dark .feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.14);
}

.section-dark .deliverables-list {
  gap: 16px;
}

.section-dark .deliverables-list li {
  color: #f1e7d8;
  font-size: 1.02rem;
  line-height: 1.55;
}

.section-dark .deliverables-list li::before {
  width: 9px;
  height: 9px;
  top: 0.68em;
  background: #d3a04c;
  box-shadow: 0 0 0 6px rgba(211, 160, 76, 0.08);
}

.compact-cards .mini-card {
  padding: 22px 24px;
  font-weight: 500;
}

.timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.timeline-step {
  min-height: 290px;
  gap: 10px;
}

.timeline-step h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.timeline-step p {
  max-width: 22ch;
  font-size: 0.98rem;
  line-height: 1.55;
}

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

.pricing-grid.tight-top {
  margin-bottom: 22px;
}

.featured-pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 242, 230, 0.98));
  border-color: rgba(184, 138, 68, 0.4);
}

.pricing-badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184, 138, 68, 0.12);
  color: var(--accent-deep);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-points span,
.tag {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  font-size: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
}

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

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

.page-hero {
  padding: 88px 0 48px;
}

.page-hero p {
  max-width: 62ch;
}

.page-hero h1 {
  max-width: 9ch;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.page-hero-copy p {
  max-width: 34rem;
}

index.html .content-block > p:first-of-type {
  color: #4d5769;
}

.summary-panel {
  display: grid;
  gap: 18px;
}

.summary-panel h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

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

.stat-card {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.comparison-card ul,
.legal-shell ul {
  padding-left: 20px;
}

.service-card .split-section {
  align-items: start;
  gap: 56px;
  margin-top: 8px;
}

.service-card .split-section h3 {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-card .bullet-list {
  gap: 12px;
}

.service-card .bullet-list li {
  font-size: 1rem;
}

.service-card .microcopy {
  color: var(--text-soft);
}

.service-card .microcopy + .microcopy {
  margin-top: 4px;
}

.service-card .split-section > div:last-child .microcopy:first-of-type {
  display: inline-flex;
  margin-top: 14px;
  margin-bottom: 6px;
  padding: 11px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcf7ee, #f6ede0);
  border: 1px solid rgba(184, 138, 68, 0.28);
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(184, 138, 68, 0.12);
}

.service-card .split-section > div:last-child .microcopy:first-of-type::before {
  content: "Price";
  margin-right: 10px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card .split-section > div:last-child .microcopy:last-of-type {
  font-size: 0.98rem;
}

.comparison-grid,
.faq-list {
  display: grid;
  gap: 20px;
}

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

.info-card {
  display: grid;
  gap: 14px;
}

.pricing-list {
  grid-template-columns: 1fr;
}

.pricing-line {
  align-items: center;
}

.pricing-line h3 {
  font-size: 1.05rem;
}

.faq-item {
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 46px 0 24px;
  border-top: 1px solid rgba(229, 224, 216, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(252, 248, 241, 0.78));
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  align-items: start;
  gap: 28px;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
  margin-bottom: 4px;
}

.brand-footer {
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 360px;
  color: #445066;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-brand {
  padding-right: 18px;
}

.footer-brand .brand-text strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.footer-meta {
  display: flex;
  width: 100%;
  max-width: 360px;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 138, 68, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-grid .footer-column:nth-child(2) {
  padding: 22px 22px 20px;
  border: 1px solid rgba(229, 224, 216, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.05);
}

.footer-grid .footer-column:nth-child(2) p {
  padding: 0 0 12px;
  margin: 0;
  color: #445066;
  line-height: 1.55;
  border-bottom: 1px solid rgba(229, 224, 216, 0.74);
}

.footer-grid .footer-column:nth-child(2) p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-grid .footer-column:nth-child(3),
.footer-grid .footer-column:nth-child(4) {
  padding-top: 4px;
}

.footer-grid .footer-column:nth-child(3) a,
.footer-grid .footer-column:nth-child(4) a {
  color: #4b566b;
  line-height: 1.45;
}

.footer-grid .footer-column:nth-child(3) a:hover,
.footer-grid .footer-column:nth-child(4) a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(229, 224, 216, 0.8);
}

.footer-bottom p {
  color: #5b6577;
}

.legal-page {
  min-height: 100vh;
  padding: 72px 0 88px;
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
}

.legal-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.legal-shell h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.legal-shell h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--text-soft);
}

.contact-detail-list,
.what-next-list {
  display: grid;
  gap: 10px;
}

.contact-detail-list strong {
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.nav-toggle:focus,
.button:focus {
  outline: 2px solid rgba(184, 138, 68, 0.4);
  outline-offset: 3px;
}

.active-link {
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .feature-layout,
  .contact-layout,
  .page-hero-grid,
  .pricing-grid,
  .three-up,
  .timeline,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .two-up,
  .form-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section,
  .page-hero {
    padding: 68px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 4px;
  }

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

  .lang-switch {
    order: 3;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    max-width: none;
  }

  .hero-panel,
  .feature-card,
  .contact-form,
  .service-card,
  .detail-card,
  .pricing-card,
  .timeline-step,
  .comparison-card,
  .summary-panel,
  .info-card,
  .pricing-line,
  .legal-shell,
  .faq-item {
    padding: 24px;
  }

  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .panel-foot,
  .card-foot,
  .pricing-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero h1 {
    max-width: none;
    line-height: 1;
  }

  .timeline-step {
    min-height: 0;
  }

  .timeline-step p {
    max-width: none;
  }

  .legal-tools {
    flex-direction: column;
    align-items: flex-start;
  }
}
