:root {
  --ink: #172126;
  --muted: #5b6870;
  --line: #d9e2e5;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #116a6b;
  --teal-dark: #0b4346;
  --amber: #d8923a;
  --sage: #78917f;
  --shadow: 0 22px 60px rgba(17, 38, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(19, 33, 38, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #dff3ee;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  box-shadow: 0 0 0 2px rgba(17, 106, 107, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}

.site-nav a {
  opacity: 0.88;
}

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

.language-toggle {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-header.is-scrolled .language-toggle,
.site-header.is-open .language-toggle {
  border-color: var(--line);
  background: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: transparent;
  color: currentColor;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 74px) 76px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 20, 24, 0.88) 0%, rgba(8, 31, 34, 0.74) 38%, rgba(8, 31, 34, 0.18) 76%),
    linear-gradient(0deg, rgba(7, 26, 29, 0.72) 0%, rgba(7, 26, 29, 0.08) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  padding: 24px clamp(20px, 4vw, 54px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 74px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.4fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.section-intro p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.cta-section p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.plan-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  padding: 26px;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-card p,
.plan-card p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 900;
}

.plans {
  background: #eaf1ee;
}

.service-area {
  background: var(--white);
}

.service-area .section-heading {
  max-width: 900px;
}

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

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

.plan-card {
  padding: 28px;
  box-shadow: 0 16px 44px rgba(25, 45, 50, 0.07);
}

.plan-card.featured {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

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

.price {
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.plan-card.featured .price {
  color: var(--white);
}

.plan-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 900;
}

.plan-card.featured a {
  color: var(--amber);
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  color: var(--white);
  background: var(--sage);
  font-weight: 900;
}

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

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 64px);
  padding: clamp(70px, 9vw, 108px) clamp(20px, 6vw, 74px);
  color: var(--white);
  background: #142328;
}

.cta-section .eyebrow {
  color: #e1a552;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfc;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(17, 106, 107, 0.18);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-error {
  color: #a43f2f;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 74px);
  color: rgba(255, 255, 255, 0.78);
  background: #0e171b;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .language-toggle {
    margin-top: 6px;
    width: 100%;
    color: var(--ink);
    border-color: var(--line);
    background: var(--paper);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 20, 24, 0.9), rgba(6, 20, 24, 0.52)),
      linear-gradient(0deg, rgba(7, 26, 29, 0.74), rgba(7, 26, 29, 0.2));
  }

  .trust-band,
  .split,
  .process,
  .cta-section,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero-image {
    object-position: 74% center;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
