:root {
  --ink: #123047;
  --muted: #617386;
  --soft: #eef8fc;
  --paper: #ffffff;
  --line: rgba(0, 169, 210, 0.16);
  --brand: #00a9d2;
  --brand-dark: #0b4f69;
  --brand-deep: #08364d;
  --accent: #37c6e6;
  --accent-soft: #e8faff;
  --warn: #f59e0b;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --max: 1160px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 169, 210, 0.14), transparent 30rem),
    radial-gradient(circle at 96% 8%, rgba(0, 169, 210, 0.10), transparent 28rem),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 42%, #f4fbff 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.wrapper {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 169, 210, 0.13);
}

.navbar {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  text-decoration: none;
}

.logo-link img { width: clamp(150px, 13vw, 180px); height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.94rem;
  padding: 10px 13px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(0, 169, 210, 0.10);
  color: var(--brand);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand-dark);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: white;
  box-shadow: 0 14px 30px rgba(0, 169, 210, .22);
}

.btn-primary:hover { box-shadow: 0 18px 38px rgba(0, 169, 210, .30); }

.btn-secondary {
  background: white;
  color: var(--brand-dark);
  border-color: rgba(0, 169, 210, .22);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: rgba(0, 169, 210, .42);
  color: var(--brand);
}

.btn-ghost {
  background: rgba(255,255,255,.72);
  color: var(--brand-dark);
  border-color: rgba(15, 23, 42, .1);
}

.hero {
  position: relative;
  padding: 76px 0 58px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 42px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 169, 210, .24);
  border-radius: 999px;
  background: rgba(232, 250, 255, .82);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .91rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 169, 210, .50);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(0, 169, 210, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 169, 210, 0); }
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: .93;
  letter-spacing: -0.072em;
}

.lead {
  max-width: 640px;
  color: #475569;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #475569;
  font-weight: 700;
  font-size: .94rem;
}

.trust-row span,
.trust-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(0, 169, 210, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.65);
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(238,244,251,.68));
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -90px -60px auto auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(0, 169, 210, .22), transparent 70%);
}

.status-card {
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 18px;
}

.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.status-label {
  color: var(--muted);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 900;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--accent-soft);
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 900;
}

.status-card h2 {
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin-bottom: 10px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-link {
  position: relative;
  display: block;
  min-height: 132px;
  padding: 18px;
  border-radius: 24px;
  background: var(--brand-dark);
  color: white;
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.quick-link:nth-child(2) { background: linear-gradient(135deg, #0088ad, #00a9d2); }
.quick-link:nth-child(3) { background: linear-gradient(135deg, #0b4f69, #08364d); grid-column: 1 / -1; min-height: 108px; }

.quick-link::after {
  content: "↗";
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 1.3rem;
  opacity: .75;
}

.quick-link:hover,
.quick-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11, 31, 58, .18);
  outline: none;
}

.quick-link strong { display: block; font-size: 1.1rem; line-height: 1.1; margin-bottom: 8px; }
.quick-link span { color: rgba(255,255,255,.74); font-weight: 650; font-size: .91rem; }

.section {
  padding: 74px 0;
}

.section.compact { padding-top: 36px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  margin-bottom: 30px;
}

.section-head.center {
  display: block;
  text-align: center;
  max-width: 740px;
  margin: 0 auto 34px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.section-head p,
.section-intro {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 670px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.service-card,
.form-card,
.notice-card {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover,
.form-card:hover,
.notice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(0, 169, 210, .28);
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,169,210,.14), rgba(0,169,210,.16));
  color: var(--brand);
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.service-card h3,
.form-card h3,
.notice-card h3 {
  font-size: 1.22rem;
  letter-spacing: -.025em;
  margin-bottom: 9px;
}

.service-card p,
.form-card p,
.notice-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.card-link::after { content: "→"; transition: transform .2s ease; }
.card-link:hover::after { transform: translateX(3px); }

.forms-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 20px;
  align-items: start;
}

.feature-panel {
  position: sticky;
  top: 108px;
  min-height: 460px;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8,54,77,.96), rgba(0,169,210,.86)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.22), transparent 45%);
  box-shadow: var(--shadow);
}

.feature-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  right: -130px;
  bottom: -140px;
}

.feature-panel h2,
.feature-panel p,
.feature-panel .eyebrow { position: relative; z-index: 1; }
.feature-panel .eyebrow { color: #dff8ff; }
.feature-panel p { color: rgba(255,255,255,.75); }

.check-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: white;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.form-card .meta {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: .81rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
}

.form-card .card-link { margin-top: auto; }


.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  padding: 20px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.contact-card > span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.contact-card strong {
  display: block;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-line { display: block; }

.contact-card,
.form-card,
.notice-card,
.service-card,
.footer-inner,
.footer-inner p {
  min-width: 0;
}

.footer-address,
.footer-links a,
.contact-card strong,
.trust-row a {
  overflow-wrap: anywhere;
}

.site-footer {
  margin-top: 52px;
  padding: 34px 0;
  background: var(--brand-deep);
  color: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner p { margin: 0; color: rgba(255,255,255,.68); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover { color: white; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-actions .btn { display: none; }
  .menu-toggle { display: inline-block; }
  .navbar { grid-template-columns: 1fr auto; }
  .nav-links {
    position: fixed;
    inset: 78px 20px auto 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero-grid,
  .forms-layout {
    grid-template-columns: 1fr;
  }
  .feature-panel { position: relative; top: auto; min-height: auto; }
  .card-grid,
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .wrapper { width: min(calc(100% - 28px), var(--max)); }
  .navbar { min-height: 72px; }
  .logo-link img { width: min(160px, 52vw); }
  .nav-links { inset: 72px 14px auto 14px; }
  .hero { padding-top: 44px; }
  .quick-links,
  .card-grid,
  .form-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .footer-inner { display: block; }
  .footer-links { margin-top: 18px; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
