:root {
  --ink: #13231f;
  --forest: #143f35;
  --leaf: #1f6f5b;
  --teal: #21a188;
  --mint: #dff6ed;
  --mint-strong: #b9ead8;
  --paper: #fbfdfb;
  --line: rgba(19, 35, 31, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --text: #182c27;
  --muted: #5e746d;
  --white: #ffffff;
  --shadow: 0 18px 56px rgba(19, 35, 31, 0.14);
  --content-max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.site-header.scrolled .nav-shell {
  background: rgba(251, 253, 251, 0.92);
  border-color: rgba(19, 35, 31, 0.12);
  box-shadow: 0 10px 32px rgba(19, 35, 31, 0.09);
}

.nav-shell {
  width: min(var(--content-max), calc(100vw - 36px));
  margin: 0 auto;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(20, 63, 53, 0.72);
  color: var(--white);
  backdrop-filter: blur(22px);
}

.site-header.scrolled .nav-shell {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 3.4vw, 30px);
  font-weight: 700;
}

.brand-line {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mint-strong);
}

.site-header.scrolled .brand-line {
  color: var(--leaf);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  color: currentColor;
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--mint);
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.site-header.scrolled .nav-booking {
  border-color: rgba(20, 63, 53, 0.14);
}

.nav-actions {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .nav-actions {
  border-color: var(--line);
  background: rgba(20, 63, 53, 0.05);
}

.lang-btn {
  min-width: 34px;
  border: 0;
  border-radius: 5px;
  padding: 7px 8px;
  background: transparent;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.68;
  transition: background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.lang-btn.active,
.lang-btn:hover {
  opacity: 1;
  background: var(--mint);
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 116px 24px 54px;
  color: var(--white);
  background:
    radial-gradient(circle at var(--mx, 58%) var(--my, 45%), rgba(33, 161, 136, 0.26), transparent 32vw),
    linear-gradient(140deg, #12372f 0%, #143f35 52%, #0f2a24 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(251, 253, 251, 0), var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content-max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 30px 0 46px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint-strong);
}

h1,
h2,
h3,
p {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  hyphens: manual;
  text-wrap: balance;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: 1;
  font-weight: 800;
}

h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 20px);
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 7px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--mint);
  color: var(--forest);
}

.button.primary:hover {
  background: var(--mint-strong);
}

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

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin-top: 36px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.1;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.76;
}

.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 85%, transparent);
}

.scene-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.panel-a {
  right: clamp(18px, 7vw, 112px);
  top: 22%;
  width: clamp(190px, 20vw, 270px);
  height: 184px;
  padding: 16px;
  animation: float-a 8s ease-in-out infinite;
}

.panel-b {
  right: clamp(102px, 17vw, 230px);
  bottom: 18%;
  width: clamp(210px, 24vw, 330px);
  height: 138px;
  padding: 16px;
  animation: float-b 9s ease-in-out infinite;
}

.panel-c {
  right: clamp(24px, 9vw, 136px);
  bottom: 34%;
  width: 188px;
  padding: 16px;
  animation: float-c 10s ease-in-out infinite;
}

.scene-label {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bars {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--teal), var(--mint-strong));
  animation: grow-bar 2.2s ease both;
}

.sparkline {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 30px;
  height: 52px;
  background:
    linear-gradient(135deg, transparent 12%, var(--mint-strong) 12% 14%, transparent 14% 32%, var(--mint-strong) 32% 34%, transparent 34% 55%, var(--mint-strong) 55% 57%, transparent 57% 76%, var(--mint-strong) 76% 78%, transparent 78%),
    linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.scene-total {
  margin-top: 14px;
  color: var(--mint);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.check-row span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint-strong);
  box-shadow: 0 0 0 5px rgba(185, 234, 216, 0.12);
}

