:root {
  --teal-950: #04342C;
  --teal-800: #085041;
  --teal-700: #0F6E56;
  --teal-400: #1D9E75;
  --teal-100: #E1F5EE;

  --coral-800: #712B13;
  --coral-700: #993C1D;
  --coral-600: #D85A30;
  --coral-300: #F0997B;
  --coral-100: #FAECE7;

  --cream: #F7F5EE;
  --white: #FFFFFF;
  --ink: #04342C;
  --ink-muted: #5F5E5A;
  --ink-faint: #888780;
  --border-light: #E7E5DC;
  --border-mid: #B4B2A9;
  --shadow-soft: 0 10px 26px rgba(4, 52, 44, 0.10);
  --shadow-lift: 0 14px 30px rgba(4, 52, 44, 0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.5;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.lang-th {
  font-family: 'Noto Sans Thai', var(--font-body);
}

body.lang-th h1,
body.lang-th h2,
body.lang-th .logo,
body.lang-th .tier-title,
body.lang-th .service-title,
body.lang-th .service-card-title,
body.lang-th .pillar-heading,
body.lang-th .checklist-content h3,
body.lang-th .step-number,
body.lang-th .cta-band h2 {
  font-family: 'Noto Sans Thai', var(--font-body);
}

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: relative;
  padding: 0 2rem;
  box-sizing: border-box;
  border-bottom: 0.5px solid var(--border-light);
}

.navbar-inner {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.15rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--teal-950);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 250px;
  height: auto;
}

.logo-link {
  line-height: 0;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 13.5px;
  color: var(--ink-muted);
  white-space: nowrap;
  margin-right: 66px;
  order: 1;
}

.lang-link-mobile {
  display: none;
}

.nav-links a:hover {
  color: var(--coral-600);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 210px;
  padding: 8px;
  background: var(--white);
  border: 0.5px solid var(--border-light);
  box-shadow: 0 16px 34px rgba(4, 52, 44, 0.12);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 35;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 10px;
  line-height: 1.25;
  color: var(--ink-muted);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--coral-600);
}

.nav-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 28px;
  order: 3;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  order: 4;
}

.nav-socials .icon-link {
  flex-shrink: 0;
}

.nav-socials .icon-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--teal-950);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap;
  margin-right: 28px;
  order: 2;
}

.lang-switch a {
  color: var(--ink-muted);
}

.lang-switch a:hover {
  color: var(--coral-600);
}

.lang-current {
  color: var(--teal-950);
  font-weight: 600;
}

.lang-divider {
  color: var(--border-mid);
}

.lang-link {
  color: var(--ink-muted);
}

.lang-link:hover {
  color: var(--coral-600);
}

.sticky-whatsapp,
.sticky-line {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(4, 52, 44, 0.28);
  z-index: 40;
}

.sticky-line {
  background: #06C755;
}

.sticky-whatsapp:hover,
.sticky-line:hover {
  opacity: 0.9;
}

.sticky-whatsapp svg,
.sticky-line img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.sticky-whatsapp svg {
  width: 38px;
  height: 38px;
}

.sticky-line img {
  filter: brightness(0) invert(1);
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-950);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(4, 52, 44, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 40;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-coral { background: var(--coral-600); color: var(--white); }
.btn-coral:hover {
  background: var(--coral-700);
  box-shadow: 0 10px 24px rgba(216, 90, 48, 0.24);
  transform: translateY(-2px);
}

.btn-teal { background: var(--teal-700); color: var(--white); }
.btn-teal:hover {
  background: var(--teal-800);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.btn-outline { background: transparent; color: var(--teal-950); border: 0.5px solid var(--border-mid); }
.btn-outline:hover {
  border-color: var(--teal-950);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.btn-outline-light { background: transparent; color: var(--cream); border: 0.5px solid rgba(247,245,238,0.35); }
.btn-outline-light:hover {
  border-color: var(--cream);
  background: rgba(247,245,238,0.08);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.page-hero {
  height: 450px;
}

.page-hero .hero-copy {
  max-width: 620px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 52, 44, 0.94) 0%,
    rgba(4, 52, 44, 0.90) 32%,
    rgba(4, 52, 44, 0.65) 55%,
    rgba(4, 52, 44, 0.25) 76%,
    rgba(4, 52, 44, 0) 92%
  );
}

.hero-inner {
  position: relative;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.hero-inner-content {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-copy {
  max-width: 580px;
}

.hero .eyebrow {
  color: var(--coral-300);
}

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-700);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-copy .subhead {
  font-size: 15.5px;
  color: var(--teal-100);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.hero-copy .supporting {
  font-size: 13.5px;
  color: rgba(225, 245, 238, 0.75);
  font-style: italic;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Pillar strip ---------- */
.pillar-strip {
  position: relative;
  padding: 3.5rem 2rem 3rem;
  background: var(--white);
}

.pillar-path {
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed var(--coral-300);
}

.pillar-eyebrow {
  text-align: center;
  margin-bottom: 10px;
}

.pillar-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-950);
  text-align: center;
  margin-bottom: 14px;
}

.pillar-heading::after,
.services-section-intro h2::after,
.contact-section-intro h2::after,
.cta-band h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--coral-600);
}

.dark-section h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 16px 0 0;
  border-radius: 999px;
  background: var(--coral-300);
}

