:root {
  --navy: #071a2f;
  --navy-soft: #0c2845;
  --blue: #087daf;
  --blue-bright: #0da2d7;
  --orange: #f47721;
  --ink: #13283d;
  --muted: #5b6b7c;
  --line: #dbe3ea;
  --surface: #f4f7fa;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 26, 47, .13);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  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;
  -webkit-text-size-adjust: 100%;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.025em; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.55rem, 5.2vw, 4.65rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.7vw, 3.15rem); }
h3 { margin-bottom: 12px; font-size: 1.28rem; }
p { margin-bottom: 20px; }

.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section[id] { scroll-margin-top: 20px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 15px; background: white; color: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: white;
}

.header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: white; text-decoration: none; }
.brand-mark { width: 58px; height: 58px; overflow: hidden; border: 3px solid rgba(255, 255, 255, .9); border-radius: 15px; background: white; box-shadow: 0 8px 24px rgba(0, 0, 0, .16); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; }
.brand-name strong { color: var(--blue-bright); }
nav { display: flex; align-items: center; gap: 34px; }
nav a { color: rgba(255, 255, 255, .86); font-size: .95rem; font-weight: 700; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: white; }
.nav-contact { padding: 10px 18px; border: 1px solid rgba(255, 255, 255, .6); border-radius: 999px; background: rgba(255, 255, 255, .08); }
.nav-contact:hover, .nav-contact:focus-visible { border-color: white; background: white; color: var(--navy); }
.nav-contact span { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: 180px 0 104px;
  overflow: hidden;
  background: var(--navy) url("assets/hero-background.png") center / cover no-repeat;
  color: white;
}

