:root {
  --navy: #0f2a43;
  --navy-2: #16395c;
  --navy-3: #0a1f33;
  --accent: #c8a45c;
  --accent-dark: #b08e44;
  --accent-soft: rgba(200, 164, 92, 0.14);
  --bg: #ffffff;
  --bg-soft: #f4f7fa;
  --text: #1f2933;
  --muted: #5c6b7a;
  --line: #e4e9ef;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(15, 42, 67, 0.08);
  --shadow-lg: 0 24px 70px rgba(15, 42, 67, 0.16);
  --container: 1140px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--sans); color: var(--text); background: var(--bg);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.13; color: var(--navy); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
.hl { color: var(--accent-dark); font-style: italic; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem;
  font-weight: 600; color: var(--accent-dark); margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn .ico-arr { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.btn:hover .ico-arr { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: var(--navy-3); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,164,92,.4); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-small { padding: 9px 18px; font-size: .9rem; background: var(--accent); color: var(--navy-3); }
.btn-small:hover { background: var(--accent-dark); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; }
.brand-text { font-family: var(--serif); color: var(--navy); font-weight: 500; font-size: 1.5rem; letter-spacing: .01em; }
.brand-text b { color: var(--accent); font-weight: 600; }
.brand-tag { font-size: .58rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--navy); font-size: .98rem; white-space: nowrap; }
.nav-links a:not(.btn):hover { color: var(--accent-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* Decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.blob-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(200,164,92,.45), transparent 70%); top: -120px; right: -80px; }
.blob-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(22,57,92,.25), transparent 70%); bottom: -120px; left: -100px; }
.blob-3 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(200,164,92,.3), transparent 70%); top: -140px; right: 5%; opacity: .35; }

/* Hero */
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px);
  background: radial-gradient(1000px 460px at 78% -8%, rgba(200,164,92,.10), transparent 60%), linear-gradient(180deg, var(--bg-soft), #fff); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.lead { font-size: 1.2rem; color: var(--muted); margin-top: 10px; max-width: 600px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 34px; }
.hero-trust { list-style: none; display: flex; gap: 30px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-trust li { font-size: .92rem; color: var(--muted); }
.hero-trust strong { color: var(--navy); display: block; font-size: 1.02rem; }

/* Hero visual */
.hero-visual { position: relative; min-height: 380px; }
.hv-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
.hv-main { top: 20px; left: 6%; right: 6%; padding: 22px 24px; animation: floaty 6s ease-in-out infinite; }
.hv-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.hv-title { font-weight: 600; color: var(--navy); font-size: .95rem; }
.hv-badge { margin-left: auto; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #1e7d4f; background: rgba(30,125,79,.12); padding: 3px 9px; border-radius: 999px; }
.hv-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.hv-row span { color: var(--muted); font-size: .9rem; }
.hv-row strong { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); }
.hv-bars { display: flex; align-items: flex-end; gap: 10px; height: 88px; margin-bottom: 18px; }
.hv-bars span { flex: 1; background: linear-gradient(180deg, var(--accent), var(--accent-dark)); border-radius: 6px 6px 0 0; opacity: .9; animation: grow 1s ease backwards; }
.hv-bars span:nth-child(odd) { background: linear-gradient(180deg, var(--navy-2), var(--navy)); opacity: .85; }
.hv-foot { display: flex; gap: 8px; flex-wrap: wrap; }
.hv-pill { font-size: .74rem; font-weight: 600; color: var(--muted); background: var(--bg-soft); padding: 5px 12px; border-radius: 999px; }
.hv-pill.ok { color: var(--accent-dark); background: var(--accent-soft); }
.hv-mini { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.hv-mini .hv-ico { width: 30px; height: 30px; fill: none; stroke: var(--accent-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.hv-mini strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--navy); }
.hv-mini span { font-size: .8rem; color: var(--muted); }
.hv-mini-1 { bottom: 56px; left: -10px; animation: floaty 6s ease-in-out infinite .8s; }
.hv-mini-2 { bottom: -6px; right: -6px; animation: floaty 6s ease-in-out infinite 1.6s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes grow { from { height: 0; } }

/* Trust strip */
.trust-strip { background: var(--navy-3); color: rgba(255,255,255,.62); padding: 20px 0; text-align: center; }
.trust-strip p { color: rgba(255,255,255,.62); font-size: .92rem; letter-spacing: .02em; margin: 0; }

/* Sections */
.section { position: relative; padding: clamp(64px, 8vw, 108px) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-sub { font-size: 1.08rem; margin-top: 12px; }
.section-head-light h2 { color: #fff; }
.section-head-light .eyebrow { color: var(--accent); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(200,164,92,.5); }
.card h3 { margin-bottom: 10px; }
.card-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); margin-bottom: 18px;
}
.card-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--accent-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-accent { background: linear-gradient(160deg, var(--navy), var(--navy-2)); border-color: transparent; }
.card-accent h3 { color: #fff; }
.card-accent p { color: rgba(255,255,255,.82); }
.card-accent .card-ico { background: rgba(200,164,92,.22); }
.card-accent .card-ico svg { stroke: var(--accent); }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.split-text h2 { margin: 4px 0 16px; }
.check-list { list-style: none; margin: 22px 0 30px; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 13px; color: var(--text); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; color: var(--accent-dark); font-weight: 700;
  width: 23px; height: 23px; background: var(--accent-soft); border-radius: 50%; display: grid; place-items: center; font-size: .8rem;
}
.split-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); transition: transform .25s ease; }
.stat:hover { transform: translateY(-4px); }
.stat-num { display: block; font-family: var(--serif); font-size: 2.5rem; color: var(--navy); font-weight: 600; }
.stat-label { color: var(--muted); font-size: .95rem; }

/* Dark section / steps */
.section-dark { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--navy), var(--navy-3)); }
.section-dark .container { position: relative; z-index: 1; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps li { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px 24px; transition: transform .25s ease, background .25s ease; }
.steps li:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.step-num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--navy-3); font-weight: 700; font-family: var(--serif); font-size: 1.2rem; margin-bottom: 16px; }
.steps h3 { color: #fff; margin-bottom: 8px; }
.steps p { color: rgba(255,255,255,.78); font-size: .96rem; }

/* Contact */
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.contact-list li span { min-width: 86px; color: var(--muted); font-weight: 600; }
.contact-list a:hover { color: var(--accent-dark); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 1rem; color: var(--text); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,164,92,.18); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin-top: 14px; font-size: .95rem; font-weight: 500; min-height: 1.2em; }
.form-note.ok { color: #1e7d4f; }
.form-note.err { color: #c0392b; }

/* Footer */
.site-footer { background: var(--navy-3); color: rgba(255,255,255,.7); padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.footer-brand .brand-text { font-size: 1.3rem; color: #fff; }
.footer-brand p { margin-top: 8px; color: rgba(255,255,255,.6); max-width: 360px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin-top: 8px; font-size: .9rem; color: rgba(255,255,255,.5); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .08s; }
.cards .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .16s; }
.cards .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .24s; }
.cards .reveal:nth-child(5) { transition-delay: .32s; }
.cards .reveal:nth-child(6) { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hv-main, .hv-mini-1, .hv-mini-2, .hv-bars span { animation: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 320px; max-width: 460px; }
}
@media (max-width: 900px) {
  .cards, .cards-3, .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 24px 20px;
    transform: translateY(-150%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a.btn { margin-top: 12px; border: none; justify-content: center; }
  .nav-toggle { display: flex; }
  .cards, .cards-3, .steps, .split-stats { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
}
