:root {
  --bg: #f6f9fc;
  --white: #ffffff;
  --primary: #0f4c81;
  --primary-dark: #0a365c;
  --accent: #00a67e;
  --soft-blue: #eaf4ff;
  --text: #182230;
  --muted: #667085;
  --border: #d9e4ef;
  --shadow: 0 18px 45px rgba(15, 76, 129, 0.1);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 228, 239, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0;
  color: var(--primary);
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 7px;
  font-size: 1rem;
}

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

.nav a {
  padding: 10px 13px;
  border-radius: 7px;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: var(--soft-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
}

.icon-btn svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
}

.mobile-only {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(15, 76, 129, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--primary);
  background: var(--white);
  border-color: var(--border);
}

.btn-accent {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(0, 166, 126, 0.2);
}

.hero {
  min-height: 80vh;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background-image: linear-gradient(90deg, rgba(7, 38, 66, 0.86) 0%, rgba(15, 76, 129, 0.66) 48%, rgba(15, 76, 129, 0.08) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  background: linear-gradient(180deg, rgba(246, 249, 252, 0) 78%, var(--bg) 100%);
}

.hero-content {
  width: min(100%, 720px);
  padding-block: 92px;
  color: var(--white);
}

.eyebrow {
  display: block;
  max-width: 100%;
  margin: 0 0 16px;
  color: #d7f6ef;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.45fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  font-size: 1.02rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 1px 0 rgba(15, 76, 129, 0.03);
}

.card:hover {
  border-color: #bdd4e9;
  box-shadow: var(--shadow);
}

.action-card {
  min-height: 170px;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--primary);
  background: var(--soft-blue);
  border-radius: 8px;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 10px;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 800;
}

.feature-band {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #344054;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.step {
  position: relative;
  padding-top: 70px;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 26px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
  font-weight: 900;
}

.price-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}

.price {
  margin: 18px 0 12px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
}

.price-card .btn {
  margin-top: auto;
}

.testimonial {
  min-height: 225px;
}

.quote {
  font-size: 1.02rem;
  color: #344054;
}

.person {
  margin-top: 22px;
  color: var(--primary);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.faq-question svg {
  flex: 0 0 18px;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #1470a6);
}

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

.cta-band p,
.cta-band h2 {
  color: var(--white);
}

.page-hero {
  padding: 82px 0 58px;
  background: linear-gradient(135deg, var(--soft-blue), var(--white));
  border-bottom: 1px solid var(--border);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.6fr);
  gap: 44px;
  align-items: center;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.page-hero-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.mock-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.status-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 20px;
}

.status-row input,
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--text);
  outline: none;
}

.status-row input:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: start;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #344054;
  font-size: 0.92rem;
  font-weight: 800;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  padding: 58px 0 28px;
  color: #dbe8f4;
  background: #0a365c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}

.site-footer h3,
.site-footer h4,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  color: #b9ccdc;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a {
  color: #dbe8f4;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b9ccdc;
  font-size: 0.9rem;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 200;
  width: min(86vw, 360px);
  padding: 22px;
  background: var(--white);
  box-shadow: -24px 0 50px rgba(24, 34, 48, 0.18);
  transform: translateX(105%);
  transition: transform 0.25s ease;
}

.mobile-panel.open {
  transform: translateX(0);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 13px 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
}

.mobile-nav a.active,
.mobile-nav a:hover {
  color: var(--primary);
  background: var(--soft-blue);
}

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(24, 34, 48, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.panel-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
  }

  .nav,
  .header-actions .account-btn,
  .header-actions .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 65vh;
  }

  .section-head,
  .split,
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    position: relative;
    min-height: 66px;
    gap: 12px;
  }

  .logo {
    max-width: calc(100% - 100px);
    font-size: 1rem;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 130;
    gap: 7px;
  }

  .mobile-only {
    display: block;
  }

  .hero {
    min-height: 560px;
  }

  .hero::before {
    background-image: linear-gradient(90deg, rgba(7, 38, 66, 0.88) 0%, rgba(15, 76, 129, 0.72) 68%, rgba(15, 76, 129, 0.42) 100%), var(--hero-image);
    background-position: center;
  }

  .hero-content {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-block: 60px;
  }

  .hero h1,
  .hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }

  .status-row,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 62px 0 42px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .logo {
    gap: 7px;
    font-size: 0.94rem;
  }

  .header-actions .search-btn {
    width: 36px;
  }

  .menu-toggle {
    width: 36px;
  }

  .btn {
    width: 100%;
  }
}