.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 18, 34, .97) 0%, rgba(4, 24, 44, .89) 45%, rgba(4, 22, 39, .53) 100%); }
.hero::after { content: ""; position: absolute; right: -130px; bottom: -280px; width: 650px; height: 650px; border: 1px solid rgba(13, 162, 215, .26); border-radius: 50%; box-shadow: 0 0 0 90px rgba(13, 162, 215, .035), 0 0 0 180px rgba(13, 162, 215, .025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .65fr); align-items: center; gap: 70px; }
.eyebrow { margin-bottom: 19px; color: #5fd2f2; font-size: .79rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-dark { color: #087aa5; }
.hero-lead { max-width: 700px; color: #d9e7f2; font-size: clamp(1.12rem, 2vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0 33px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px; padding: 13px 23px; border: 1px solid transparent; border-radius: 9px; font-weight: 800; text-align: center; text-decoration: none; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #1c120c; box-shadow: 0 12px 30px rgba(244, 119, 33, .22); }
.button-primary:hover, .button-primary:focus-visible { background: #ff8b3c; box-shadow: 0 15px 34px rgba(244, 119, 33, .3); }
.button-secondary { border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .07); color: white; }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(255, 255, 255, .14); }
.button-dark { flex: 0 0 auto; background: var(--navy); color: white; }
.button-dark:hover, .button-dark:focus-visible { background: var(--navy-soft); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 0; padding: 0; color: #bdccda; font-size: .94rem; list-style: none; }
.hero-points li::before { content: "✓"; margin-right: 8px; color: #5fd2f2; font-weight: 900; }

.status-card { position: relative; padding: 34px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .17); border-radius: var(--radius); background: rgba(4, 21, 39, .82); box-shadow: 0 24px 70px rgba(0, 0, 0, .3); backdrop-filter: blur(12px); }
.status-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--blue-bright), var(--orange)); }
.status-line { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; color: #aeecc8; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #39d178; box-shadow: 0 0 0 6px rgba(57, 209, 120, .13); }
.status-card h2 { font-size: 1.7rem; }
.status-card > p { color: #b9cad8; }
.status-card dl, .status-card dd { margin: 0; }
.status-card dl div { display: grid; grid-template-columns: 70px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.status-card dt { color: #8fa5b8; font-size: .82rem; font-weight: 700; }
.status-card dd { min-width: 0; color: white; font-weight: 700; overflow-wrap: anywhere; }
.status-card a { text-underline-offset: 3px; }

.maintenance-note { border-bottom: 1px solid #c8dae6; background: linear-gradient(90deg, #edf8fc, #e6f2f9); }
.maintenance-inner { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding-block: 25px; }
.maintenance-inner h2 { margin-bottom: 5px; font-size: 1rem; letter-spacing: 0; }
.maintenance-inner p { margin: 0; color: #40576b; font-size: .94rem; }
.notice-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-family: Georgia, serif; font-weight: 700; }

.section { padding: 110px 0; }
.services { background: var(--surface); }
.section-heading { max-width: 760px; margin-bottom: 47px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 255px; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 8px 24px rgba(7, 26, 47, .045); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #bdd4e1; box-shadow: 0 18px 35px rgba(7, 26, 47, .09); }
.service-card::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 110px; height: 110px; border-radius: 50%; background: #e7f5fa; }
.service-card h3 { max-width: 250px; margin-top: 26px; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .95rem; }
.card-number { color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #cfe5ee; border-radius: 12px; background: #edf8fb; color: #076b94; font-size: .78rem; font-weight: 900; letter-spacing: -.02em; }
.services-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 28px 31px; border: 1px solid #d5e1e8; border-radius: 14px; background: white; }
.services-cta div { display: flex; flex-direction: column; }
.services-cta strong { margin-bottom: 3px; font-size: 1.08rem; }
.services-cta span { color: var(--muted); font-size: .94rem; }

.trust { background: var(--navy); color: white; }
.trust-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.trust h2 { max-width: 520px; }
.trust-lead { max-width: 560px; color: #b8c8d6; font-size: 1.08rem; }
.text-link { display: inline-flex; gap: 10px; color: #66d6f5; font-weight: 800; text-decoration: none; }
.text-link:hover, .text-link:focus-visible { text-decoration: underline; text-underline-offset: 5px; }
.trust-list { display: grid; gap: 1px; background: rgba(255, 255, 255, .12); }
.trust-list article { display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 27px 29px; background: var(--navy-soft); }
.trust-list article > span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: rgba(13, 162, 215, .17); color: #66d6f5; font-weight: 900; }
.trust-list h3 { margin: 2px 0 6px; font-size: 1.08rem; letter-spacing: 0; }
.trust-list p { margin: 0; color: #aebfce; font-size: .92rem; }

.contact { background: white; }
.contact-panel { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: center; padding: 60px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-panel > div:first-child > p:last-child { color: var(--muted); }
.contact-reassurance { display: flex; align-items: center; gap: 10px; color: var(--ink) !important; font-size: .94rem; font-weight: 800; }
.contact-reassurance span { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: #e4f6ec; color: #16834a; }
.contact-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-actions > * { display: flex; min-width: 0; min-height: 116px; flex-direction: column; justify-content: center; padding: 20px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); text-decoration: none; }
.contact-actions a { transition: border-color .18s ease, transform .18s ease; }
.contact-actions a:hover, .contact-actions a:focus-visible { border-color: var(--blue); transform: translateY(-2px); }
.contact-actions span { margin-bottom: 5px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-actions strong { font-size: .95rem; overflow-wrap: anywhere; }

footer { background: #04111f; color: #aebdca; }
.footer-inner { display: flex; min-height: 116px; align-items: center; justify-content: space-between; gap: 25px; }
.footer-inner > div { display: flex; flex-direction: column; }
.footer-inner strong { color: white; }
.footer-inner span, .footer-inner p { margin: 0; font-size: .86rem; }
.footer-meta { align-items: flex-end; gap: 2px; text-align: right; }
.footer-meta a { color: white; font-size: .85rem; font-weight: 650; text-decoration: none; }
.footer-meta a:hover, .footer-meta a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible { outline: 3px solid #66d6f5; outline-offset: 3px; }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid, .trust-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 46px; }
  .status-card { max-width: 590px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { gap: 55px; }
  .contact-panel { gap: 35px; padding: 44px; }
  nav { gap: 22px; }
  .nav-contact span { display: inline; }
}

@media (max-width: 760px) {
  nav > a:not(.nav-contact) { display: none; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 30px, 1160px); }
  .header-inner { min-height: 78px; }
  .brand-mark { width: 49px; height: 49px; border-radius: 12px; }
  .brand-name { font-size: 1rem; }
  .nav-contact { padding: 8px 13px; }
  .hero { padding: 136px 0 75px; }
  .hero::before { background: rgba(3, 18, 34, .88); }
  .hero-grid { gap: 38px; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .hero-points { display: grid; }
  .status-card { padding: 25px 22px; }
  .maintenance-inner { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 34px; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .services-cta { align-items: stretch; flex-direction: column; padding: 24px 22px; }
  .services-cta .button { width: 100%; }
  .trust-list article { padding: 23px 20px; }
  .contact-panel { width: calc(100% - 30px); padding: 30px 21px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-actions > * { min-height: 100px; }
  .footer-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 28px; }
  .footer-meta { align-items: flex-start; text-align: left; }
}

@media (max-width: 390px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  .brand-name { max-width: 110px; line-height: 1.1; }
  .nav-contact { font-size: .86rem; }
  .nav-contact span { display: none; }
  .status-card dl div { grid-template-columns: 58px 1fr; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
