:root {
  --navy: #0c2b4d;
  --navy-2: #16446f;
  --gold: #c9933a;
  --gold-light: #e0b35a;
  --cream: #fbf8ef;
  --white: #ffffff;
  --ink: #1b2430;
  --muted: #607087;
  --line: rgba(12,43,77,.12);
  --shadow: 0 24px 70px rgba(12, 43, 77, .16);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,248,239,.93); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; }
.brand img { width: 235px; height: 58px; object-fit: cover; object-position: center; border-radius: 12px; }
.header-actions { display: flex; align-items: center; gap: 12px; order: 3; }
.language-switcher { display: inline-flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); box-shadow: 0 10px 24px rgba(12,43,77,.08); }
.lang-btn { border: 0; background: transparent; border-radius: 999px; padding: 8px 10px; font-weight: 900; color: var(--navy); cursor: pointer; }
.lang-btn.active { background: var(--navy); color: var(--white); }
.nav-menu { display: flex; align-items: center; gap: 24px; font-weight: 800; color: var(--navy); margin-left: auto; }
.nav-menu a:not(.nav-cta) { opacity: .88; }
.nav-menu a:hover { color: var(--gold); }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(12,43,77,.18); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--navy); border-radius: 3px; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 10%, rgba(224,179,90,.22), transparent 26%), linear-gradient(135deg, #fffaf0 0%, #f7f4eb 48%, #eef4f8 100%); }
.hero-bg::before, .hero-bg::after { content: ''; position: absolute; border-radius: 50%; filter: blur(8px); opacity: .38; }
.hero-bg::before { width: 420px; height: 420px; background: rgba(201,147,58,.24); right: -150px; top: 80px; }
.hero-bg::after { width: 320px; height: 320px; background: rgba(12,43,77,.16); left: -110px; bottom: -90px; }
.hero-grid { position: relative; z-index: 1; min-height: 720px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; padding: 86px 0; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.45rem, 5.7vw, 5.35rem); line-height: .95; letter-spacing: -.06em; color: var(--navy); margin-bottom: 24px; }
.hero-text { font-size: 1.18rem; color: var(--muted); max-width: 660px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 18px 35px rgba(201,147,58,.28); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; color: var(--navy); font-size: .92rem; font-weight: 800; }
.hero-card { display: grid; gap: 20px; }
.card-logo-wrap, .quote-card { background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.72); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-logo-wrap { padding: 22px; }
.card-logo-wrap img { width: 100%; border-radius: 18px; }
.quote-card { padding: 32px; }
.quote-card h2 { color: var(--navy); font-size: 1.6rem; margin-bottom: 10px; }
.quote-card p, .service-card p, .process-step p, .split-grid p, .contact-copy p { color: var(--muted); }
ul { padding-left: 20px; margin-bottom: 0; }
li { margin: 8px 0; }
.section { padding: 92px 0; }
.stats-section { padding: 24px 0 0; background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stats-grid div, .service-card, .process-step { background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 16px 42px rgba(12,43,77,.07); }
.stats-grid div { padding: 26px; }
.stats-grid strong { display: block; color: var(--navy); font-size: 2rem; line-height: 1; margin-bottom: 8px; }
.stats-grid span { color: var(--muted); font-weight: 800; }
.section-heading { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-heading h2, .split-grid h2, .contact-copy h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.06; letter-spacing: -.045em; margin-bottom: 16px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { padding: 28px; min-height: 300px; border-radius: var(--radius); }
.icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--gold-light); font-weight: 900; margin-bottom: 22px; }
.service-card h3 { color: var(--navy); font-size: 1.2rem; }
.split-section { background: var(--white); }
.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 32px; }
.feature-list div { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fffdf7; }
.feature-list h3 { color: var(--navy); margin-bottom: 6px; }
.feature-list p { margin-bottom: 0; }
.highlight-panel { border-radius: 34px; padding: 42px; min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(rgba(12,43,77,.78), rgba(12,43,77,.88)), radial-gradient(circle at top right, rgba(224,179,90,.9), transparent 34%), var(--navy); color: var(--white); box-shadow: var(--shadow); }
.highlight-panel h3 { font-size: 2.15rem; line-height: 1.05; letter-spacing: -.04em; }
.highlight-panel p { color: rgba(255,255,255,.78); }
.highlight-panel a { color: var(--gold-light); font-weight: 900; }
.process-section { background: linear-gradient(180deg, var(--cream), #fff); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-step { padding: 30px; border-radius: var(--radius); }
.process-step span { color: var(--gold); font-weight: 900; font-size: .9rem; letter-spacing: .1em; }
.process-step h3 { color: var(--navy); margin-top: 14px; }
.contact-section { background: var(--navy); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-copy h2 { color: var(--white); }
.contact-copy p { color: rgba(255,255,255,.76); }
.contact-details { display: grid; gap: 16px; margin: 34px 0 18px; }
.contact-details div { padding: 18px; border-radius: 18px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); }
.contact-details span { display: block; color: var(--gold-light); font-weight: 900; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-details a { color: var(--white); font-weight: 800; }
.fine-print { font-size: .9rem !important; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; background: var(--white); color: var(--ink); border-radius: 30px; padding: 32px; box-shadow: 0 28px 80px rgba(0,0,0,.2); }
.form-row { display: grid; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 900; font-size: .92rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(12,43,77,.18); border-radius: 16px; padding: 15px 16px; font: inherit; color: var(--ink); background: #fffdf9; outline: none; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,147,58,.16); }
.full-button { grid-column: 1 / -1; border: none; }
.form-status { grid-column: 1 / -1; margin: 0; font-weight: 800; color: var(--navy); }
.form-status.success { color: #146c43; }
.form-status.error { color: #b42318; }
.footer { background: #071c33; color: rgba(255,255,255,.78); padding: 42px 0 28px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding-bottom: 26px; }
.footer img { width: 220px; border-radius: 12px; margin-bottom: 14px; }
.footer p { margin-bottom: 0; }
.footer-links { display: flex; gap: 22px; font-weight: 900; color: var(--white); }
.disclosure { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .86rem; }
.disclosure p:first-child { margin-bottom: 12px; }
@media (max-width: 1060px) { .nav-menu { gap: 16px; font-size: .95rem; } .brand img { width: 210px; } }
@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; top: 82px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); margin-left: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 12px; }
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 64px 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .navbar { min-height: 74px; gap: 10px; }
  .brand img { width: 172px; height: 46px; }
  .language-switcher { transform: scale(.92); transform-origin: right center; }
  .nav-menu { top: 74px; }
  .section { padding: 68px 0; }
  .hero-grid { padding: 50px 0; gap: 32px; }
  h1 { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .hero-text { font-size: 1.04rem; }
  .stats-grid, .service-grid, .process-grid, .contact-form { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .card-logo-wrap, .quote-card, .contact-form { padding: 22px; }
  .highlight-panel { padding: 28px; min-height: 320px; border-radius: 26px; }
  .contact-form { border-radius: 24px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}
@media (max-width: 390px) {
  .brand img { width: 148px; height: 42px; }
  .lang-btn { padding: 7px 8px; }
  .container { width: min(100% - 22px, 1120px); }
}
