:root {
  --bg: #F7F7F5;
  --surface: #FFFFFF;
  --ink: #16181B;
  --muted: #5E6368;
  --line: #E6E5E1;
  --accent: #1F4E5F;
  --accent-deep: #153B49;
  --accent-soft: #E8EFF2;
  --copper: #C6512B;
  --cta: #C94117;
  --cta-deep: #B33812;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(22, 24, 27, 0.08);
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: inline-block;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-deep);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 245, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.brand-name span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav .nav-cta {
  background: var(--cta);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav .nav-cta:hover {
  background: var(--cta-deep);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.lang-switcher {
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.lang-switcher:hover {
  border-color: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 116px 0 96px;
  background:
    radial-gradient(52rem 30rem at 82% -8%, rgba(31, 78, 95, 0.10), transparent 60%),
    linear-gradient(90deg, rgba(22, 24, 27, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(22, 24, 27, 0.045) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  max-width: 17em;
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  max-width: 40em;
  margin: 0 0 34px;
  font-size: 1.15rem;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--cta-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.02rem;
  font-weight: 700;
}

.trust-item span {
  font-size: 0.86rem;
  color: var(--muted);
}

/* ---------- Sections ---------- */

.section {
  padding: 104px 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  max-width: 18em;
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-lede {
  max-width: 42em;
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.97rem;
}

.card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.93rem;
  color: var(--ink);
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.facts div {
  display: flex;
  flex-direction: column;
}

.facts strong {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.facts span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-top: 18px;
  border-top: 3px solid var(--line);
}

.steps li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}

.step-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- Why ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.why-grid h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.faq-list details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 30px 18px 0;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cta);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-grid p {
  color: var(--muted);
  max-width: 42em;
}

.about-facts {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 24px;
}

.about-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts div:last-child {
  border-bottom: none;
}

.about-facts dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-facts dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
}

.contact-intro p:not(.eyebrow) {
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
  font-size: 0.98rem;
}

.inquiry-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field-hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 78, 95, 0.14);
  background: var(--surface);
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

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

.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.5em;
}

.form-status.success {
  color: #1E6F45;
}

.form-status.error {
  color: #B03A2E;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-name span {
  color: #7FA8B8;
}

.footer-brand p,
.footer-col p {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer a {
  color: #9FC0CC;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  padding-bottom: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Reveal animation ---------- */

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .cards,
  .facts,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps li:nth-child(5) {
    grid-column: span 2;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 84px 0 68px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-right {
    gap: 10px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 24px 20px;
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    text-align: center;
    border-radius: 999px;
  }

  .cards,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .steps li:nth-child(5) {
    grid-column: auto;
  }

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

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- Privacy page ---------- */

.page {
  padding: 88px 0 96px;
}

.page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 10px;
}

.page .meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 40px;
}

.page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 34px 0 10px;
}

.page p,
.page li {
  color: var(--muted);
  font-size: 0.98rem;
}

.page ul {
  padding-left: 20px;
}

.page .legal-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