.section-pad {
  width: min(var(--content-max), calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.section-head.align-left {
  align-items: flex-start;
  text-align: left;
}

.section-head p:not(.eyebrow) {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.win-card,
.service-card,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.win-card:hover,
.service-card:hover,
.timeline-item:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 91, 0.28);
  box-shadow: 0 14px 36px rgba(19, 35, 31, 0.09);
}

.win-card {
  min-height: 220px;
  padding: 22px;
}

.card-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.win-card p,
.service-card p,
.timeline-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.role {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.role-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.role-stack {
  display: grid;
  gap: 12px;
}

.role-stack div {
  padding: 20px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
}

.role-stack span {
  display: block;
  color: var(--mint-strong);
  font-weight: 800;
}

.role-stack p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.analyzer {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--content-max)) / 2));
  padding-right: max(24px, calc((100vw - var(--content-max)) / 2));
  background: linear-gradient(180deg, var(--paper), #eef8f2);
}

.analyzer-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  max-width: var(--content-max);
  margin: 0 auto;
  align-items: start;
}

.diagnostic-form {
  display: grid;
  gap: 10px;
  align-self: start;
}

.diagnostic-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.diagnostic-group p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.diagnostic-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diagnostic-choice {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: #f7fbf7;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: manual;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.diagnostic-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 111, 91, 0.28);
}

.diagnostic-choice.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.result-panel {
  min-height: 432px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(24px, 3.4vw, 34px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.result-panel h3 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(30px, 4.2vw, 48px);
}

.result-panel p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.diagnostic-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diagnostic-profile span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.result-list-wrap {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.result-list-wrap > span {
  color: var(--mint-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.result-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.result-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.result-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-strong);
}

.rhythm {
  align-self: end;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.rhythm span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rhythm strong {
  color: var(--mint);
  font-size: clamp(20px, 2.6vw, 30px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 186px;
  padding: 22px;
}

.service-card h3,
.package-card h3,
.trust-profile-card h3,
.deliverable-card strong {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.service-card h3::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--teal);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.package-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 91, 0.28);
  box-shadow: 0 14px 36px rgba(19, 35, 31, 0.09);
}

.package-card.featured {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.package-card > span {
  width: fit-content;
  margin-bottom: 26px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--mint);
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-card h3 {
  color: inherit;
}

.package-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.package-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
}

.package-card.featured li {
  color: rgba(255, 255, 255, 0.86);
}

.package-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.advisor {
  padding-top: clamp(30px, 5vw, 58px);
}

.advisor-panel,
.mid-cta-panel {
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.advisor-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(28px, 5vw, 48px);
}

.advisor-panel h2,
.mid-cta-panel h2 {
  color: var(--white);
}

.advisor-panel p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.advisor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.advisor-points span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 850;
}

.trust {
  padding-top: clamp(30px, 5vw, 58px);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
}

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

.trust-column-label {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-profile-card,
.deliverable-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.trust-profile-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px 14px;
}

.trust-profile-card > span {
  grid-row: span 2;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.trust-profile-card p,
.deliverable-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.deliverable-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(223, 246, 237, 0.52), transparent 44%),
    var(--white);
}

.deliverable-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.deliverable-card span {
  color: var(--leaf);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deliverable-card strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.trust-standards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
}

.trust-standards span {
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--mint);
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.mid-cta {
  padding-top: clamp(30px, 5vw, 58px);
}

.mid-cta-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(30px, 6vw, 62px);
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 161, 136, 0.28), transparent 42%),
    var(--forest);
}

.mid-cta-panel h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.local-seo {
  padding-top: clamp(30px, 5vw, 58px);
}

.local-seo-panel {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
}

.local-seo-panel h2 {
  max-width: 820px;
}

.local-seo-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 54px);
}

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

.timeline-item {
  padding: 22px;
}

.timeline-item span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.68fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-points a,
.contact-points span {
  display: inline-flex;
  width: fit-content;
  color: var(--forest);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(19, 35, 31, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7fbf7;
  color: var(--ink);
  padding: 12px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(33, 161, 136, 0.12);
}

.contact-form .button {
  border: 0;
  color: var(--white);
  background: var(--forest);
}

.contact-form .button:hover {
  background: var(--leaf);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-booking {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(19, 35, 31, 0.24);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-booking::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint-strong);
  box-shadow: 0 0 0 5px rgba(185, 234, 216, 0.16);
}

.floating-booking:hover {
  transform: translateY(-3px);
  background: var(--leaf);
  box-shadow: 0 22px 52px rgba(19, 35, 31, 0.28);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.booking-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 24, 20, 0.58);
  backdrop-filter: blur(10px);
}

