:root {
  --navy: #0b1f3a;
  --turq: #18c5c9;
  --turq2: #08d7e6;
  --off: #f8f9fa;
  --gray: #e5e7eb;
  --text: #243247;
  --muted: #667085;
  --white: #fff;
  --shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}
.nav-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 185px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--turq);
  transition: 0.25s;
}
.nav-links a:hover:after,
.nav-links a.active:after {
  right: 0;
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: linear-gradient(90deg, var(--turq), var(--turq2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(24, 197, 201, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid #cdd7df;
  background: #fff;
  color: var(--navy);
}
.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 80% 40%, #e9ffff 0, #fff 45%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #087e85;
  background: #e8fbfb;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.hero h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -2.4px;
  margin: 18px 0;
}
.hero p {
  font-size: 19px;
  color: var(--text);
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-art {
  position: relative;
  isolation: isolate;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: 16% 6%;
  background: radial-gradient(circle, #bff7f8, transparent 65%);
  filter: blur(10px);
  z-index: -1;
}
.hero-art img {
  width: min(100%, 590px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 24px 34px rgba(11, 31, 58, 0.12));
  transform-origin: center 58%;
  animation: hero-ribbon-float 5.5s ease-in-out infinite;
}
@keyframes hero-ribbon-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-13px) rotate(1deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art img {
    animation: none;
  }
}
.search-card {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  padding: 9px;
  background: #fff;
  border: 1px solid #dfe9ed;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 690px;
}
.search-card input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--navy);
}
.section {
  padding: 90px 0;
}
.section-soft {
  background: linear-gradient(180deg, #f8ffff, #fff);
}
.section-dark {
  background: linear-gradient(135deg, #071b33, #0d365a);
  color: #fff;
}
.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0baeb4;
  font-size: 12px;
  font-weight: 800;
}
.section h2,
.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -1.4px;
  margin: 8px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: #fff;
  border: 1px solid #e3ebee;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 40px rgba(11, 31, 58, 0.05);
}
.card h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #e8fbfb;
  display: grid;
  place-items: center;
  color: #079da4;
}
.ui-icon {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cover-icon .ui-icon {
  width: 44px;
  height: 44px;
  stroke-width: 1.65;
}
.legal-check .ui-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}
.step {
  position: relative;
  padding-left: 76px;
}
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.services-grid .card {
  min-height: 190px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  padding: 30px;
  border-radius: 22px;
  background: #f4ffff;
  border: 1px solid #d7f4f4;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 36px;
}
.testimonial {
  font-size: 18px;
}
.testimonial footer {
  margin-top: 18px;
  color: #607184;
  font-size: 14px;
}
.cta {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 30px;
  padding: 44px;
  border-radius: 30px;
  background: linear-gradient(135deg, #081e39, #0d4568);
  color: #fff;
}
.cta p {
  color: #dcecf2;
}
.cta img {
  max-height: 165px;
  margin-left: auto;
}
.page-hero {
  padding: 85px 0 58px;
  background: linear-gradient(180deg, #f1ffff, #fff);
}
.page-hero p {
  font-size: 19px;
  max-width: 780px;
  color: var(--text);
}
.content {
  max-width: 900px;
}
.content h2 {
  font-size: 32px;
  margin-top: 44px;
}
.content h3 {
  font-size: 22px;
  margin-top: 30px;
}
.content p,
.content li {
  color: #3f4d60;
}
.values .card {
  border-top: 4px solid var(--turq);
}
.faq-group {
  margin-bottom: 36px;
}
.faq-group h2 {
  font-size: 29px;
}
.faq-item {
  border: 1px solid #dce5e9;
  border-radius: 16px;
  margin: 12px 0;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 750;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.faq-a {
  display: none;
  padding: 0 24px 22px;
  color: #536174;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
}
.contact-panel {
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(145deg, #081e39, #0f4266);
  color: #fff;
}
.contact-panel p {
  color: #d9e8ef;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 700;
  font-size: 14px;
}
.field input,
.field select,
.field textarea {
  border: 1px solid #d8e1e5;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  outline: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--turq);
  box-shadow: 0 0 0 4px rgba(24, 197, 201, 0.12);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.subject-select {
  position: relative;
}
.subject-trigger {
  width: 100%;
  min-height: 52px;
  padding: 14px 48px 14px 15px;
  border: 1px solid #d8e1e5;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.subject-trigger:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--turq);
  border-bottom: 2px solid var(--turq);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}
.subject-trigger[aria-expanded="true"] {
  border-color: var(--turq);
  box-shadow: 0 0 0 4px rgba(24, 197, 201, 0.12);
}
.subject-trigger[aria-expanded="true"]:after {
  transform: translateY(-30%) rotate(225deg);
}
.subject-options {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid #c9ecee;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(11, 31, 58, 0.16);
}
.subject-options button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
}
.subject-options button:hover,
.subject-options button:focus,
.subject-options button[aria-selected="true"] {
  background: #e9fbfb;
  color: #087e85;
  outline: 0;
}
.subject-options button[aria-selected="true"] {
  font-weight: 700;
}
.footer {
  background: #07182d;
  color: #fff;
  padding: 58px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer img {
  width: 180px;
  filter: brightness(0) invert(1);
}
.footer p,
.footer a {
  color: #b9cad4;
  font-size: 14px;
}
.footer h4 {
  margin-top: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #91a6b3;
  font-size: 13px;
}
.notice {
  padding: 16px 18px;
  background: #fff8dc;
  border: 1px solid #f0df9e;
  border-radius: 14px;
  color: #715d1a;
  font-size: 14px;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #edfafa;
  color: #087e85;
  font-weight: 700;
  font-size: 13px;
}
.mobile-only {
  display: none;
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 22px;
    border: 1px solid #e2e8ec;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .contact-wrap,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 54px 0;
  }
  .hero-art {
    order: -1;
  }
  .hero-art img {
    max-height: 330px;
    margin: auto;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .search-card {
    flex-direction: column;
  }
  .cta img {
    margin: auto;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .section {
    padding: 66px 0;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  background: #fff0f0;
  border-color: #f1b8b8;
  color: #a32929;
}
