:root {
  --bg: #f8f5ef;
  --surface: #ffffff;
  --surface-soft: #f4efe7;
  --text: #182b3d;
  --muted: #5f7083;
  --primary: #00274c;
  --primary-dark: #001b36;
  --accent: #8d2631;
  --gold: #c7a96b;
  --secondary: #eef3f8;
  --border: #ded6ca;
  --shadow: 0 18px 48px rgba(0, 39, 76, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(199,169,107,0.10), transparent 26%),
    linear-gradient(180deg, #fcfbf9 0%, var(--bg) 100%);
  line-height: 1.68;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(222,214,202,0.85);
  background: rgba(252,251,249,0.9);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--text);
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.brand-wordmark strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.brand-wordmark span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav > a,
.nav > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.nav > a:not(.btn) {
  color: var(--text);
  font-weight: 500;
}

.nav > a:not(.btn):hover {
  color: var(--primary);
}

.btn {
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  box-shadow: var(--shadow);
}

.nav > a.btn-sm {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  min-height: 36px;
}

.btn-secondary {
  background: #eef2f6;
  color: var(--primary);
  box-shadow: none;
  border: 1px solid var(--border);
}

.lang-toggle {
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 14px;
}

/* ===== HERO ===== */

.hero {
  padding: 86px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

h1,
h2 {
  font-family: 'Playfair Display', 'Noto Serif SC', serif;
  color: var(--primary);
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(1.56rem, 2.25vw, 2.18rem);
  line-height: 1.18;
  max-width: 18ch;
  margin: 10px 0 16px;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.56rem, 2.25vw, 2.18rem);
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 700;
}

h3 {
  color: var(--primary);
  font-size: 1.04rem;
  margin: 0 0 10px;
}

.lead {
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin: 26px 0 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
}

.quick-points {
  margin-top: 20px;
  padding-left: 18px;
}

.quick-points li {
  margin-bottom: 8px;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust-item {
  padding: 16px 16px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 39, 76, 0.04);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 0.96rem;
}

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

.hero-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ec 100%);
  box-shadow: var(--shadow);
}

.hero-logo-wrap {
  display: grid;
  place-items: center;
  padding: 8px 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(222,214,202,0.8);
}

.hero-logo {
  width: 220px;
}

.stat-list div {
  margin-bottom: 16px;
}

.stat-list strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-list span {
  color: var(--muted);
}

/* ===== SECTION ===== */

.section {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, #eef3f8 0%, #f8f5ef 100%);
  border-top: 1px solid rgba(222,214,202,0.65);
  border-bottom: 1px solid rgba(222,214,202,0.65);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: start;
  padding: 80px 0 38px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.section-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.card,
.panel,
.contact-card,
details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.card,
.panel,
.contact-card {
  padding: 26px;
}

.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(0, 39, 76, 0.08);
}

.card.emphasis {
  background: linear-gradient(135deg, var(--primary), #0b3c6a);
  color: white;
}

.card.emphasis h3,
.card.emphasis p {
  color: white;
}

.feature-list div {
  margin-bottom: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3e6cc;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.step p,
.card p,
.panel p,
.feature-list span,
.footer-wrap,
.form-note,
summary + p,
label span,
.contact-section p {
  color: var(--muted);
}

/* ===== Forms & FAQ ===== */

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

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
  background: white;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 600;
  list-style: none;
}

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

/* ===== Footer ===== */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  font-size: 14px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

/* ===== Responsive ===== */

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .page-hero,
  .card-grid.three,
  .steps,
  .trust-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    align-items: flex-start;
    padding: 14px 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .section {
    padding: 60px 0;
  }

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