:root {
  --ink: #102f34;
  --ink-2: #17454b;
  --ink-3: #1f5960;
  --gold: #d7b56d;
  --gold-2: #f1dba0;
  --sand: #fbf5ea;
  --sand-2: #f4ead8;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --muted: #617578;
  --line: rgba(16, 47, 52, 0.12);
  --shadow: 0 22px 60px rgba(16, 47, 52, 0.16);
  --shadow-soft: 0 14px 40px rgba(16, 47, 52, 0.09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1120px;
  --topbar-height: 76px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(215, 181, 109, 0.28), transparent 30rem),
    linear-gradient(180deg, #fcf8ef 0%, #f6ead8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

body::selection {
  background: rgba(215, 181, 109, 0.38);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(215, 181, 109, 0.95);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(64px, 9vw, 118px) 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbar-height);
  background: rgba(251, 245, 234, 0.76);
  border-bottom: 1px solid rgba(16, 47, 52, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(251, 245, 234, 0.92);
  box-shadow: 0 10px 30px rgba(16, 47, 52, 0.08);
}

.topbar__inner {
  width: min(100% - 24px, var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 118px;
  height: 54px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink-2);
  padding: 0.32rem;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  padding: 0.28rem;
  border: 1px solid rgba(16, 47, 52, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.nav a {
  min-height: 42px;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  color: rgba(16, 47, 52, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav a:hover {
  background: rgba(16, 47, 52, 0.08);
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  padding: 0.26rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 47, 52, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(16, 47, 52, 0.06);
}

.language-switch__button {
  min-width: 42px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.language-switch__button[aria-pressed="true"] {
  background: var(--ink-2);
  color: white;
  box-shadow: 0 8px 18px rgba(16, 47, 52, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(16, 47, 52, 0.96), rgba(23, 69, 75, 0.94)),
    var(--ink-2);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(241, 219, 160, 0.26), transparent 22rem),
    radial-gradient(circle at 16% 86%, rgba(255, 255, 255, 0.11), transparent 18rem);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -32% 24%;
  height: 420px;
  border-radius: 999px 999px 0 0;
  background: rgba(215, 181, 109, 0.1);
  transform: rotate(-7deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.support-card h2 {
  margin: 0;
  font-size: clamp(2.3rem, 10vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 3.6vw, 1.28rem);
}

.hero__actions,
.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.88rem 1.24rem;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #14383d;
  box-shadow: 0 16px 32px rgba(215, 181, 109, 0.23);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--soft {
  background: rgba(16, 47, 52, 0.08);
  color: var(--ink);
  border-color: rgba(16, 47, 52, 0.08);
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 1.45rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 46px;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.trust-row strong {
  color: white;
}

.hero-card,
.image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-card img,
.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card figcaption,
.image-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.05rem;
  font-weight: 800;
}

.pin {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(215, 181, 109, 0.16);
}

.quick-panel {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 1rem;
  margin-top: -38px;
}

.quick-card,
.feature-card,
.support-card,
.timeline,
.accordion details,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.quick-card {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
}

.quick-card__icon,
.timeline__number,
.feature-card__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ink-2);
  color: white;
  font-weight: 900;
}

.quick-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-size: 0.86rem;
}

.quick-card h2,
.feature-card h3,
.timeline h3,
.contact-panel h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.026em;
}

.quick-card p,
.feature-card p,
.timeline p,
.section-heading p,
.support-card p,
.accordion p,
.step-list {
  color: var(--muted);
}

.quick-card p,
.feature-card p,
.timeline p,
.section-heading p,
.support-card p,
.accordion p {
  margin: 0.48rem 0 0;
}

.quick-card a,
.contact-phone,
.inline-link {
  color: var(--ink-3);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

.split-layout,
.power-layout {
  display: grid;
  gap: 2rem;
}

.section-heading {
  max-width: 640px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.support-card h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 8vw, 4.4rem);
}

.section-heading .eyebrow,
.support-card .eyebrow {
  color: var(--ink-3);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.timeline__number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(16, 47, 52, 0.14);
}

.inline-link {
  display: inline-flex;
  margin-top: 0.7rem;
}

.section-alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 181, 109, 0.14), transparent 26rem),
    rgba(255, 255, 255, 0.42);
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.feature-card {
  padding: 1.18rem;
  border-radius: var(--radius-md);
}

.feature-card--warning {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 220, 0.9));
  border-color: rgba(215, 181, 109, 0.36);
}

.feature-card__top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(23, 69, 75, 0.1);
  color: var(--ink-2);
}

.feature-card .note {
  margin-top: 0.9rem;
  padding: 0.9rem;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(215, 181, 109, 0.12);
  color: var(--ink-2);
  font-weight: 700;
}

.power-layout {
  align-items: start;
}

.image-card {
  background: white;
  color: var(--ink);
  border-color: rgba(16, 47, 52, 0.1);
}

.image-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.image-card figcaption {
  color: var(--muted);
}

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

.accordion details {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 1rem 3.5rem 1rem 1.15rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 47, 52, 0.08);
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.accordion details[open] summary::after {
  content: "−";
  background: var(--ink-2);
  color: white;
}

.accordion__content {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid rgba(16, 47, 52, 0.08);
}

.step-list {
  display: grid;
  gap: 0.68rem;
  margin: 1rem 0 0;
  padding-left: 1.4rem;
}

.step-list li::marker {
  color: var(--ink-3);
  font-weight: 900;
}

.support-section {
  padding-top: 0;
}

.support-card {
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at top right, rgba(215, 181, 109, 0.22), transparent 22rem);
}

.contact-panel {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--ink-2);
  color: white;
}

.contact-panel__label {
  margin: 0 0 0.4rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel h3 {
  color: white;
  font-size: 1.8rem;
}

.contact-phone {
  display: inline-flex;
  margin-top: 0.25rem;
  color: white;
  font-size: 1.1rem;
}

.contact-actions .btn--soft {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer {
  padding: 1.6rem 0 calc(1.2rem + env(safe-area-inset-bottom));
  color: var(--muted);
}

.footer__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.footer p {
  margin: 0;
  font-weight: 700;
}

.back-to-top {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.mobile-actions {
  position: fixed;
  inset: auto 12px calc(12px + env(safe-area-inset-bottom)) 12px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(16, 47, 52, 0.9);
  box-shadow: 0 18px 42px rgba(16, 47, 52, 0.25);
  backdrop-filter: blur(14px);
}

.mobile-actions a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 900;
}

.mobile-actions a:first-child {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(96px + env(safe-area-inset-bottom));
  z-index: 80;
  max-width: calc(100% - 32px);
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: var(--ink-2);
  color: white;
  box-shadow: 0 16px 34px rgba(16, 47, 52, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 800;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

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

@media (min-width: 520px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .hero__actions,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .trust-row {
    grid-template-columns: repeat(3, max-content);
  }

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

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .nav {
    display: inline-flex;
  }

  .brand {
    width: 128px;
    height: 58px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.88fr);
  }

  .quick-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -54px;
  }

  .split-layout {
    grid-template-columns: 0.78fr 1fr;
    align-items: start;
  }

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

  .feature-card--warning {
    grid-column: span 2;
  }

  .power-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  }

  .power-layout .accordion {
    grid-column: 1 / -1;
  }

  .support-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    align-items: center;
  }

  .footer__inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-actions {
    display: none;
  }

  .toast {
    bottom: 24px;
  }
}

@media (min-width: 980px) {
  .power-layout {
    grid-template-columns: 0.72fr 1fr;
  }

  .power-layout .accordion {
    grid-column: 1 / 2;
  }

  .power-layout .image-card {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
  }
}

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

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