.pillar-description {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.pillar-row {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.pillar {
  width: 150px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.15s ease;
}

.pillar:hover {
  transform: translateY(-3px);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border-light);
}

.pillar-icon svg { width: 30px; height: 30px; }

.pillar.teal .pillar-icon { background: var(--teal-100); }
.pillar.teal .pillar-icon svg { stroke: var(--teal-700); }

.pillar.coral .pillar-icon { background: var(--coral-100); }
.pillar.coral .pillar-icon svg { stroke: var(--coral-700); }

.pillar-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--teal-950);
}

.pillar-sub {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.4;
  margin-top: 4px;
}

/* ---------- Dark section ---------- */
.dark-section {
  background: var(--teal-950);
  color: var(--cream);
  padding: 3.75rem 2rem;
}

.dark-section .eyebrow {
  color: var(--teal-400);
}

.dark-section h2 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 480px;
}

.dark-section-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.dark-section-copy {
  flex: 1.1;
  min-width: 0;
}

.dark-section-image {
  flex: 0.9;
  min-width: 0;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 620px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--coral-600);
  margin-bottom: 8px;
}

.step-title {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--teal-100);
  line-height: 1.55;
}

/* ---------- Tiers ---------- */
.tiers {
  padding: 4rem 2rem 1.5rem;
}

.tiers-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.tier-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.tier-card.featured {
  border: 1.5px solid var(--coral-600);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(4, 52, 44, 0.06);
}

.tier-eyebrow {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.tier-card:not(.featured) .tier-eyebrow { color: var(--teal-700); }
.tier-card.featured .tier-eyebrow { color: var(--coral-700); }

.tier-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.tier-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.tier-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-950);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-950);
  margin: 16px 0 2px;
}

.tier-price-thb {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: 2px;
}

.tier-price-note {
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 11px;
}

.tier-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.tier-list li.item-base svg { color: var(--teal-700); }
.tier-list li.item-added svg { color: var(--coral-600); }

.tier-closing {
  font-size: 14px;
  color: var(--ink-faint);
  font-style: italic;
  padding-top: 14px;
  margin-top: auto;
  border-top: 0.5px solid var(--border-light);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 1rem 2rem 3rem;
  text-align: center;
}

.trust-strip p {
  font-size: 12.5px;
  color: var(--ink-faint);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-950);
  color: var(--teal-100);
  padding: 3.5rem 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-brand .footer-logo img {
  width: 300px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--teal-100);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--coral-600);
  letter-spacing: 0.02em;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: var(--teal-100);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-address {
  max-width: 230px;
  margin-bottom: 14px;
  color: rgba(225, 245, 238, 0.82);
}

.footer-contact-details {
  margin-bottom: 14px;
}

.footer-contact-details a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  margin-bottom: 7px;
  color: var(--teal-100);
}

.footer-contact-details img,
.footer-contact-details svg {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  object-fit: contain;
}

.footer-contact-details svg {
  stroke: currentColor;
}

.legal-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
}

.legal-contact-link img {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  object-fit: contain;
}

.contact-icons {
  display: flex;
  gap: 16px;
  margin-top: 4px;
  align-items: center;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease;
}

.icon-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.icon-link:hover {
  opacity: 0.8;
}

