:root {
  --navy: #162033;
  --navy-2: #1d2a40;
  --gold: #f4b400;
  --gold-dark: #daa200;
  --bg: #eef1f5;
  --white: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --line: #d8dee8;
  --soft-gold: #fff6d8;
  --radius: 24px;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand-logo {
  height: 60px;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  color: #1f2937;
}

.desktop-nav a:hover,
.lang-switch:hover {
  color: var(--gold);
}

.lang-switch {
  background: var(--navy);
  color: white;
  border: 0;
  padding: 12px 16px;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(244,180,0,0.18), transparent 30%),
    radial-gradient(circle at left, rgba(22,32,51,0.10), transparent 28%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  padding: 64px 0 72px;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.hero h1,
.section-head h2,
.process-panel h2,
.calc-head h2,
.contact-form-panel h2 {
  color: var(--navy);
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
}

.hero-text,
.section-head p,
.calc-head p,
.contact-form-panel p,
.contact-side-panel p,
.price-box p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 800;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

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

.trust-card,
.info-card,
.services-grid article,
.calc-panel,
.contact-form-panel,
.side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 18px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trust-card span { color: var(--gold); font-weight: 900; }

.hero-panel {
  background: var(--navy);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(17,24,39,0.24);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-panel-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--navy-2), #111827);
}
.hero-panel-image img {
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  padding: 12px;
}

.hero-panel-info {
  padding: 24px;
  color: white;
  display: grid;
  gap: 14px;
}

.info-card {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
  padding: 18px;
}
.info-card h3,
.info-highlight strong,
.contact-side-panel h3,
.side-card h4,
.process-panel h2 { margin: 0 0 6px; }
.info-card p,
.side-card p,
.contact-side-panel p { margin: 0; color: rgba(255,255,255,0.86); }

.info-highlight {
  border-radius: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px;
  display: grid;
  gap: 6px;
}

.section { padding: 48px 0 72px; }
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(2rem, 3vw, 2.8rem); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-grid article {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.services-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(16,24,40,0.12);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--soft-gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.services-grid h3 { margin: 0 0 10px; color: var(--navy); }
.services-grid p { margin: 0; color: var(--muted); line-height: 1.75; }

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.process-panel {
  background: var(--navy);
  color: white;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 24px 50px rgba(17,24,39,0.18);
}
.process-panel h2 { color: white; font-size: 2rem; }
.process-panel ol {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.process-panel li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
.process-panel .step-num {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-weight: 900; display: inline-flex; align-items: center; justify-content: center;
}
.process-panel .step-text { color: rgba(255,255,255,0.92); line-height: 1.6; }

.calc-panel,
.contact-form-panel {
  padding: 28px;
}
.calc-head {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
}
.calc-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-gold);
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}
.calc-head h2 { font-size: 2rem; }

.calc-grid,
.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.calc-grid {
  grid-template-columns: repeat(2, 1fr);
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 600;
}
input,
textarea {
  width: 100%;
  border: 1px solid #cfd7e3;
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
  font: inherit;
  background: white;
}
textarea { min-height: 120px; resize: vertical; }
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.toggle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.toggle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.toggle-card input { width: 20px; min-height: 20px; }

.price-box {
  margin-top: 22px;
  background: var(--navy);
  color: white;
  border-radius: 26px;
  padding: 24px;
}
.price-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  color: #f8cf4d;
  font-weight: 800;
}
.price-value {
  margin-top: 8px;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
}
.price-box p { color: rgba(255,255,255,0.82); margin: 10px 0 0; }

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-side-panel {
  background: linear-gradient(135deg, #182338, #0f1726);
  color: white;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(17,24,39,0.18);
}

.side-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
  padding: 18px;
  margin-top: 16px;
}
.disclaimer {
  margin-top: 22px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-radius: 18px;
  padding: 16px;
  line-height: 1.65;
}

.replace-me { font-weight: 700; }

@media (max-width: 980px) {
  .hero-grid,
  .services-grid,
  .two-col,
  .contact-grid,
  .hero-panel,
  .trust-grid,
  .toggle-grid,
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .desktop-nav { display: none; }
  .hero-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-wrap { flex-wrap: wrap; }
  .brand-logo { height: 52px; }
  .hero-grid { padding: 40px 0 48px; }
  .section { padding: 34px 0 48px; }
  .hero h1,
  .section-head h2,
  .process-panel h2,
  .calc-head h2,
  .contact-form-panel h2 { font-size: 1.9rem; }
  .process-panel,
  .calc-panel,
  .contact-form-panel,
  .contact-side-panel { padding: 20px; }
}
