:root {
  --navy: #0f2745;
  --navy-deep: #0b1d35;
  --teal: #1c8b8a;
  --teal-soft: #dff3f1;
  --text: #16304a;
  --muted: #5e738b;
  --bg: #f4f7fa;
  --white: #ffffff;
  --line: #d7e1ea;
  --shadow: 0 18px 40px rgba(15, 39, 69, 0.08);
  --radius: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbfd 0%, #f2f6f9 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(840px, 100%); }
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215,225,234,0.7);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 46px; height: 46px; }
.brand strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  display: block;
  letter-spacing: 0.02em;
}
.brand span { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a.active, .nav a:hover { color: var(--navy); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #173d67);
  color: var(--white); font-weight: 700; border: none; cursor: pointer;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 40px; padding: 0 18px; }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1px solid var(--line); box-shadow: none;
}
.btn-light { background: var(--white); color: var(--navy); }
.active-btn { color: var(--white) !important; }
.hero, .page-hero { padding: 84px 0 40px; }
.slim-hero { padding-bottom: 12px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 32px; align-items: center; }
.eyebrow {
  margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.76rem; font-weight: 800; color: var(--teal);
}
.eyebrow.light { color: #a9ece8; }
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.08; margin: 0 0 14px;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -0.03em; }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.14rem; color: var(--muted); line-height: 1.7; max-width: 62ch; }
p { line-height: 1.7; color: var(--muted); }
.hero-actions, .section-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-points {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.hero-points li {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--navy); font-weight: 600; background: rgba(255,255,255,0.7);
}
.card {
  background: rgba(255,255,255,0.88); border: 1px solid rgba(215,225,234,0.85);
  border-radius: var(--radius); padding: 28px; box-shadow: 0 8px 28px rgba(15,39,69,0.04);
}
.elevated { box-shadow: var(--shadow); }
.hero-card { position: relative; overflow: hidden; }
.hero-card::before {
  content: ""; position: absolute; inset: auto -20% -20% auto; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(28,139,138,0.18) 0%, rgba(28,139,138,0) 70%);
}
.metric-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px;
}
.metric-grid strong {
  display: block; color: var(--navy); font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem; margin-bottom: 6px;
}
.metric-grid span { color: var(--muted); font-size: 0.92rem; }
.section { padding: 34px 0 48px; }
.section-alt { background: linear-gradient(180deg, rgba(11,29,53,0.02) 0%, rgba(28,139,138,0.06) 100%); }
.two-col, .split-highlight, .rate-layout, .form-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
.feature-list, .services-grid, .case-grid { display: grid; gap: 18px; }
.feature-list { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack-grid { display: grid; gap: 22px; }
.service-card, .region-card, .case-card, .large-card { min-height: 100%; }
.compare-row {
  display: grid; gap: 8px; padding: 16px 0; border-top: 1px solid var(--line);
}
.compare-row:first-of-type { margin-top: 16px; }
.compare-row span { color: var(--muted); font-weight: 600; }
.compare-row strong { color: var(--navy); line-height: 1.5; }
.fine { font-size: 0.9rem; margin-top: 18px; }
.rate-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rate-grid .card, .services-grid .card, .case-grid .card { backdrop-filter: blur(8px); }
.rate-grid strong, .rate-list strong { color: var(--navy); font-family: 'Montserrat', Arial, sans-serif; display: block; }
.rate-grid span { display: block; margin-top: 6px; color: var(--muted); }
.tag {
  display: inline-flex; align-items: center; padding: 7px 11px; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal); font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white); margin-top: 20px;
}
.cta-band h2, .cta-band p { color: var(--white); }
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer {
  background: #0d2037; color: #d7e1ea; padding: 42px 0 48px; margin-top: 0;
}
.footer p, .footer li, .footer a { color: #c8d4df; }
.footer h3 {
  font-size: 1rem; margin-bottom: 12px; color: #f4f8fb;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.9fr; gap: 28px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.brand-footer span { color: #9eb4c8; }
.tick-list, .rate-list, .contact-list {
  list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px;
}
.tick-list li, .contact-list li {
  position: relative; padding-left: 28px;
}
.tick-list li::before, .contact-list li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--teal);
}
.rate-list li {
  display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line);
}
.rate-list li:first-child { border-top: 0; }
.form-card { padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 16px; }
label { display: grid; gap: 8px; font-weight: 600; color: var(--navy); }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px;
  font: inherit; color: var(--text); background: #fbfdff;
}
input:focus, textarea:focus { outline: 2px solid rgba(28,139,138,0.2); border-color: var(--teal); }
.contact-aside { position: sticky; top: 100px; }
@media (max-width: 980px) {
  .hero-grid, .two-col, .split-highlight, .rate-layout, .form-layout, .footer-grid, .cta-wrap { grid-template-columns: 1fr; }
  .services-grid, .case-grid, .rate-grid, .form-grid { grid-template-columns: 1fr; }
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  .nav { width: 100%; gap: 16px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero, .page-hero { padding-top: 58px; }
  .card { padding: 22px; }
  .hero-points { gap: 10px; }
}