.booking-dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: min(860px, calc(100svh - 48px));
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 22px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
}

.booking-modal.open .booking-dialog {
  transform: translateY(0) scale(1);
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.booking-intro {
  min-height: 100%;
  padding: 34px 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(185, 234, 216, 0.28), transparent 34%),
    var(--forest);
  color: var(--white);
}

.booking-intro .eyebrow {
  color: var(--mint-strong);
}

.booking-intro h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 46px);
}

.booking-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 54px 22px 22px 0;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.booking-card-group {
  display: grid;
  gap: 10px;
}

.booking-card-group > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.booking-choice {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  background: #f7fbf7;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.booking-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 111, 91, 0.28);
}

.booking-choice.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form .button {
  border: 0;
  color: var(--white);
  background: var(--forest);
}

.booking-form .button:hover {
  background: var(--leaf);
}

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

.site-footer {
  width: min(var(--content-max), calc(100vw - 48px));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-mark {
  color: var(--forest);
}

.footer-brand .brand-line {
  color: var(--leaf);
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--forest);
}

.legal-nav {
  width: min(900px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 24px 0;
}

.legal-nav .brand-mark {
  color: var(--forest);
}

.legal-nav .brand-line {
  color: var(--leaf);
}

.legal-nav a:last-child {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.legal-main {
  width: min(900px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 56px 0 84px;
}

.legal-main h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(40px, 7vw, 64px);
}

.legal-main .lead {
  max-width: 720px;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.legal-card {
  display: grid;
  gap: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-card section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-card section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3.4vw, 30px);
}

.legal-card p {
  margin: 8px 0;
  color: var(--muted);
}

.legal-card strong {
  color: var(--ink);
}

.legal-card a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes grow-bar {
  from {
    height: 8%;
    opacity: 0.4;
  }
  to {
    height: var(--h);
    opacity: 1;
  }
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-12px, 10px, 0); }
}

@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(16px, -8px, 0); }
}

@keyframes float-c {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-8px, -14px, 0); }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 253, 251, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-of-type {
    border-bottom: 0;
  }

  .nav-booking {
    margin-top: 10px;
    width: 100%;
    min-height: 42px;
    border-color: rgba(20, 63, 53, 0.12);
  }

  .hero {
    padding-top: 108px;
  }

  .hero-scene {
    opacity: 0.32;
  }

  .panel-a {
    right: -36px;
    top: 16%;
  }

  .panel-b {
    right: -62px;
    bottom: 14%;
  }

  .panel-c {
    display: none;
  }

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

  .role,
  .process,
  .contact,
  .analyzer-shell,
  .advisor-panel,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .result-panel {
    grid-template-columns: 1fr;
  }

  .booking-dialog {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    min-height: auto;
    padding: 30px 24px 18px;
  }

  .booking-form {
    padding: 0 24px 24px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px;
  }

  .nav-shell {
    width: calc(100vw - 20px);
    min-height: 58px;
    padding: 8px 9px 8px 14px;
    gap: 8px;
  }

  .brand-mark {
    font-size: 24px;
  }

  .brand-line {
    font-size: 8px;
    letter-spacing: 0.24em;
  }

  .nav-actions {
    gap: 2px;
    padding: 3px;
  }

  .lang-btn {
    min-width: 32px;
    padding: 7px 6px;
  }

  .hero {
    padding: 100px 20px 52px;
  }

  .hero-content,
  .section-pad,
  .site-footer {
    width: min(100%, calc(100vw - 40px));
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .wins-grid,
  .service-grid,
  .package-grid,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .win-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .floating-booking {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 16px;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-dialog {
    max-height: calc(100svh - 24px);
  }

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

  .booking-choice-grid {
    grid-template-columns: 1fr;
  }

  .booking-form .full {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
