:root {
  --bg: #071a33;
  --bg-soft: #0c2445;
  --surface: #0f2d55;
  --surface-soft: #132f59;
  --card: #ffffff;
  --text: #0e1726;
  --ink: #eef4ff;
  --muted: #b8c7df;
  --line: rgba(255,255,255,0.14);
  --gold: #d7a451;
  --gold-soft: #f0ca8a;
  --shadow: 0 18px 60px rgba(0,0,0,0.2);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 12px; top: 12px; z-index: 1000; background: #fff; padding: .75rem 1rem; border-radius: 10px;
}
.site-shell {
  min-height: 100vh;
}
.top {
  background:
    radial-gradient(circle at top right, rgba(215,164,81,0.22), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--ink);
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.brand-mark {
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-sub {
  display: block;
  color: var(--gold-soft);
  font-size: .92rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  opacity: .9;
}
.nav-links a:hover,
.nav-links a:focus-visible { opacity: 1; text-decoration: underline; }
.nav-actions {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}
.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .2rem;
}
.lang-switch a {
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-size: .92rem;
}
.lang-switch a.active {
  background: #fff;
  color: var(--bg);
  font-weight: 700;
}
.mobile-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 12px;
  padding: .7rem .8rem;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -.03em;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 1.25rem;
}
.highlight { color: var(--gold); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.25rem 0 1.5rem;
}
.hero-badges span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .5rem .9rem;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .95rem;
}
.cta-row {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: .85rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}
.button.primary { background: var(--gold); color: #14243f; }
.button.primary:hover,
.button.primary:focus-visible { filter: brightness(1.04); }
.button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-card .stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.2rem;
}
.hero-card .stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1rem;
}
.hero-card .stat strong { display:block; color:#fff; font-size:1.05rem; }
.hero-card .stat span { color: var(--muted); font-size:.95rem; }
.section {
  padding: 4.5rem 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 1.8rem;
}
.kicker {
  color: #7f5b1c;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section h2 {
  margin: .35rem 0 .8rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.section p.section-lead {
  margin: 0;
  color: #4a5870;
  font-size: 1.05rem;
}
.grid {
  display: grid;
  gap: 1rem;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 10px 35px rgba(7,26,51,.08);
  border: 1px solid rgba(9, 33, 69, 0.08);
}
.card h3 { margin-top: 0; font-size: 1.18rem; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card ul { padding-left: 1.15rem; }
.band {
  background: #0b2242;
  color: #fff;
  border-radius: 28px;
  padding: 1.5rem;
}
.band .card {
  background: #f8fafc;
  color: var(--text);
  border: 1px solid rgba(9, 33, 69, 0.12);
}
.band .card h3 { color: #0d2040; }
.band .card p,
.band .card li { color: #334159; }
.steps .step-number {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(215,164,81,.14);
  color: #8f5e15;
  font-weight: 800;
  margin-bottom: .9rem;
}
.price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: .2rem 0 .5rem;
}
.price small {
  font-size: .92rem;
  font-weight: 600;
  color: #5b687f;
}
.notice {
  border-left: 4px solid var(--gold);
  padding: 1rem 1rem 1rem 1.1rem;
  background: #fff8eb;
  border-radius: 14px;
  color: #5c4a1a;
}
.cta-panel {
  background: linear-gradient(135deg, #0a213f 0%, #112d53 100%);
  color: #fff;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.cta-panel p { color: var(--muted); }
.footer {
  background: #071a33;
  color: #d4deef;
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 1.2rem;
}
.footer h3,.footer h4 { color:#fff; margin-top:0; }
.footer a { color: #d4deef; }
.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #aab8d0;
  font-size: .95rem;
}
.legal-page .top {
  padding-bottom: 1rem;
}
.legal-wrap {
  width: min(calc(100% - 2rem), 900px);
  margin: -2rem auto 0;
  position: relative;
}
.legal-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(7,26,51,.1);
  padding: 2rem;
  border: 1px solid rgba(9, 33, 69, 0.08);
}
.legal-card h1 { margin-top: 0; font-size: clamp(2rem, 3.4vw, 3.25rem); }
.legal-card h2 { margin-top: 2rem; }
.legal-card p, .legal-card li { color: #334159; }
.legal-links {
  display: inline-flex; gap: .75rem; flex-wrap: wrap;
  margin-top: 1rem;
}
.legal-links a {
  background: #eff4fb;
  border-radius: 999px;
  padding: .55rem .85rem;
  text-decoration: none;
  color: #1e3558;
  font-weight: 600;
}
.lang-block { display: none; }
.lang-block.active { display: block; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    background: rgba(7,26,51,.98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 1rem;
    display: none;
    z-index: 50;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; flex-direction: column; align-items: flex-start; }
  .mobile-toggle { display: inline-flex; }
  .navbar { align-items: flex-start; }
  .nav-actions { margin-left: auto; }
  .hero-card .stats { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .legal-card { padding: 1.4rem; }
}


.brand-lockup { display:flex; flex-direction:column; gap:.25rem; }
.trust-link { color: var(--gold-soft); font-size:.88rem; font-weight:700; text-decoration:none; margin-left: calc(54px + .85rem); }
.trust-link:hover, .trust-link:focus-visible { text-decoration:underline; }
.trust-note { margin:.9rem 0 0; color: var(--muted); font-size:.95rem; }
.trust-note a { color:#fff; }
@media (max-width:760px) { .trust-link { margin-left: 0; } }

.featured-card {
  border: 2px solid rgba(215,164,81,.45);
  box-shadow: 0 18px 45px rgba(7,26,51,.12);
}
.featured-tag {
  display: inline-block;
  margin-bottom: .6rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: #fff4dc;
  color: #82591a;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
#services, #process, #pricing, #faq, #contact { scroll-margin-top: 90px; }


.quick-contact { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; justify-content:center; padding:0 0 1.4rem; }
.quick-contact a, .quick-contact span { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:.7rem 1rem; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); color:#fff; text-decoration:none; font-weight:700; }
.quick-contact span { color: var(--gold-soft); }
.pricing-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:1rem; }
