:root {
  --ink: #12253a;
  --muted: #586a7b;
  --navy: #123a56;
  --navy-deep: #0b2b42;
  --teal: #2d8d8b;
  --teal-dark: #1e7372;
  --mint: #dff2ee;
  --sky: #eaf4f8;
  --sand: #f6f3ec;
  --white: #ffffff;
  --line: #d8e1e6;
  --success: #206a5d;
  --shadow: 0 18px 55px rgba(18, 58, 86, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus { left: 10px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
h1, h2, h3 { margin: 0; line-height: 1.13; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--muted); max-width: 760px; }
.section-heading { max-width: 850px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .lead { margin-inline: auto; }
.section-heading h2 { margin-bottom: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 225, 230, 0.85);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.025em;
  font-size: 0.92rem;
  line-height: 1.2;
  max-width: 280px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), var(--teal));
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(18, 58, 86, 0.22);
}
.brand-mark svg { width: 26px; height: 26px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a, .search-toggle {
  border: 0;
  background: transparent;
  text-decoration: none;
  color: #294155;
  font-size: 0.94rem;
  font-weight: 750;
  padding: 11px 13px;
  border-radius: 10px;
}
.nav a:hover, .nav a[aria-current="page"], .search-toggle:hover { background: var(--sky); color: var(--navy-deep); }
.header-cta { text-decoration: none; color: var(--white); background: var(--navy); padding: 12px 17px; border-radius: 11px; font-weight: 800; white-space: nowrap; }
.header-cta:hover { background: var(--navy-deep); }
.menu-toggle { display: none; border: 0; background: var(--sky); border-radius: 10px; padding: 10px; color: var(--navy); }

.search-panel { display: none; border-top: 1px solid var(--line); background: var(--white); }
.search-panel.open { display: block; }
.search-inner { padding: 22px 0; display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.search-inner input { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; color: var(--ink); }
.search-results { grid-column: 1 / -1; color: var(--muted); font-size: 0.94rem; }
.search-results a { color: var(--teal-dark); font-weight: 800; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(45,141,139,.18), transparent 28%),
    linear-gradient(135deg, #f8fbfc 0%, #ecf5f6 52%, #f7f4ed 100%);
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.06fr 0.94fr; align-items: center; gap: 55px; padding: 66px 0 76px; }
.hero-copy h1 { max-width: 780px; }
.hero-copy .lead { margin-top: 24px; max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.25;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--navy); box-shadow: 0 11px 25px rgba(18,58,86,.2); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary { color: var(--navy); background: rgba(255,255,255,.88); border-color: #cbd9df; }
.btn-secondary:hover { box-shadow: 0 10px 22px rgba(18,58,86,.1); }
.btn-light { background: var(--white); color: var(--navy-deep); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.hero-contact { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 25px; color: var(--navy-deep); font-weight: 800; }
.hero-contact a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; background: var(--mint); left: -30px; bottom: -20px; }
.image-frame { position: relative; z-index: 1; background: var(--white); border: 10px solid rgba(255,255,255,.88); border-radius: 32px; box-shadow: var(--shadow); overflow: hidden; }
.image-frame picture { display: block; }
.image-frame img { width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; }
.image-badge { position: absolute; z-index: 2; left: -24px; bottom: 32px; max-width: 250px; padding: 17px 18px; border-radius: 16px; background: var(--white); box-shadow: 0 17px 45px rgba(18,58,86,.17); font-size: .9rem; font-weight: 750; }
.image-badge strong { display: block; color: var(--teal-dark); font-size: 1.04rem; margin-bottom: 2px; }

.journey-section { background: var(--white); }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.road-visual { min-height: 390px; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--navy-deep), #1d5e75 60%, var(--teal)); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.road-visual::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 145%;
  left: 14%;
  top: -18%;
  border: 54px solid rgba(255,255,255,.92);
  border-left-width: 15px;
  border-right-width: 15px;
  border-radius: 50%;
  transform: rotate(18deg);
}
.road-visual::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 140%;
  left: 14%;
  top: -15%;
  border: 3px dashed rgba(255,255,255,.85);
  border-radius: 50%;
  transform: rotate(18deg);
}
.road-dot { position: absolute; z-index: 2; width: 68px; height: 68px; display: grid; place-items: center; border-radius: 22px; background: var(--white); box-shadow: 0 13px 28px rgba(0,0,0,.18); }
.road-dot.one { left: 16%; top: 16%; }
.road-dot.two { right: 12%; bottom: 17%; }
.road-dot svg { width: 34px; height: 34px; color: var(--teal-dark); }

.split-section { background: var(--sand); }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 68px; align-items: center; }
.split-grid .image-frame img { aspect-ratio: 5 / 4; }
.copy-stack > * + * { margin-top: 20px; }
.copy-stack .hero-actions { margin-top: 28px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; background: var(--white); box-shadow: 0 13px 35px rgba(18,58,86,.07); }
.card-icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: var(--mint); color: var(--teal-dark); margin-bottom: 24px; }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--muted); }
.card .text-link { display: inline-flex; margin-top: 22px; color: var(--teal-dark); font-weight: 850; text-underline-offset: 4px; }
.benefits { background: var(--sky); }
.benefits .card { box-shadow: none; }

