:root {
  --navy: #06234a;
  --navy-2: #0a3565;
  --teal: #0c829b;
  --cyan: #53c3d6;
  --ink: #10223a;
  --muted: #64748b;
  --line: #d9e3ec;
  --soft: #f4f8fb;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid #e8eef4; backdrop-filter: blur(10px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: white; font-size: 26px; background: linear-gradient(135deg, var(--teal), var(--navy)); position: relative; }
.brand-mark:after { content: ""; width: 34px; height: 8px; background: var(--navy); position: absolute; bottom: -4px; left: 10px; transform: skewX(-28deg); border-radius: 8px; opacity: .9; }
.brand strong { display: block; font-size: 20px; color: var(--navy); }
.brand small { display: block; font-size: 10px; letter-spacing: 3px; color: var(--teal); }
.nav { display: flex; gap: 28px; align-items: center; font-weight: 600; font-size: 14px; }
.nav a:not(.btn):hover { color: var(--teal); }
.nav-toggle { display: none; border: 0; background: none; font-size: 28px; color: var(--navy); }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 22px; border-radius: 8px; background: linear-gradient(135deg, var(--teal), var(--navy-2)); color: white; font-weight: 700; border: 0; cursor: pointer; box-shadow: 0 10px 25px rgba(6,35,74,.12); }
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 40px; padding: 0 16px; }
.btn-ghost { background: white; color: var(--navy); border: 1px solid #ccd9e4; box-shadow: none; }
.hero { background: radial-gradient(circle at 75% 25%, rgba(83,195,214,.16), transparent 25%), linear-gradient(120deg, #f8fbfd 0 53%, #eff7fa 53% 100%); padding: 88px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 2px; }
.eyebrow.light { color: #8be0ed; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; color: var(--navy); }
h1 { font-size: clamp(42px, 6vw, 72px); max-width: 760px; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
h3 { font-size: 22px; }
.hero-lead { font-size: 19px; color: #4f6479; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 24px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 600; color: #476175; font-size: 14px; }
.hero-card { background: linear-gradient(145deg, var(--navy), #021932); border-radius: 24px; padding: 38px; color: white; box-shadow: 0 24px 60px rgba(6,35,74,.22); position: relative; }
.hero-card:before { content: ""; position: absolute; width: 8px; height: 100%; left: 0; top: 0; border-radius: 24px 0 0 24px; background: var(--cyan); }
.route-icon { width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; font-size: 36px; background: rgba(83,195,214,.14); color: var(--cyan); margin-bottom: 22px; }
.hero-card h2 { color: white; font-size: 32px; }
.hero-card p { color: #9edbe5; font-weight: 700; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; color: #dfeaf2; }
.section { padding: 84px 0; }
.section.alt { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 40px; }
.section-heading p { color: var(--muted); font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: white; transition: .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(30,70,100,.09); }
.icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: #ebf8fb; font-size: 25px; margin-bottom: 20px; }
.card p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 54px; align-items: center; }
.split p { color: #586e82; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.stat-grid div { background: white; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.stat-grid strong, .stat-grid span { display: block; }
.stat-grid strong { color: var(--navy); font-size: 20px; }
.stat-grid span { color: var(--muted); font-size: 13px; }
.owner-card { background: white; border-radius: 18px; border: 1px solid var(--line); padding: 34px; box-shadow: 0 16px 40px rgba(30,70,100,.08); }
.owner-card a { display: block; color: var(--teal); font-weight: 700; margin-top: 8px; overflow-wrap: anywhere; }
.area-box { border-radius: 22px; background: linear-gradient(135deg, #fff, #eef8fa); border: 1px solid #dbe9ef; padding: 44px; display: grid; grid-template-columns: 1fr .9fr; gap: 36px; align-items: center; }
.area-box p { color: var(--muted); }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.area-list span { padding: 16px 18px; border-radius: 12px; border: 1px solid #d7e5eb; background: white; font-weight: 700; color: var(--navy); }
.contact-section { background: linear-gradient(140deg, #06234a, #071a35); color: white; }
.contact-section h2 { color: white; }
.contact-section p { color: #bdd0df; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.contact-links a { display: block; margin: 12px 0; color: #8fe2ee; font-weight: 700; }
.quote-form { background: white; color: var(--ink); padding: 30px; border-radius: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { font-size: 13px; font-weight: 700; color: #33495f; }
.quote-form label:nth-of-type(5), .quote-form label:nth-of-type(6), .quote-form .btn, .form-note { grid-column: 1 / -1; }
input, select, textarea { width: 100%; margin-top: 7px; border: 1px solid #cbd8e2; border-radius: 8px; padding: 12px; font: inherit; color: var(--ink); background: white; }
textarea { resize: vertical; }
.form-note { margin: 0; font-size: 12px; color: var(--muted) !important; }
.footer { background: #03142a; color: #d1deea; padding: 32px 0; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
.footer strong { color: white; font-size: 17px; }
.footer p { margin: 3px 0; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 76px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 24px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; }
  .hero-grid, .split, .area-box, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .hero { padding-top: 64px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 64px 0; }
  .cards, .stat-grid, .area-list, .quote-form, .footer-grid { grid-template-columns: 1fr; }
  .quote-form label:nth-of-type(n) { grid-column: 1; }
  .quote-form .btn, .form-note { grid-column: 1; }
  .hero-card, .area-box, .quote-form { padding: 24px; }
  h1 { font-size: 44px; }
}