.footer-col a:hover {
  color: var(--coral-600);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.18);
  border-top: 0.5px solid rgba(247,245,238,0.15);
  max-width: none;
  margin: 0 -2rem;
  padding: 1.25rem max(2rem, calc((100vw - 1160px) / 2 + 2rem));
  font-size: 12px;
  color: var(--teal-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-disclaimer {
  color: rgba(225, 245, 238, 0.55);
  text-align: right;
  max-width: 640px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-disclaimer { text-align: center; max-width: 100%; }
  .navbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero { height: auto; }
  .page-hero { height: auto; }
  .hero .hero-inner { height: auto; padding: 4rem 2rem; }
  .page-hero .hero-inner { padding: 2rem 2rem; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(4,52,44,0.55) 0%, rgba(4,52,44,0.88) 55%, rgba(4,52,44,0.94) 100%);
  }
  .hero-copy { max-width: 100%; }
  .dark-section-inner { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Narrow phone portrait: hamburger nav ---------- */
@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    box-sizing: border-box;
    margin-right: 0;
    order: initial;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border-top: 0.5px solid var(--border-light);
    box-shadow: 0 12px 24px rgba(4, 52, 44, 0.08);
    padding: 1rem 2rem 1.25rem;
    z-index: 20;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-item {
    display: block;
  }
  .nav-dropdown-trigger {
    width: 100%;
  }
  .nav-dropdown-trigger::after,
  .nav-dropdown::after {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-menu a {
    padding: 7px 0;
    font-size: 13px;
  }
  .lang-switch {
    display: none;
  }
  .navbar-inner {
    gap: 10px;
    justify-content: space-between;
    padding: 0;
    min-height: 72px;
  }
  .navbar .logo {
    order: 1;
    margin-right: 0;
  }
  .navbar .logo img {
    content: url("../assets/logo-assets/logo-mark.svg");
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  .nav-socials {
    order: 2;
    display: flex;
    align-items: center;
    gap: clamp(8px, 2.4vw, 11px);
    margin-left: auto;
    margin-right: 10px;
  }
  .nav-socials .icon-link img {
    width: 17px;
    height: 17px;
  }
  .nav-group {
    order: 3;
    margin-left: 0;
  }
  .nav-cta {
    margin-right: 0;
    padding: 10px 12px;
  }
  .lang-link-mobile {
    order: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-muted);
    margin-right: 0;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .lang-link-mobile a {
    color: inherit;
    text-decoration: none;
  }
  .lang-link-mobile a:hover { color: var(--coral-600); }
  .lang-divider-mobile { color: var(--border-mid); }
  .nav-toggle {
    order: 5;
    display: inline-flex;
    padding: 8px 0;
    margin-right: 0;
  }
}

@media (max-width: 390px) {
  .nav-socials {
    display: none;
  }
}

/* ---------- Landscape phones / narrow tablets: compact expanded nav ---------- */
@media (min-width: 601px) and (max-width: 960px) {
  .navbar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .navbar-inner {
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 72px;
  }
  .logo img {
    width: clamp(128px, 17vw, 170px);
  }
  .nav-toggle,
  .lang-link-mobile {
    display: none;
  }
  .nav-group {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
    min-width: 0;
  }
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    transform: none;
    background: transparent;
    border-top: none;
    box-shadow: none;
    padding: 0;
    gap: 4px;
    margin-right: 8px;
    font-size: clamp(11px, 1.4vw, 13px);
    order: 1;
  }
  .nav-links a {
    padding: 7px 5px;
  }
  .nav-item {
    display: flex;
    align-items: center;
  }
  .nav-dropdown-menu {
    position: absolute;
    min-width: 170px;
    padding: 8px 0;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(4, 52, 44, 0.08);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown-menu a {
    padding: 7px 14px;
    font-size: 12px;
  }
  .lang-switch {
    display: flex;
    gap: 6px;
    font-size: clamp(11px, 1.4vw, 13px);
    margin-right: 8px;
    order: 2;
  }
  .nav-cta {
    margin-right: 8px;
    padding: 8px 12px;
    font-size: clamp(11px, 1.4vw, 13px);
    order: 3;
  }
  .nav-socials {
    display: flex;
    gap: 6px;
    order: 4;
  }
  .nav-socials .icon-link img {
    width: 14px;
    height: 14px;
  }
}

/* ---------- Desktop: standard 72px header ---------- */
@media (min-width: 961px) {
  .navbar-inner {
    padding: 0;
    height: 72px;
  }
  .logo img {
    width: auto;
    height: 60px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero-copy h1 { font-size: 28px; }
  .pillar-row { gap: 16px; }
  .pillar { width: 45%; }
  .pillar-path { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Services page ---------- */
.nav-links a[aria-current="page"] {
  color: var(--teal-950);
  font-weight: 600;
}

.services-grid-section {
  background: var(--white);
  padding: 4.5rem 2rem;
}

.services-section-intro {
  max-width: 680px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.services-section-intro h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--teal-950);
  line-height: 1.25;
  margin-bottom: 14px;
}

.services-section-intro p:not(.eyebrow) {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.services-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  border-radius: 16px;
  padding: 2rem;
  background: var(--cream);
}

.service-card.coral {
  background: var(--coral-100);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-icon.teal { background: var(--white); }
.service-icon.teal svg { stroke: var(--teal-700); }

.service-icon.coral { background: var(--white); }
.service-icon.coral svg { stroke: var(--coral-700); }

.service-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.teal-text { color: var(--teal-700); }
.coral-text { color: var(--coral-700); }

.service-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ---------- How it works page ---------- */
.howit-step {
  background: var(--white);
  padding: 4.5rem 2rem;
}

.howit-step.alt {
  background: var(--cream);
}

.howit-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.howit-inner.reverse {
  flex-direction: row-reverse;
}

.howit-number-col {
  flex: 0 0 auto;
}

.howit-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
}

.howit-number.teal {
  background: var(--teal-100);
  color: var(--teal-700);
}

.howit-number.coral {
  background: var(--coral-100);
  color: var(--coral-700);
}

@media (max-width: 860px) {
  .howit-inner, .howit-inner.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .service-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-list {
  margin: 0;
}

.service-list li {
  font-size: 13.5px;
}

.service-note {
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
  margin: 4px 0 0;
}

.service-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-link:hover {
  color: var(--coral-600);
}

.cta-band {
  background: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- About page ---------- */
.about-mission {
  background: var(--white);
  padding: 4.5rem 2rem;
}

.about-mission-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-950);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-body {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.about-partner {
  background: var(--cream);
  padding: 4.5rem 2rem;
  text-align: center;
}

.about-partner-inner {
  max-width: 600px;
  margin: 0 auto;
}

.about-partner-inner .service-desc {
  margin-left: auto;
  margin-right: auto;
}

.about-partner-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 500;
  color: var(--teal-700);
}

/* ---------- Contact page ---------- */
.contact-section {
  background: var(--white);
  padding: 4.5rem 2rem 5rem;
}

.contact-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-section-intro {
  text-align: center;
  margin: 0 auto 2.75rem;
  max-width: 1120px;
}

.contact-section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 500;
  color: var(--teal-950);
  margin: 0 0 14px;
}

.contact-section-intro p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 1080px;
}

.inquiry-form,
.contact-alt {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.botcheck-field {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-950);
  margin-bottom: 7px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--teal-950);
  background: var(--cream);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-700);
  background: var(--white);
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 26px;
}

.form-fieldset legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 6px;
  padding: 0;
}

.form-hint {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.radio-grid, .checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-muted);
  padding: 9px 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
}