.cta-section { padding: 80px 0; }
.cta-box { background: linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, var(--teal-dark)); border-radius: 30px; padding: 58px; color: var(--white); display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; box-shadow: var(--shadow); }
.cta-box h2 { max-width: 800px; font-size: clamp(2rem,4vw,3.5rem); }
.cta-box p { color: rgba(255,255,255,.78); margin-top: 16px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }

.page-hero { background: linear-gradient(135deg, var(--sky), var(--sand)); padding: 86px 0 74px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); max-width: 900px; }
.page-hero .lead { margin-top: 22px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.content-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.content-panel h2 { font-size: 1.8rem; margin-bottom: 16px; }
.content-panel p { color: var(--muted); }
.company-panel { margin-top: 36px; border-radius: var(--radius-lg); background: var(--navy-deep); color: var(--white); padding: 40px; }
.company-panel h2 { font-size: 2rem; margin-bottom: 25px; }
.company-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 34px; }
.company-item { border-top: 1px solid rgba(255,255,255,.18); padding-top: 14px; }
.company-item span { display: block; color: rgba(255,255,255,.66); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.company-item a { color: var(--white); }
.company-item.full { grid-column: 1 / -1; }

.faq-list { display: grid; gap: 13px; }
.faq { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--white); }
.faq button { width: 100%; border: 0; background: var(--white); text-align: left; display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; color: var(--ink); font-weight: 850; }
.faq button::after { content: "+"; font-size: 1.35rem; color: var(--teal-dark); }
.faq button[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 22px; color: var(--muted); }
.faq-answer.open { display: block; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; }
.contact-card { border-radius: var(--radius-lg); padding: 36px; background: var(--navy-deep); color: var(--white); }
.contact-card h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-card p { color: rgba(255,255,255,.72); }
.contact-links { display: grid; gap: 14px; margin-top: 28px; }
.contact-links a { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; }
.contact-form { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; font-size: .92rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #cbd8de; border-radius: 11px; padding: 13px 14px; color: var(--ink); background: var(--white); }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-note { color: var(--muted); font-size: .86rem; margin-top: 14px; }

.site-footer { background: #081f31; color: var(--white); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .95fr; gap: 55px; }
.footer-brand p { color: rgba(255,255,255,.66); margin-top: 18px; max-width: 540px; }
.footer-heading { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.57); margin-bottom: 16px; font-weight: 900; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-meta { border-top: 1px solid rgba(255,255,255,.13); margin-top: 48px; padding-top: 23px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.56); font-size: .84rem; }

.notice { border-left: 4px solid var(--teal); padding: 17px 20px; background: var(--mint); border-radius: 0 12px 12px 0; color: #245653; }

@media (max-width: 1020px) {
  .header-cta { display: none; }
  .hero-grid, .journey-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 50px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { max-width: 620px; }
  .split-grid .image-frame { order: -1; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 790px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav { position: absolute; display: none; top: 78px; left: 0; right: 0; padding: 15px 14px 20px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(18,58,86,.1); }
  .nav.open { display: grid; }
  .nav a, .search-toggle { text-align: left; width: 100%; }
  .brand { font-size: .78rem; max-width: 235px; }
  .cards { grid-template-columns: 1fr; }
  .image-badge { left: 16px; right: 16px; max-width: none; bottom: 16px; }
  .cta-box { padding: 38px 25px; }
  .company-list, .form-grid { grid-template-columns: 1fr; }
  .company-item.full, .form-field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.55rem; }
  .hero-grid { min-height: 0; gap: 38px; }
  .hero-actions, .hero-contact { flex-direction: column; align-items: stretch; }
  .hero-contact { gap: 9px; }
  .hero-contact a { overflow-wrap: anywhere; }
  .cta-actions { flex-direction: column; }
  .road-visual { min-height: 320px; }
  .card, .content-panel, .contact-card, .contact-form { padding: 25px; }
  .footer-meta { display: grid; }
}