.radio-option input, .checkbox-option input {
  accent-color: var(--teal-700);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  border: none;
  font-size: 14.5px;
  padding: 13px 24px;
  margin-top: 4px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success,
.form-error {
  display: none;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  text-align: center;
}

.form-success {
  color: var(--teal-950);
  background: var(--teal-100);
  border: 1px solid rgba(15, 110, 86, 0.28);
}

.form-error {
  color: var(--coral-700);
  background: var(--coral-100);
  border: 1px solid rgba(216, 90, 48, 0.28);
}

.contact-alt {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border-light);
}

.contact-alt-label {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.contact-icons-large {
  justify-content: center;
}

.contact-icons-large .icon-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .form-row, .radio-grid, .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1000px) {
  .contact-section-intro h2,
  .contact-section-intro p:not(.eyebrow) {
    white-space: nowrap;
  }
}

/* ---------- SEO landing pages ---------- */
.faq-list {
  margin-top: 24px;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--border-light);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-q {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 6px;
}

.faq-a {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.checklist-section {
  background: var(--white);
  padding: 4.5rem 2rem;
}

.checklist-inner {
  max-width: 760px;
  margin: 0 auto;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px;
  border-radius: 12px;
  background: var(--cream);
}

.checklist-status {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  margin-top: 3px;
}

.checklist-status.in-scope {
  background: var(--teal-100);
  color: var(--teal-700);
}

.checklist-status.direct {
  background: var(--coral-100);
  color: var(--coral-700);
}

.checklist-status.out-of-scope {
  background: var(--border-light);
  color: var(--ink-faint);
}

.checklist-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 4px;
}

.checklist-content p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .checklist-item {
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------- Legal pages ---------- */
.legal-header {
  background: var(--cream);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.legal-header .eyebrow {
  text-align: center;
  margin-bottom: 12px;
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 10px;
}

.legal-header .legal-updated {
  font-size: 13px;
  color: var(--ink-faint);
}

.legal-content {
  background: var(--white);
  padding: 3.5rem 2rem 4.5rem;
}

.legal-content-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-950);
  margin: 40px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-content li {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--teal-700);
  text-decoration: underline;
}

.legal-note {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---------- Footer legal links ---------- */
.footer-legal-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  font-size: 12px;
}

.footer-legal-links a {
  color: var(--teal-100);
}

.footer-legal-links a:hover {
  color: var(--coral-600);
}

@media (max-width: 860px) {
  .footer-legal-links { justify-content: center; }
}
