:root {
  --bg-dark: #070f1c;
  --bg-navy: #0d1f3a;
  --bg-navy-2: #133157;
  --bg-surface: #f4f7fc;
  --text-dark: #172235;
  --text-muted: #576783;
  --white: #ffffff;
  --line: #d9e3f1;
  --blue: #1e8bff;
  --orange: rgb(235, 159, 26);
  --orange-2: #f0b347;
  --shadow-soft: 0 12px 28px rgba(15, 38, 73, 0.12);
  --shadow-strong: 0 28px 50px rgba(4, 19, 42, 0.24);
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --space-1: clamp(0.5rem, 1vw, 0.75rem);
  --space-2: clamp(0.75rem, 1.5vw, 1rem);
  --space-3: clamp(1rem, 2vw, 1.4rem);
  --space-4: clamp(1.35rem, 2.8vw, 2rem);
  --space-5: clamp(1.8rem, 3.8vw, 2.8rem);
  --space-6: clamp(2.5rem, 5vw, 4.4rem);
  --container: min(1180px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% -10%, rgba(30, 139, 255, 0.08), transparent 35%),
    radial-gradient(circle at 92% 4%, rgba(235, 159, 26, 0.12), transparent 28%),
    var(--white);
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 1200;
  background: var(--bg-dark);
  color: var(--white);
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
}

.skip-link:focus {
  left: 0.5rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #071324, #0f2547);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--orange));
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.utility-bar {
  background: #f8f9fc;
  color: #617294;
  font-size: 0.84rem;
  border-bottom: 1px solid #dbe3f0;
}

.utility-inner {
  min-height: 3rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.utility-left,
.utility-social {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.utility-left p,
.utility-left a {
  margin: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.utility-left .fi,
.utility-social .fi {
  line-height: 0;
  color: var(--orange);
  font-size: 0.86rem;
}

.utility-left a:hover {
  color: #1f3150;
}

.utility-social span {
  font-weight: 600;
}

.utility-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #eaf0fb;
}

.utility-social a .fi {
  color: #1d3e75;
  font-size: 0.78rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(9, 33, 66, 0.12);
  box-shadow: 0 12px 32px rgba(8, 30, 60, 0.14);
}

.header-inner {
  min-height: 5.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.logo-wrap img {
  width: clamp(170px, 16vw, 235px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1vw, 1rem);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 0.45rem 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #213757;
  border-radius: 0;
  background: transparent;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.18rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange) 18%, var(--orange) 82%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #091f3d;
  background: transparent;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a:focus-visible {
  outline: none;
  color: #091f3d;
}

.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1.22rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #de9117 0%, var(--orange) 50%, var(--orange-2) 100%);
  box-shadow: 0 14px 30px rgba(235, 159, 26, 0.32);
  min-height: 2.95rem;
  padding-inline: 1.6rem;
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.38rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.5rem 0.35rem;
  cursor: pointer;
  margin-left: 0.3rem;
}

.menu-line {
  display: block;
  height: 0.24rem;
  border-radius: 999px;
  background: #1d3faf;
  transition: width 0.2s ease;
}

.menu-line-1 {
  width: 2rem;
}

.menu-line-2 {
  width: 0.95rem;
}

.menu-line-3 {
  width: 1.55rem;
}

.menu-toggle:hover .menu-line-1 {
  width: 0.95rem;
}

.menu-toggle:hover .menu-line-2 {
  width: 2rem;
}

.menu-toggle:hover .menu-line-3 {
  width: 1.3rem;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(5, 15, 31, 0.48);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.drawer-backdrop.is-visible {
  opacity: 1;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  width: min(420px, 92vw);
  height: 100vh;
  background: #f5f7fb;
  border-left: 1px solid #dbe3ef;
  box-shadow: -10px 0 34px rgba(7, 24, 50, 0.2);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 1.1rem 1.3rem 1.8rem;
  overflow: auto;
}

.site-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0;
  background: #e8edf6;
  color: #071f3a;
  display: inline-grid;
  place-items: center;
  float: right;
  cursor: pointer;
}

.drawer-close .fi {
  line-height: 0;
  font-size: 1rem;
}

.drawer-logo {
  width: min(290px, 90%);
  border-radius: 10px;
  margin: 3.5rem 0 1.2rem;
}

.drawer-block {
  clear: both;
  border-top: 1px solid #cfd9e8;
  padding-top: 1.2rem;
  margin-top: 1rem;
}

.drawer-block h2 {
  margin: 0 0 0.6rem;
  color: #0a2151;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.drawer-block p {
  margin: 0 0 1rem;
  color: #58688a;
}

.drawer-nav {
  display: grid;
  gap: 0.42rem;
}

.drawer-nav a {
  font-weight: 700;
  color: #1d345a;
  padding: 0.45rem 0;
}

.drawer-nav a:hover {
  color: #0b2045;
}

@media (min-width: 781px) {
  .drawer-nav {
    display: none;
  }
}

.drawer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.drawer-contact li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #5a6b8a;
}

.drawer-contact .fi {
  color: #a1adbf;
  font-size: 0.96rem;
  line-height: 0;
}

.drawer-social {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.6rem;
}

.drawer-social a {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #173ea7;
  color: #fff;
}

.drawer-social .fi {
  line-height: 0;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--space-6) + 0.6rem) 0;
  background:
    linear-gradient(110deg, rgba(6, 20, 40, 0.9) 0%, rgba(10, 30, 58, 0.78) 45%, rgba(12, 36, 69, 0.72) 100%),
    url("/wp-content/uploads/2026/05/slider1.jpg");
  background-size: cover;
  background-position: center center;
  color: #eaf2ff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.45), rgba(235, 159, 26, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 20px -100px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 139, 255, 0.28), rgba(30, 139, 255, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #8ec4ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.14;
  text-wrap: balance;
  text-shadow: 0 10px 35px rgba(4, 15, 30, 0.45);
}

.hero p {
  margin: 1rem 0 0;
  max-width: 60ch;
}

.hero-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-license-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.95rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 218, 245, 0.6);
  color: #d3e3ff;
  background: rgba(11, 30, 56, 0.45);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-book-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(244, 248, 255, 0.97), rgba(226, 235, 250, 0.95));
  border: 1px solid rgba(182, 203, 233, 0.74);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow: 0 28px 58px rgba(6, 21, 43, 0.28);
  backdrop-filter: blur(6px);
}

.hero-book-card::before,
.hero-book-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-book-card::before {
  width: 13rem;
  height: 13rem;
  top: -7.4rem;
  right: -4.2rem;
  background: radial-gradient(circle, rgba(30, 139, 255, 0.2), rgba(30, 139, 255, 0));
}

.hero-book-card::after {
  width: 11rem;
  height: 11rem;
  left: -5.2rem;
  bottom: -6.4rem;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.24), rgba(235, 159, 26, 0));
}

.hero-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.hero-form-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.26rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(175, 197, 227, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 249, 255, 0.88));
  color: #234775;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-form-eyebrow {
  margin: 0;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #415987;
}

.hero-book-card h2 {
  margin: 0.5rem 0 0.48rem;
  text-align: left;
  color: #081f5f;
  font-size: clamp(1.42rem, 2.5vw, 1.95rem);
  line-height: 1.14;
}

.hero-form-sub {
  margin: 0 0 0.78rem;
  color: #5d7394;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-appointment-form {
  display: grid;
  gap: 0.72rem;
  position: relative;
  z-index: 1;
}

.hero-field {
  position: relative;
}

.hero-field-solid {
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 255, 0.92));
  border: 1px solid #cfddef;
  padding: 0.88rem 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 15px rgba(12, 34, 64, 0.05);
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.hero-field-solid:focus-within {
  border-color: rgba(30, 139, 255, 0.46);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 139, 255, 0.12), 0 12px 22px rgba(8, 28, 56, 0.12);
  transform: translateY(-1px);
}

.hero-field input,
.hero-field select {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #132748;
  padding: 0;
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-field input[type="date"]::-webkit-calendar-picker-indicator,
.hero-field input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.hero-field input[type="date"]::-webkit-clear-button,
.hero-field input[type="time"]::-webkit-clear-button,
.hero-field input[type="time"]::-webkit-inner-spin-button {
  display: none;
}

.hero-field select {
  appearance: none;
  cursor: pointer;
}

.hero-field input::placeholder {
  color: #6e7f9d;
  font-weight: 600;
}

.hero-field select:invalid {
  color: #6e7f9d;
  font-weight: 600;
}

.hero-field select option {
  color: #132748;
}

.hero-field.icon-right input,
.hero-field.icon-right select {
  padding-right: 2rem;
}

.hero-field .fi {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8faa;
  line-height: 0;
  font-size: 1.05rem;
  transition: color 0.18s ease;
}

.hero-field:focus-within .fi {
  color: #1b79e8;
}

.hero-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.82rem;
}

.hero-book-btn {
  width: 100%;
  margin-top: 0.38rem;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 14px;
  min-height: 3.2rem;
  font-size: 1rem;
  box-shadow: 0 12px 22px rgba(235, 159, 26, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-book-btn.is-loading,
.hero-book-btn:disabled {
  opacity: 0.85;
  cursor: wait;
  box-shadow: 0 10px 18px rgba(235, 159, 26, 0.2);
  transform: none;
}

.hero-book-btn.is-loading::after {
  content: "";
}

.hero-form-status {
  min-height: 1.25rem;
  margin: 0.7rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-form-status.is-success {
  color: #17713a;
}

.hero-form-status.is-error {
  color: #b13232;
}

.hero-form-footnote {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #6881a3;
  font-size: 0.75rem;
  line-height: 1.45;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.trust-strip {
  margin-top: -2.6rem;
  position: relative;
  z-index: 5;
  padding-inline: 0.45rem;
  isolation: isolate;
}

.trust-strip::before {
  content: "";
  position: absolute;
  left: clamp(0rem, 7vw, 7rem);
  top: -2.2rem;
  width: clamp(220px, 32vw, 480px);
  height: 10rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(235, 159, 26, 0.24), rgba(235, 159, 26, 0));
  filter: blur(6px);
  z-index: -2;
  pointer-events: none;
}

.trust-strip::after {
  content: "";
  position: absolute;
  right: clamp(0rem, 5vw, 5rem);
  bottom: -1.8rem;
  width: clamp(200px, 28vw, 420px);
  height: 9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 139, 255, 0), rgba(30, 139, 255, 0.24));
  filter: blur(7px);
  z-index: -2;
  pointer-events: none;
}

.trust-grid {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.95)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  border-radius: 24px;
  border: 1px solid #d9e4f3;
  box-shadow: 0 18px 34px rgba(8, 30, 60, 0.16);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  overflow: hidden;
}

.trust-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.trust-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(194, 207, 228, 0.22) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(194, 207, 228, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.trust-grid article {
  position: relative;
  border-radius: 14px;
  background: rgba(241, 246, 254, 0.72);
  padding: 0.92rem 0.98rem 0.95rem;
  border: 1px solid #d8e2f1;
  display: grid;
  gap: 0.34rem;
  align-content: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
  z-index: 1;
}

.trust-grid article:hover {
  transform: translateY(-4px);
  border-color: #cbd9ef;
  background: rgba(247, 251, 255, 0.92);
  box-shadow: 0 14px 24px rgba(12, 36, 70, 0.1);
}

.trust-grid strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
  color: #0c2649;
}

.trust-grid span {
  font-size: 0.88rem;
  color: #566b8d;
}

.section {
  padding: var(--space-6) 0;
}

.section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: var(--space-4);
  max-width: 66ch;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.55rem);
  line-height: 1.2;
  color: #0a2040;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.about-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 139, 255, 0.08), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(235, 159, 26, 0.08), transparent 36%),
    var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: var(--space-5);
  align-items: center;
}

.about-media {
  position: relative;
  isolation: isolate;
}

.about-media-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #d4e1f3;
  box-shadow: 0 26px 48px rgba(11, 32, 64, 0.2);
}

.about-media-frame img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 38vw, 540px);
  object-fit: cover;
  object-position: center top;
}

.about-media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 35%),
    linear-gradient(180deg, rgba(8, 29, 58, 0) 52%, rgba(8, 29, 58, 0.35) 100%);
  pointer-events: none;
}

.about-float-card {
  position: absolute;
  left: -1.1rem;
  bottom: 1.2rem;
  z-index: 2;
  width: min(82%, 360px);
  margin: 0;
  background: rgba(9, 30, 58, 0.88);
  color: #dce9ff;
  border: 1px solid rgba(171, 200, 244, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  box-shadow: 0 16px 30px rgba(4, 18, 40, 0.28);
}

.about-float-card p {
  margin: 0 0 0.35rem;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
  color: #9fc4ff;
}

.about-float-card strong {
  font-size: 0.97rem;
  line-height: 1.35;
  color: #edf4ff;
}

.about-float-stat {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  margin: 0;
  background: linear-gradient(135deg, rgba(235, 159, 26, 0.94), rgba(238, 181, 74, 0.96));
  color: #1a2131;
  border-radius: 15px;
  padding: 0.72rem 0.9rem 0.65rem;
  box-shadow: 0 14px 28px rgba(235, 159, 26, 0.32);
  display: grid;
  line-height: 1.1;
}

.about-float-stat .value {
  font-weight: 900;
  font-size: 1.24rem;
}

.about-float-stat .label {
  margin-top: 0.16rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.about-content > p {
  color: var(--text-muted);
}

.about-lead {
  margin-top: 0.65rem;
  font-size: clamp(1.04rem, 1.58vw, 1.34rem);
  line-height: 1.55;
  color: #4f6180;
  max-width: 62ch;
}

.about-tabs {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-tab {
  border: 1px solid #c9d8ec;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  color: #1c3555;
  border-radius: 999px;
  padding: 0.57rem 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(15, 40, 74, 0.12);
}

.about-tab.is-active {
  color: var(--white);
  border-color: #0f2e56;
  background: linear-gradient(130deg, #0c2345, #184379);
}

.about-panels {
  margin-top: 1rem;
  min-height: 108px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid #dbe6f4;
  border-radius: 16px;
  padding: 0.95rem 1.05rem;
  box-shadow: 0 12px 22px rgba(9, 29, 57, 0.08);
}

.about-panel {
  color: #4c5f7e;
  font-size: 1.02rem;
  line-height: 1.6;
}

.check-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem 1.8rem;
  list-style: none;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0;
  font-weight: 700;
  color: #223754;
  font-size: 0.98rem;
  line-height: 1.35;
  max-width: 30ch;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--orange), #f1bc57);
}

.services-section {
  background:
    radial-gradient(circle at 6% 16%, rgba(30, 139, 255, 0.09), transparent 30%),
    radial-gradient(circle at 95% 84%, rgba(235, 159, 26, 0.09), transparent 34%),
    #e9edf9;
}

.services-section .container {
  width: min(1320px, 95vw);
}

.services-section .section-head {
  padding-left: calc(2.7rem + 0.7rem);
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-showcase-card {
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(9, 30, 60, 0.12);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(9, 30, 60, 0.18);
}

.service-showcase-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.service-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-showcase-card:hover .service-showcase-media img {
  transform: scale(1.04);
}

.service-showcase-content {
  position: relative;
  padding: 2.65rem 1.15rem 1rem;
}

.service-showcase-icon {
  position: absolute;
  left: 1.15rem;
  top: -1.8rem;
  width: 4.35rem;
  height: 4.35rem;
  background: linear-gradient(140deg, #ea7819, #f19a2f);
  clip-path: polygon(25% 6%, 75% 6%, 96% 50%, 75% 94%, 25% 94%, 4% 50%);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 14px 24px rgba(234, 120, 25, 0.32);
}

.service-showcase-icon .fi {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 0;
}

.service-showcase-number {
  position: absolute;
  right: 1.05rem;
  top: 1.05rem;
  font-size: clamp(2.6rem, 4.2vw, 3.55rem);
  line-height: 1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #b7c7df;
}

.service-showcase-content h3 {
  margin: 0;
  padding-right: 4.2rem;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #0d2851;
}

.service-showcase-content p {
  margin: 0.78rem 0 0;
  min-height: 4.9rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #5d6f8d;
}

.service-showcase-content a {
  margin-top: 0.86rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e1e8f3;
  color: #5a6478;
  font-weight: 800;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.service-showcase-content a .fi {
  line-height: 0;
  font-size: 0.9rem;
}

.service-showcase-content a:hover {
  color: #0f2f62;
}

.services-inline-carousel {
  margin-top: 1.1rem;
}

.services-offer-carousel-wrap {
  margin-top: 0.35rem;
}

.services-carousel-wrap {
  --services-offer-card-width: clamp(288px, 24vw, 390px);
  --services-offer-gap: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

.service-carousel-btn {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  border: 1px solid #cdd9eb;
  background: #ffffff;
  color: #183560;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 6px 12px rgba(8, 29, 59, 0.08);
}

.service-carousel-btn:hover {
  border-color: #b5c8e4;
  background: #f7fbff;
}

.services-carousel-track {
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.15rem 0 0.35rem;
  scrollbar-width: none;
}

.services-offer-track {
  grid-auto-columns: calc((100% - (var(--services-offer-gap) * 3)) / 4);
  gap: var(--services-offer-gap);
  width: 100%;
  margin-inline: 0;
}

.services-offer-track .service-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  border-color: #d8e2f0;
  background: #fefefe;
  box-shadow: 0 12px 24px rgba(18, 40, 73, 0.08);
}

.services-offer-track .service-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(18, 40, 73, 0.12);
}

.services-offer-track .service-showcase-icon {
  display: none;
}

.services-offer-track .service-showcase-number {
  font-size: clamp(3.4rem, 4.6vw, 5rem);
  top: 0.5rem;
  right: 1.15rem;
  -webkit-text-stroke: 1px #d6deec;
}

.services-offer-track .service-showcase-content {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1.35rem 1.35rem 1.45rem;
}

.services-offer-track .service-showcase-content h3 {
  order: 2;
  padding-right: 5.8rem;
  margin-top: 0.15rem;
  font-size: clamp(1.05rem, 1.8vw, 1.14rem);
}

.services-offer-track .service-showcase-content p {
  order: 3;
  margin: 0;
  min-height: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.services-offer-track .service-showcase-content a {
  order: 1;
  width: fit-content;
  margin: 0;
  padding: 0.42rem 1.28rem 0.5rem;
  border-top: 0;
  border: 1px solid #cfd8e8;
  border-radius: 999px;
  background: #f7faff;
  color: #101f59;
  font-size: 1.02rem;
  font-weight: 700;
}

.services-offer-track .service-showcase-content a:hover {
  border-color: #aebfdd;
  background: #edf3ff;
}

.services-offer-track .service-showcase-media {
  order: 2;
  margin: 0 1.35rem 1.35rem;
  margin-top: auto;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.services-offer-track .service-showcase-card:nth-child(even) .service-showcase-media {
  order: 1;
  margin: 1.35rem 1.35rem 0;
  margin-top: 1.35rem;
  margin-bottom: auto;
}

.services-offer-track .service-showcase-card:nth-child(even) .service-showcase-content {
  order: 2;
  padding-top: 1.1rem;
}

.services-offer-track .service-showcase-card:nth-child(even) .service-showcase-content a {
  order: 4;
  margin-top: 0.2rem;
}

.services-offer-track .service-showcase-card:nth-child(even) .service-showcase-number {
  top: auto;
  bottom: 0.55rem;
}

.services-carousel-track::-webkit-scrollbar {
  display: none;
}

.service-pill-card {
  scroll-snap-align: start;
  margin: 0;
  min-height: 4rem;
  border-radius: 14px;
  border: 1px solid #d8e3f1;
  background: linear-gradient(160deg, #f8fbff, #edf3fd);
  box-shadow: 0 8px 16px rgba(11, 33, 62, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #17355e;
}

.keyword-band {
  background: #0d203d;
  color: #d6e5ff;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.keyword-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.keyword-track p {
  margin: 0;
  padding: 0.82rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.commitment-section {
  background:
    radial-gradient(circle at 10% 14%, rgba(235, 159, 26, 0.14), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(30, 139, 255, 0.14), transparent 36%),
    linear-gradient(140deg, #0a1830, #122b4e 60%, #173967);
}

.commitment-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(1rem, 2.2vw, 1.85rem);
  align-items: stretch;
}

.commitment-main {
  border-radius: 28px;
  border: 1px solid rgba(219, 233, 255, 0.22);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 44px rgba(3, 10, 23, 0.35);
  backdrop-filter: blur(2px);
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.commitment-main .eyebrow {
  color: #d3e5ff;
}

.commitment-main h2 {
  margin: 0.2rem 0 0.75rem;
  color: #ffffff;
  font-size: clamp(1.56rem, 2.9vw, 2.4rem);
  line-height: 1.15;
}

.commitment-main p {
  margin: 0;
  color: #d0def4;
  font-size: 1rem;
  line-height: 1.7;
}

.commitment-main p + p {
  margin-top: 0.86rem;
}

.commitment-bullets {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.commitment-bullets li {
  position: relative;
  padding-left: 1.2rem;
  color: #eaf2ff;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.commitment-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), #ffd06f);
}

.commitment-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.commitment-btn-secondary {
  color: #e8f1ff;
  border-color: rgba(221, 235, 255, 0.44);
  background: rgba(15, 35, 62, 0.55);
}

.commitment-btn-secondary:hover {
  border-color: rgba(237, 245, 255, 0.72);
  background: rgba(20, 44, 76, 0.82);
}

.commitment-stack {
  display: grid;
  gap: 0.82rem;
}

.commitment-card {
  border-radius: 20px;
  border: 1px solid rgba(200, 217, 240, 0.9);
  background: linear-gradient(162deg, #f8fbff, #eef4ff);
  box-shadow: 0 14px 28px rgba(7, 24, 50, 0.22);
  padding: 1.05rem 1.08rem;
}

.commitment-card h3 {
  margin: 0 0 0.42rem;
  color: #0f2c56;
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
  line-height: 1.28;
}

.commitment-card p {
  margin: 0;
  color: #4f6688;
  font-size: 0.95rem;
  line-height: 1.62;
}

.commitment-card--accent {
  border-color: rgba(247, 197, 103, 0.65);
  background:
    radial-gradient(circle at 88% 20%, rgba(235, 159, 26, 0.2), transparent 45%),
    linear-gradient(165deg, #fff9ed, #f6f0df);
}

.commitment-card--accent p a {
  color: #0f3f78;
  font-weight: 900;
}

.process-section {
  background:
    radial-gradient(circle at 9% 10%, rgba(30, 139, 255, 0.08), transparent 33%),
    radial-gradient(circle at 90% 88%, rgba(235, 159, 26, 0.11), transparent 37%),
    #f6f9ff;
}

.process-section .section-head {
  text-align: center;
  margin-inline: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

.process-step {
  position: relative;
  border-radius: 20px;
  border: 1px solid #d6e2f1;
  background: linear-gradient(160deg, #ffffff, #f6faff);
  box-shadow: 0 14px 28px rgba(8, 29, 58, 0.09);
  padding: 1rem 1rem 1.05rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(8, 29, 58, 0.14);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.1rem;
  right: -0.62rem;
  width: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(111, 137, 176, 0.2), rgba(111, 137, 176, 0.7));
}

.process-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.process-step-number {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(140deg, #0f2f5c, #1e8bff);
  box-shadow: 0 8px 16px rgba(15, 47, 92, 0.28);
}

.process-step-label {
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #cfddf0;
  background: #eff5ff;
  color: #264975;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.04rem;
  line-height: 1.3;
  color: #102f58;
}

.process-step p {
  margin: 0;
  color: #546987;
  font-size: 0.91rem;
  line-height: 1.55;
}

.stats-section {
  background: linear-gradient(140deg, #091a32, #102b50);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.stats-grid article {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.1rem;
}

.stats-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.stats-grid p {
  margin: 0.3rem 0 0;
  color: #c8d8f2;
  font-size: 0.86rem;
}

.maintenance-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(30, 139, 255, 0.08), transparent 33%),
    radial-gradient(circle at 95% 88%, rgba(235, 159, 26, 0.11), transparent 38%),
    #f5f8ff;
}

.maintenance-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2.3vw, 1.8rem);
  border-radius: 30px;
  border: 1px solid #d6e2f2;
  background: linear-gradient(160deg, #ffffff, #f6faff);
  box-shadow: 0 20px 44px rgba(11, 34, 66, 0.1);
  padding: clamp(1rem, 2.2vw, 2rem);
  overflow: hidden;
}

.maintenance-feature::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -7rem;
  top: -7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 139, 255, 0.2), rgba(30, 139, 255, 0));
}

.maintenance-copy {
  position: relative;
  z-index: 1;
}

.maintenance-copy h2 {
  margin: 0.32rem 0 0.62rem;
  color: #0d2a52;
  font-size: clamp(1.58rem, 3vw, 2.28rem);
  line-height: 1.17;
}

.maintenance-lead {
  margin: 0;
  color: #516a8d;
  font-size: 1rem;
  line-height: 1.62;
}

.maintenance-checks {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.maintenance-checks li {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: #1a3761;
  font-size: 0.95rem;
  font-weight: 700;
}

.maintenance-checks i {
  width: 1.32rem;
  height: 1.32rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(235, 159, 26, 0.2), rgba(235, 159, 26, 0.05));
  color: #d78617;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.maintenance-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.64rem;
}

.maintenance-btn-secondary {
  color: #183c68;
  border-color: #cad9ee;
  background: #edf4ff;
}

.maintenance-btn-secondary:hover {
  border-color: #b7cce8;
  background: #e3eeff;
}

.maintenance-spotlight {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(187, 209, 240, 0.44);
  background:
    radial-gradient(circle at 90% 8%, rgba(235, 159, 26, 0.18), transparent 40%),
    linear-gradient(160deg, #0e2447, #12315e 64%, #1b4a85);
  box-shadow: 0 20px 36px rgba(8, 21, 40, 0.34);
  padding: 1.2rem 1.15rem 1rem;
  color: #dce9ff;
  overflow: hidden;
}

.maintenance-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.maintenance-kicker {
  margin: 0;
  color: #c5d8f5;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.maintenance-spotlight h3 {
  margin: 0.58rem 0 0.95rem;
  color: #ffffff;
  font-size: clamp(1.16rem, 2vw, 1.52rem);
  line-height: 1.22;
  max-width: 24ch;
}

.maintenance-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.maintenance-benefits-grid article {
  border-radius: 14px;
  border: 1px solid rgba(204, 222, 246, 0.3);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(2px);
  padding: 0.75rem 0.78rem 0.7rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.maintenance-benefits-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 214, 156, 0.56);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.maintenance-benefits-grid strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.25;
}

.maintenance-benefits-grid span {
  display: block;
  margin-top: 0.3rem;
  color: #c9daf5;
  font-size: 0.8rem;
  line-height: 1.5;
}

.maintenance-note {
  margin: 0.9rem 0 0;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(209, 225, 249, 0.26);
  color: #dce8ff;
  font-size: 0.84rem;
  line-height: 1.55;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 139, 255, 0.1), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(235, 159, 26, 0.12), transparent 22%),
    linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 78%, rgba(15, 54, 97, 0.06), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 38%);
  pointer-events: none;
}

.faq-head {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.faq-head p:last-child {
  color: var(--text-muted);
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: start;
  margin-top: var(--space-4);
}

.faq-side-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid #d9e4f4;
  background:
    radial-gradient(circle at 90% 10%, rgba(235, 159, 26, 0.14), transparent 34%),
    linear-gradient(160deg, #0e2547, #173a69 72%, #1f4f8d);
  box-shadow: 0 18px 40px rgba(9, 28, 53, 0.16);
  padding: clamp(1.2rem, 2.3vw, 1.9rem);
  color: #e8f1ff;
}

.faq-side-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -15% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.faq-side-kicker {
  margin: 0;
  color: #c6d8f5;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-side-card h3 {
  margin: 0.35rem 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.faq-side-copy {
  margin: 0;
  color: #d1dff3;
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-side-stack {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.faq-side-stack div {
  border-radius: 16px;
  border: 1px solid rgba(214, 227, 248, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.8rem;
}

.faq-side-stack span {
  display: block;
  color: #bed1f0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-side-stack strong {
  display: block;
  color: #ffffff;
  margin-top: 0.22rem;
  font-size: 0.96rem;
  line-height: 1.35;
}

.faq-side-stack strong a {
  color: #ffffff;
}

.faq-side-btn {
  margin-top: 1rem;
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 0.82rem;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid #d7e2f1;
  background: linear-gradient(165deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 22px rgba(11, 34, 66, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item h3 {
  margin: 0;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(11, 34, 66, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 900;
  color: #0d2851;
  padding: 1rem 3rem 1rem 1.15rem;
  cursor: pointer;
  position: relative;
  line-height: 1.35;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f305c;
  background: #edf3ff;
  border: 1px solid #d4deed;
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(180deg, rgba(30, 139, 255, 0.05), rgba(30, 139, 255, 0));
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
  background: #0f2f5c;
  color: #ffffff;
  border-color: #0f2f5c;
}

.faq-answer {
  padding: 0 1.15rem 1rem;
}

.faq-answer p {
  margin: 0;
  color: #5b6f8d;
  font-size: 0.95rem;
  line-height: 1.62;
}

.faq-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% -5%, rgba(30, 139, 255, 0.13), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(235, 159, 26, 0.14), transparent 24%),
    linear-gradient(180deg, #f7faff 0%, #eef4fd 52%, #f8fbff 100%);
}

.faq-page::before,
.faq-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.faq-page::before {
  inset: 12% auto auto -10%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(30, 139, 255, 0.14), transparent 70%);
}

.faq-page::after {
  inset: 34% -12% auto auto;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.12), transparent 72%);
}

.faq-page-hero {
  position: relative;
  padding: clamp(2.8rem, 6vw, 4.6rem) 0 var(--space-5);
}

.faq-page-hero-shell {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 92vw);
  margin-inline: auto;
  border: 1px solid rgba(197, 213, 236, 0.95);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(30, 139, 255, 0.12), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(235, 159, 26, 0.12), transparent 20%),
    linear-gradient(145deg, #081321, #10294d 68%, #173b6f);
  box-shadow: 0 24px 50px rgba(7, 22, 41, 0.2);
  padding: clamp(2rem, 4vw, 3.1rem) clamp(1.4rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.2rem);
  color: #eef5ff;
  text-align: center;
}

.faq-page-hero-shell::before,
.faq-page-hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.faq-page-hero-shell::before {
  inset: auto auto -5rem -4rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.faq-page-hero-shell::after {
  inset: -3rem -2rem auto auto;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.14), transparent 66%);
}

.faq-page-hero-eyebrow {
  color: #c8d8f2;
}

.faq-page-hero-shell h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 4.7vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-inline: auto;
}

.faq-page-hero-copy {
  max-width: 66ch;
  margin: 0.95rem auto 0;
  color: #d7e3f4;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.7;
}

.faq-page-hero-line {
  width: min(240px, 36vw);
  height: 4px;
  margin: 1.15rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 139, 255, 0), rgba(235, 159, 26, 0.95), rgba(30, 139, 255, 0));
  box-shadow: 0 0 18px rgba(235, 159, 26, 0.22);
}

.faq-page-topics {
  position: relative;
  padding-top: var(--space-6);
}

.faq-page-section-head {
  max-width: 68ch;
  margin-inline: auto;
  text-align: center;
}

.faq-page-section-head h2 {
  margin: 0.35rem 0 0.55rem;
  color: var(--bg-navy);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.faq-page-section-head p:last-child {
  color: var(--text-muted);
}

.faq-page-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: var(--space-4);
}

.faq-page-topic-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid #dbe5f3;
  background:
    radial-gradient(circle at 88% 10%, rgba(235, 159, 26, 0.12), transparent 24%),
    linear-gradient(170deg, #ffffff, #f7faff);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.15rem 1.2rem;
}

.faq-page-topic-grid i {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(30, 139, 255, 0.09);
  color: var(--blue);
  font-size: 1.1rem;
}

.faq-page-topic-grid h3 {
  margin: 0;
  color: var(--bg-navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.faq-page-topic-grid p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-page-accordion-section {
  padding-top: var(--space-6);
}

.faq-page-accordion-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: start;
}

.faq-page-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(214, 227, 248, 0.2);
  background:
    radial-gradient(circle at 90% 12%, rgba(235, 159, 26, 0.16), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(30, 139, 255, 0.12), transparent 26%),
    linear-gradient(160deg, #0d2140, #17385f 72%, #1f4f8d);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(6, 23, 42, 0.18);
  padding: clamp(1.25rem, 2.6vw, 2rem);
  position: sticky;
  top: 100px;
}

.faq-page-side-card::before {
  content: "";
  position: absolute;
  inset: auto -5rem -5rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.faq-page-side-kicker {
  margin: 0;
  color: #c5d6f2;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-page-side-card h3 {
  margin: 0.35rem 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.25;
}

.faq-page-side-copy {
  margin: 0;
  color: #d2def3;
  line-height: 1.7;
}

.faq-page-side-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.faq-page-side-list div {
  border-radius: 18px;
  border: 1px solid rgba(214, 227, 248, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.84rem 0.9rem;
}

.faq-page-side-list span {
  display: block;
  color: #b9cbeb;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-page-side-list strong {
  display: block;
  margin-top: 0.22rem;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.4;
}

.faq-page-side-list strong a {
  color: inherit;
}

.faq-page-side-btn {
  width: 100%;
  margin-top: 1rem;
}

.faq-page-accordions {
  display: grid;
  gap: 0.85rem;
}

.faq-page-accordions .faq-item {
  border-radius: 24px;
}

.faq-page-accordions .faq-question {
  padding: 1.05rem 3.1rem 1.05rem 1.2rem;
}

.faq-page-accordions .faq-answer {
  padding: 0 1.2rem 1.1rem;
}

.faq-page-cta-section {
  padding-top: var(--space-6);
}

.faq-page-cta-card {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(214, 227, 248, 0.15);
  background:
    radial-gradient(circle at 90% 10%, rgba(235, 159, 26, 0.12), transparent 26%),
    linear-gradient(135deg, #0f2547, #173b69 72%, #204f8d);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(6, 23, 42, 0.18);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.faq-page-cta-copy {
  max-width: 58ch;
}

.faq-page-cta-copy .eyebrow {
  color: #c8d8f2;
}

.faq-page-cta-copy h2 {
  margin: 0.25rem 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.faq-page-cta-copy p {
  margin: 0;
  color: #d3e0f5;
  line-height: 1.65;
}

.faq-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.faq-page-cta-actions .btn {
  min-width: 11rem;
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(30, 139, 255, 0.1), transparent 16%),
    radial-gradient(circle at 86% 12%, rgba(235, 159, 26, 0.11), transparent 14%),
    radial-gradient(circle at 50% 86%, rgba(15, 45, 86, 0.04), transparent 20%),
    repeating-linear-gradient(
      135deg,
      rgba(16, 45, 82, 0.025) 0,
      rgba(16, 45, 82, 0.025) 1px,
      transparent 1px,
      transparent 160px
    );
  opacity: 0.75;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 45, 86, 0.03));
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
  width: min(1360px, 96vw);
}

.testimonials-head {
  max-width: 66ch;
}

.testimonial-section .section-head {
  padding-left: calc(2.7rem + 0.8rem);
}

.testimonials-head p:last-child {
  color: var(--text-muted);
}

.testimonial-carousel-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.testimonial-carousel-track {
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(290px, 30vw, 360px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0 0.4rem;
  scrollbar-width: none;
}

.testimonial-carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0.78rem;
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid #e1e9f4;
  background:
    radial-gradient(circle at 90% 14%, rgba(235, 159, 26, 0.05), transparent 22%),
    linear-gradient(165deg, #ffffff, #fbfdff);
  box-shadow: 0 10px 22px rgba(11, 34, 66, 0.07);
  padding: 1.05rem 1.05rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(11, 34, 66, 0.1);
}

.testimonial-stars {
  color: #f3b431;
  letter-spacing: 0.12em;
  font-size: 1.08rem;
  line-height: 1;
}

.testimonial-card p {
  margin: 0;
  color: #344865;
  font-size: 0.96rem;
  line-height: 1.65;
}

.testimonial-meta {
  display: grid;
  gap: 0.14rem;
  margin-top: auto;
  padding-top: 0.72rem;
  border-top: 1px solid #edf2f8;
}

.testimonial-meta strong {
  color: #0d2b52;
  font-size: 0.92rem;
}

.testimonial-meta span {
  color: #687c98;
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonial-carousel-wrap .service-carousel-btn {
  align-self: center;
}

.lead-form-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(30, 139, 255, 0.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(235, 159, 26, 0.12), transparent 22%),
    linear-gradient(180deg, #f4f8ff 0%, #edf4ff 100%);
}

.lead-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.7), transparent 18%),
    repeating-linear-gradient(
      135deg,
      rgba(15, 45, 86, 0.03) 0,
      rgba(15, 45, 86, 0.03) 1px,
      transparent 1px,
      transparent 150px
    );
}

.lead-form-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: start;
}

.lead-form-aside {
  position: relative;
  border-radius: 28px;
  padding: clamp(1.2rem, 2.2vw, 1.9rem);
  color: #eaf2ff;
  background:
    radial-gradient(circle at 88% 12%, rgba(235, 159, 26, 0.16), transparent 26%),
    linear-gradient(160deg, #0f2d56, #173a69 58%, #1f5397);
  border: 1px solid rgba(214, 225, 242, 0.32);
  box-shadow: 0 18px 38px rgba(10, 31, 61, 0.18);
  overflow: hidden;
}

.lead-form-aside::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 72%);
  pointer-events: none;
}

.lead-form-aside .eyebrow {
  color: #c1d6f4;
}

.lead-form-aside h2 {
  margin: 0.25rem 0 0.6rem;
  color: #ffffff;
  font-size: clamp(1.6rem, 2.9vw, 2.35rem);
  line-height: 1.15;
}

.lead-form-copy {
  margin: 0;
  color: #d6e3f7;
  font-size: 1rem;
  line-height: 1.65;
}

.lead-form-highlights {
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.lead-form-highlights article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  border-radius: 18px;
  border: 1px solid rgba(221, 233, 248, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.82rem 0.86rem;
}

.lead-form-highlights i {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1rem;
}

.lead-form-highlights strong {
  display: block;
  color: #ffffff;
  font-size: 0.94rem;
}

.lead-form-highlights span {
  display: block;
  margin-top: 0.16rem;
  color: #c6d9f3;
  font-size: 0.8rem;
  line-height: 1.45;
}

.lead-form-callout {
  margin-top: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(221, 233, 248, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.9rem 1rem;
}

.lead-form-callout span {
  display: block;
  color: #c2d5f2;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form-callout a {
  display: inline-block;
  margin-top: 0.22rem;
  color: #ffffff;
  font-size: 1.22rem;
  font-weight: 900;
}

.lead-form-callout p {
  margin: 0.32rem 0 0;
  color: #d3e0f4;
  font-size: 0.84rem;
}

.form-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid #d6e2f1;
  background:
    radial-gradient(circle at 100% 0%, rgba(30, 139, 255, 0.08), transparent 26%),
    linear-gradient(160deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 36px rgba(11, 34, 66, 0.11);
  padding: clamp(0.9rem, 1.7vw, 1.35rem);
}

.form-head {
  max-width: 58ch;
  margin-bottom: 0.8rem;
  gap: 0.28rem;
}

.form-head h2 {
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.15;
}

.form-head p:last-child {
  color: var(--text-muted);
}

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

.field {
  display: grid;
  gap: 0.42rem;
}

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

label {
  font-size: 0.91rem;
  font-weight: 800;
  color: #1a3660;
}

input,
select,
textarea {
  border: 1px solid #c8d7ea;
  border-radius: 12px;
  font: inherit;
  color: var(--text-dark);
  background: #ffffff;
  padding: 0.72rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7d8ca5;
}

select:invalid {
  color: #7d8ca5;
}

select option {
  color: var(--text-dark);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #6d84a4 50%),
    linear-gradient(135deg, #6d84a4 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 1.05rem) calc(50% - 0.12rem),
    calc(100% - 0.8rem) calc(50% - 0.12rem),
    0 0;
  background-size: 0.34rem 0.34rem, 0.34rem 0.34rem, 100% 100%;
  background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(30, 139, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(30, 139, 255, 0.12);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 4rem;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.3rem 0.05rem 0;
}

.checkbox-field input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--orange);
}

.checkbox-field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #274065;
}

.form-submit-btn {
  margin-top: 0.85rem;
  width: 100%;
  min-height: 3rem;
}

.form-submit-btn.is-loading,
.form-submit-btn:disabled {
  opacity: 0.85;
  cursor: wait;
  box-shadow: 0 10px 18px rgba(235, 159, 26, 0.2);
  transform: none;
}

.form-success {
  min-height: 1.35rem;
  margin: 0.75rem 0 0;
  color: #1f7a38;
  font-weight: 800;
  font-size: 0.92rem;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(1.1rem, 2vw, 1.55rem) clamp(1.2rem, 2.4vw, 1.9rem);
  color: #edf4ff;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 88% 16%, rgba(235, 159, 26, 0.14), transparent 15%),
    linear-gradient(135deg, #09111f 0%, #0a1b32 50%, #12396d 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 52px rgba(6, 12, 22, 0.28);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%);
  opacity: 0.4;
}

.final-cta-card::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 143, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, auto);
  gap: 0.9rem 1.15rem;
  align-items: center;
}

.final-cta-copy,
.final-cta-side,
.final-cta-meta,
.final-cta-actions,
.final-cta-badges {
  position: relative;
  z-index: 1;
}

.final-cta-copy {
  display: grid;
  gap: 0.28rem;
  align-content: center;
  padding: 0.08rem 0.2rem 0.08rem 0;
}

.final-cta-copy::before {
  content: "";
  width: 3rem;
  height: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(235, 159, 26, 0.2));
  margin-bottom: 0.06rem;
}

.final-cta-copy .eyebrow {
  color: #bfd2f0;
}

.final-cta-copy h2 {
  margin: 0;
  font-size: clamp(1.58rem, 2.9vw, 2.38rem);
  line-height: 1.08;
  color: var(--white);
}

.final-cta-copy p {
  margin: 0;
  color: #d9e7f7;
  line-height: 1.45;
  font-size: 0.94rem;
}

.final-cta-side {
  display: grid;
  gap: 0.72rem;
  align-content: center;
  justify-items: end;
}

.final-cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.46rem;
}

.final-cta-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e7f1ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.final-cta-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.final-cta-actions .btn {
  min-width: 0;
  flex: 0 0 auto;
  padding-inline: 1.35rem;
  min-height: 3rem;
  font-size: 0.9rem;
}

.final-cta-section {
  padding: clamp(2rem, 3vw, 2.8rem) 0;
}

.site-footer {
  position: relative;
  margin-top: var(--space-6);
  background: #040a1a;
  color: #d0ddf6;
  overflow: clip;
}

.footer-logo {
  max-width: 185px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.site-footer h3 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1.02rem;
}

.site-footer p,
.site-footer li {
  margin: 0.3rem 0;
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-inner {
  padding: clamp(2.1rem, 3.8vw, 3rem) 0 1.1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}

.footer-brand {
  max-width: 20rem;
}

.footer-brand p {
  color: #aebed8;
  line-height: 1.55;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: rgba(235, 159, 26, 0.14);
  border: 1px solid rgba(235, 159, 26, 0.38);
  color: #ffcb66;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(235, 159, 26, 0.08);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.footer-socials a:hover {
  background: rgba(235, 159, 26, 0.18);
  color: #fff;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  min-width: 0;
}

.footer-columns section {
  min-width: 0;
}

.footer-columns ul {
  padding: 0;
  list-style: none;
}

.footer-columns li {
  margin: 0.42rem 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-columns a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-columns section:first-child li:last-child {
  line-height: 1.35;
}

.footer-columns section:first-child a {
  font-size: 0.84rem;
}

.footer-bottom {
  margin-top: 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(190, 212, 242, 0.14);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.15rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #b7c7e1;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1250;
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #18439f 0%, #1c75ff 58%, #2d8cff 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 32px rgba(11, 30, 82, 0.28),
    0 0 0 0 rgba(28, 117, 255, 0.35);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
  opacity: 0.38;
  z-index: -1;
  animation: backToTopPulse 2.2s ease-in-out infinite;
}

.back-to-top::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 50%);
  opacity: 0.6;
}

.back-to-top span {
  position: relative;
  z-index: 1;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top.is-visible:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 20px 36px rgba(11, 30, 82, 0.32),
    0 0 0 10px rgba(28, 117, 255, 0.08);
  filter: saturate(1.05);
}

@keyframes backToTopPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.18;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top::before {
    animation: none;
    transition: none;
  }
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1300;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-cta a {
  text-align: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.9rem 0.6rem;
}

.mobile-cta a:first-child {
  background: linear-gradient(130deg, #0f57a9, #1e8bff);
}

.mobile-cta a:last-child {
  background: linear-gradient(130deg, var(--orange), #ff8f3f);
}

@media (max-width: 1150px) {
  .main-nav a {
    font-size: 0.89rem;
    padding-inline: 0.42rem;
  }
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }

  .header-cta-group .btn {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .maintenance-feature {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 760px;
    margin-inline: auto;
  }

  .about-float-card {
    left: 1rem;
    bottom: 1rem;
    width: min(86%, 420px);
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 24px;
  }

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

  .process-step:not(:last-child)::after {
    content: none;
  }

  .commitment-layout {
    grid-template-columns: 1fr;
  }

  .services-carousel-track {
    grid-auto-columns: minmax(220px, 1fr);
  }

  .services-offer-track {
    grid-auto-columns: minmax(280px, 1fr);
    width: 100%;
  }

  .services-offer-track .service-showcase-content h3 {
    padding-right: 4.8rem;
  }

  .service-showcase-content p {
    min-height: 0;
  }

  .testimonial-carousel-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .lead-form-layout {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 3.7rem;
  }

  .utility-bar {
    display: none;
  }

  .utility-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 0.5rem 0;
  }

  .utility-left,
  .utility-social {
    justify-content: center;
    width: 100%;
  }

  .header-inner {
    min-height: 4.6rem;
    gap: 0.6rem;
  }

  .main-nav {
    display: none;
  }

  .header-cta-group .btn {
    display: none;
  }

  .drawer-logo {
    width: min(235px, 78%);
    margin: 3rem 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-form-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero-form-chip {
    min-height: 1.75rem;
    font-size: 0.68rem;
  }

  .hero-book-card h2 {
    font-size: 1.45rem;
  }

  .hero-form-sub {
    font-size: 0.88rem;
  }

  .about-panels {
    min-height: 0;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.95rem;
    gap: 0.72rem;
  }

  .commitment-layout,
  .services-showcase-grid,
  .process-grid,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .commitment-main {
    border-radius: 22px;
    padding: 1rem;
  }

  .commitment-actions {
    flex-direction: column;
  }

  .commitment-actions .btn {
    width: 100%;
  }

  .maintenance-feature {
    border-radius: 20px;
    padding: 0.95rem;
  }

  .maintenance-benefits-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-actions {
    flex-direction: column;
  }

  .maintenance-actions .btn {
    width: 100%;
  }

  .maintenance-spotlight {
    border-radius: 18px;
  }

  .lead-form-aside,
  .form-card {
    border-radius: 22px;
    padding: 0.86rem;
  }

  .final-cta-card {
    padding: 1rem;
  }

  .final-cta-copy h2 {
    max-width: none;
  }

  .final-cta-side {
    justify-items: start;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.1rem;
  }

  .final-cta-actions .btn {
    width: 100%;
    flex: none;
  }

  .final-cta-meta {
    justify-content: flex-start;
  }

  .final-cta-meta span {
    font-size: 0.72rem;
  }

  .lead-form-highlights {
    gap: 0.55rem;
  }

  .lead-form-highlights article {
    padding: 0.74rem 0.78rem;
  }

  .lead-form-callout a {
    font-size: 1.08rem;
  }

  .form-grid {
    gap: 0.68rem;
  }

  input,
  select,
  textarea {
    border-radius: 12px;
    padding: 0.7rem 0.78rem;
  }

  textarea {
    min-height: 4.25rem;
  }

  .faq-side-card {
    border-radius: 22px;
    padding: 1rem;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    padding: 0.95rem 2.75rem 0.95rem 1rem;
  }

  .faq-answer {
    padding: 0 1rem 0.95rem;
  }

  .faq-page-hero {
    padding-top: 2.2rem;
  }

  .faq-page-hero-shell {
    border-radius: 26px;
    padding: 1.2rem;
  }

  .faq-page-hero-shell h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .faq-page-topic-grid,
  .faq-page-accordion-layout {
    grid-template-columns: 1fr;
  }

  .faq-page-side-card {
    position: static;
    border-radius: 22px;
  }

  .faq-page-cta-card {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .faq-page-cta-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    padding: 1.8rem 0 0.9rem;
  }

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

  .back-to-top {
    right: 0.8rem;
    bottom: 4.35rem;
    width: 2.7rem;
    height: 2.7rem;
  }

  .back-to-top span {
    font-size: 1.05rem;
  }

  .testimonial-summary {
    border-radius: 22px;
    padding: 1rem;
  }

  .testimonial-carousel-track {
    grid-auto-columns: minmax(280px, 1fr);
  }

  .services-carousel-wrap {
    grid-template-columns: 1fr;
  }

  .process-section .section-head {
    text-align: left;
  }

  .process-step {
    border-radius: 16px;
    padding: 0.95rem 0.92rem 0.98rem;
  }

  .services-section .section-head {
    padding-left: 0;
  }

  .testimonial-carousel-wrap {
    grid-template-columns: 1fr;
  }

  .testimonial-section .section-head {
    padding-left: 0;
  }

  .lead-form-section::before {
    background:
      radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.5), transparent 18%),
      repeating-linear-gradient(
        135deg,
        rgba(15, 45, 86, 0.02) 0,
        rgba(15, 45, 86, 0.02) 1px,
        transparent 1px,
        transparent 140px
      );
  }

  .service-carousel-btn {
    display: none;
  }

  .testimonial-carousel-wrap .service-carousel-btn {
    display: none;
  }

  .service-showcase-content {
    padding: 2.5rem 1rem 0.95rem;
  }

  .service-showcase-number {
    font-size: 3rem;
  }

  .services-offer-track {
    grid-auto-columns: minmax(260px, 92vw);
    width: 100%;
  }

  .services-offer-track .service-showcase-card,
  .services-offer-track .service-showcase-card:nth-child(even) {
    border-radius: 18px;
  }

  .services-offer-track .service-showcase-media,
  .services-offer-track .service-showcase-card:nth-child(even) .service-showcase-media {
    margin: 0.95rem 0.95rem 0;
  }

  .services-offer-track .service-showcase-content {
    padding: 1rem 0.95rem 1.1rem;
  }

  .services-offer-track .service-showcase-content h3 {
    padding-right: 3.9rem;
  }

  .services-offer-track .service-showcase-content p {
    font-size: 0.95rem;
  }

  .testimonial-carousel-track {
    grid-auto-columns: minmax(260px, 86vw);
    width: 100%;
  }

  .testimonial-card {
    border-radius: 18px;
    padding: 0.95rem;
  }

  .form-card {
    padding: var(--space-4);
  }

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

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 520px) {
  .logo-wrap img {
    width: 165px;
  }

  .site-drawer {
    width: 94vw;
    padding: 1rem 1rem 1.6rem;
  }

  .drawer-logo {
    margin-top: 0;
  }

  .about-float-stat {
    right: 0.7rem;
    top: 0.7rem;
    padding: 0.6rem 0.76rem 0.56rem;
  }

  .about-float-card {
    left: 0.7rem;
    right: 0.7rem;
    width: auto;
  }

  .hero-field-row {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 0.85rem;
  }

  .trust-grid strong {
    font-size: 0.98rem;
  }

  .trust-grid span {
    font-size: 0.84rem;
  }
}

/* Services Page */
.services-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(30, 139, 255, 0.1), transparent 26%),
    radial-gradient(circle at 92% 2%, rgba(235, 159, 26, 0.14), transparent 28%),
    #f9fbff;
}

.services-hero {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.4rem);
  background:
    linear-gradient(118deg, rgba(6, 20, 40, 0.94) 0%, rgba(10, 30, 58, 0.86) 44%, rgba(12, 36, 69, 0.82) 100%),
    url("/wp-content/uploads/2026/05/hero-hvac.jpg");
  background-size: cover;
  background-position: center;
  color: #eaf2ff;
}

.services-hero-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.services-hero-copy h1 {
  margin: 0 0 0.9rem;
  max-width: 16ch;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.services-hero-copy p {
  margin: 0 0 1.2rem;
  color: #d4e1f7;
  max-width: 54ch;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.services-hero-media img {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 54px rgba(4, 19, 42, 0.34);
}

.services-highlights {
  padding-top: 1.3rem;
}

.services-highlight-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-highlight-grid article {
  background: #fff;
  border: 1px solid #d9e4f2;
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
  box-shadow: 0 10px 20px rgba(14, 39, 74, 0.08);
}

.services-highlight-grid h3 {
  margin: 0 0 0.4rem;
  color: #10284a;
  font-size: 1.06rem;
}

.services-highlight-grid p {
  margin: 0;
  color: #5a6d8d;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-card {
  background: #fff;
  border: 1px solid #d9e4f2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-detail-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-detail-copy {
  padding: 1.2rem 1.15rem 1.3rem;
}

.service-detail-copy h3 {
  margin: 0 0 0.55rem;
  color: #102a4f;
  font-size: clamp(1.18rem, 2.1vw, 1.4rem);
  line-height: 1.2;
}

.service-detail-copy p {
  margin: 0;
  color: #5a6d8d;
}

.service-detail-card-accent {
  background: linear-gradient(130deg, #0b2142, #14396b);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-detail-card-accent .service-detail-copy h3,
.service-detail-card-accent .service-detail-copy p {
  color: #ecf3ff;
}

.service-detail-card-accent .btn {
  margin-top: 1rem;
}

.services-value-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  background: #fff;
  border: 1px solid #d9e4f2;
  border-radius: 24px;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  box-shadow: 0 14px 28px rgba(10, 31, 62, 0.1);
}

.services-value-copy h2 {
  margin: 0 0 0.7rem;
  color: #0f2748;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.15;
}

.services-value-copy p {
  margin: 0;
  color: #5a6d8d;
}

.services-value-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.services-value-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #1b3459;
  font-weight: 700;
}

.services-value-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

@media (max-width: 1080px) {
  .services-hero-grid,
  .services-value-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 780px) {
  .services-highlight-grid,
  .services-cards-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-media img {
    height: 190px;
  }
}

/* Service Area Page */
.service-area-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(30, 139, 255, 0.1), transparent 26%),
    radial-gradient(circle at 92% 2%, rgba(235, 159, 26, 0.14), transparent 28%),
    #f9fbff;
}

.service-area-hero {
  padding: clamp(2.8rem, 5.2vw, 4.6rem) 0 clamp(1.8rem, 4vw, 3.2rem);
}

.service-area-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: center;
}

.service-area-hero-copy h1 {
  margin: 0 0 0.7rem;
  color: #0f284b;
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.08;
  max-width: 15ch;
}

.service-area-hero-lead {
  margin: 0;
  color: #556b8d;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.7;
  max-width: 58ch;
}

.service-area-hero-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
}

.service-area-map-card {
  margin: 0;
  position: relative;
  border-radius: 24px;
  border: 1px solid #d8e3f3;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(11, 34, 66, 0.12);
  padding: 0.72rem;
}

.service-area-map-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #e4ecf8;
}

.service-area-map-badge {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(214, 227, 247, 0.66);
  background: rgba(11, 32, 61, 0.8);
  color: #f2f7ff;
  backdrop-filter: blur(6px);
  padding: 0.65rem 0.72rem;
}

.service-area-map-badge strong {
  display: block;
  font-size: 0.92rem;
}

.service-area-map-badge span {
  display: block;
  margin-top: 0.16rem;
  color: #d1e0f7;
  font-size: 0.78rem;
}

.service-area-summary {
  padding-top: 0.6rem;
}

.service-area-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-area-summary-grid article {
  border-radius: 18px;
  border: 1px solid #d9e4f2;
  background: linear-gradient(165deg, #ffffff, #f6faff);
  box-shadow: 0 12px 24px rgba(12, 35, 66, 0.08);
  padding: 1.15rem 1.12rem;
}

.service-area-summary-grid h3 {
  margin: 0 0 0.42rem;
  color: #102a4e;
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
}

.service-area-summary-grid p {
  margin: 0;
  color: #5b6f8f;
}

.service-area-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  border-radius: 24px;
  border: 1px solid #d3e0f2;
  background:
    radial-gradient(circle at 88% 14%, rgba(235, 159, 26, 0.14), transparent 24%),
    linear-gradient(160deg, #0f294d, #173a6a);
  box-shadow: 0 22px 42px rgba(7, 24, 48, 0.24);
  padding: clamp(1.05rem, 2.2vw, 1.7rem);
}

.service-area-cta-copy .eyebrow {
  color: #c5d8f6;
}

.service-area-cta-copy h2 {
  margin: 0.25rem 0 0.58rem;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.9vw, 2rem);
  line-height: 1.2;
}

.service-area-cta-copy p {
  margin: 0;
  color: #d3e1f5;
  max-width: 58ch;
}

.service-area-cta-actions {
  display: grid;
  gap: 0.58rem;
}

.service-area-cta-actions .btn {
  min-width: 18rem;
}

.service-area-cta-actions .btn-outline {
  border-color: rgba(230, 241, 255, 0.35);
}

@media (max-width: 1080px) {
  .service-area-hero-grid,
  .service-area-cta-card {
    grid-template-columns: 1fr;
  }

  .service-area-hero-copy h1 {
    max-width: none;
  }

  .service-area-cta-actions .btn {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 780px) {
  .service-area-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* Maintenance Plans Page */
.maintenance-plans-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(30, 139, 255, 0.1), transparent 24%),
    radial-gradient(circle at 94% 4%, rgba(235, 159, 26, 0.14), transparent 30%),
    #f9fbff;
}

.maintenance-plans-hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.8rem, 5.2vw, 4.8rem) 0 clamp(2rem, 4vw, 3.4rem);
  background:
    linear-gradient(120deg, rgba(8, 24, 45, 0.95) 0%, rgba(11, 34, 63, 0.88) 46%, rgba(16, 48, 88, 0.82) 100%);
}

.maintenance-plans-hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(1rem, 2.3vw, 2rem);
  align-items: center;
}

.maintenance-plans-hero-copy h1 {
  margin: 0 0 0.72rem;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.08;
  max-width: 15ch;
}

.maintenance-plans-hero-copy p {
  margin: 0;
  color: #d2def1;
  max-width: 56ch;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.72;
}

.maintenance-plans-hero-actions {
  margin-top: 1.04rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.maintenance-plans-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 52px rgba(6, 18, 35, 0.36);
}

.maintenance-plans-intro {
  padding-top: 1rem;
}

.maintenance-plans-intro-card {
  border-radius: 18px;
  border: 1px solid #d8e4f2;
  background: linear-gradient(165deg, #ffffff, #f5f9ff);
  box-shadow: 0 14px 26px rgba(10, 33, 62, 0.09);
  padding: clamp(1rem, 2vw, 1.45rem);
}

.maintenance-plans-intro-card p {
  margin: 0;
  color: #4f6689;
  font-size: clamp(1rem, 1.55vw, 1.06rem);
  line-height: 1.75;
}

.maintenance-plans-benefits {
  padding-top: 0.8rem;
}

.maintenance-benefits-grid-page {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
}

.maintenance-benefits-grid-page article {
  grid-column: span 2;
  border-radius: 18px;
  border: 1px solid #d9e4f2;
  background: linear-gradient(165deg, #ffffff, #f6faff);
  box-shadow: 0 12px 24px rgba(12, 35, 66, 0.08);
  padding: 1rem 1rem 1.05rem;
}

.maintenance-benefits-grid-page article:nth-child(4) {
  grid-column: 2 / span 2;
}

.maintenance-benefits-grid-page article:nth-child(5) {
  grid-column: 4 / span 2;
}

.maintenance-benefits-grid-page article span {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  background: linear-gradient(140deg, #0f325f, #1e8bff);
  box-shadow: 0 8px 15px rgba(15, 49, 93, 0.3);
}

.maintenance-benefits-grid-page article h3 {
  margin: 0.72rem 0 0.42rem;
  color: #112d53;
  font-size: clamp(1.06rem, 1.85vw, 1.24rem);
  line-height: 1.28;
}

.maintenance-benefits-grid-page article p {
  margin: 0;
  color: #586d8d;
  font-size: 0.95rem;
  line-height: 1.64;
}

.maintenance-plan-rates {
  padding-top: 1rem;
}

.maintenance-plan-rates-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border-radius: 24px;
  border: 1px solid #d3e1f3;
  background:
    radial-gradient(circle at 85% 14%, rgba(235, 159, 26, 0.15), transparent 26%),
    linear-gradient(162deg, #0f2a4f, #173c6c);
  box-shadow: 0 22px 40px rgba(9, 27, 51, 0.24);
  padding: clamp(1rem, 2.2vw, 1.65rem);
}

.maintenance-plan-rates-copy .eyebrow {
  color: #c6d9f6;
}

.maintenance-plan-rates-copy h2 {
  margin: 0.25rem 0 0.56rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.maintenance-plan-rates-copy p {
  margin: 0;
  color: #d2e0f5;
  max-width: 52ch;
}

.maintenance-plan-rates-actions {
  display: grid;
  gap: 0.56rem;
}

.maintenance-plan-rates-actions .btn {
  min-width: 16.5rem;
}

.maintenance-plan-rates-actions .btn-outline {
  border-color: rgba(227, 239, 255, 0.34);
}

@media (max-width: 1080px) {
  .maintenance-plans-hero-grid,
  .maintenance-plan-rates-card {
    grid-template-columns: 1fr;
  }

  .maintenance-plans-hero-copy h1 {
    max-width: none;
  }

  .maintenance-plan-rates-actions .btn {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .maintenance-benefits-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maintenance-benefits-grid-page article {
    grid-column: auto;
  }

  .maintenance-benefits-grid-page article:nth-child(4),
  .maintenance-benefits-grid-page article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .maintenance-benefits-grid-page {
    grid-template-columns: 1fr;
  }
}

/* Pay Online Page */
.pay-online-page {
  background:
    radial-gradient(circle at 12% 5%, rgba(30, 139, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(235, 159, 26, 0.14), transparent 26%),
    #f9fbff;
}

.pay-online-hero {
  padding: clamp(2.8rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(130deg, rgba(8, 25, 47, 0.96), rgba(17, 53, 95, 0.84));
}

.pay-online-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
}

.pay-online-hero-copy h1 {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 3.05rem);
  line-height: 1.08;
}

.pay-online-hero-copy p {
  margin: 0;
  color: #d3e1f5;
  max-width: 56ch;
  font-size: clamp(1rem, 1.65vw, 1.08rem);
  line-height: 1.72;
}

.pay-online-hero-copy p a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.pay-online-hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
}

.pay-online-hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.38);
}

.pay-online-options {
  padding-top: 1.2rem;
}

.pay-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pay-card {
  border-radius: 20px;
  border: 1px solid #d8e4f2;
  background:
    radial-gradient(circle at 88% -10%, rgba(30, 139, 255, 0.1), transparent 28%),
    linear-gradient(162deg, #ffffff, #f6faff);
  box-shadow: 0 14px 28px rgba(11, 35, 66, 0.09);
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
}

.pay-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.pay-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #c9dbf0;
  background: rgba(255, 255, 255, 0.95);
  color: #173f72;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.42rem 0.72rem;
}

.pay-card-price {
  color: #173f72;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
  font-weight: 900;
}

.pay-card h3 {
  margin: 0;
  color: #112d53;
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  line-height: 1.3;
}

.pay-card p {
  margin: 0;
  color: #596f8f;
  line-height: 1.68;
}

.pay-card .btn {
  margin-top: 0.3rem;
  width: fit-content;
}

.pay-online-help {
  padding-top: 0.95rem;
}

.pay-online-help-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border-radius: 24px;
  border: 1px solid #d3e1f3;
  background:
    radial-gradient(circle at 85% 14%, rgba(235, 159, 26, 0.16), transparent 26%),
    linear-gradient(160deg, #0f2a4f, #173c6c);
  box-shadow: 0 22px 42px rgba(8, 25, 47, 0.24);
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.pay-online-help-copy .eyebrow {
  color: #c9dbf6;
}

.pay-online-help-copy h2 {
  margin: 0.24rem 0 0.58rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.2;
}

.pay-online-help-copy p {
  margin: 0;
  color: #d4e2f5;
  max-width: 54ch;
}

.pay-online-help-actions {
  display: grid;
  gap: 0.56rem;
}

.pay-online-help-actions .btn {
  min-width: 15.8rem;
}

.pay-online-help-actions .btn-outline {
  border-color: rgba(230, 241, 255, 0.35);
}

/* Contact Us Page */
.contact-us-page {
  background:
    radial-gradient(circle at 9% 7%, rgba(30, 139, 255, 0.1), transparent 28%),
    radial-gradient(circle at 90% 2%, rgba(235, 159, 26, 0.14), transparent 30%),
    #f7f9ff;
}

.contact-hero {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  background:
    linear-gradient(118deg, rgba(6, 20, 40, 0.94) 0%, rgba(10, 30, 58, 0.84) 46%, rgba(12, 36, 69, 0.8) 100%),
    url("assets/images/hero-hvac.jpg");
  background-size: cover;
  background-position: center;
  color: #eaf2ff;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero::before {
  left: -100px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.34), rgba(235, 159, 26, 0));
}

.contact-hero::after {
  right: -90px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(30, 139, 255, 0.26), rgba(30, 139, 255, 0));
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-5);
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
  max-width: 15ch;
  text-wrap: balance;
}

.contact-hero-lead {
  margin: 0.9rem 0 0;
  color: #d8e7ff;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  max-width: 36ch;
}

.contact-hero-body {
  margin: 0.85rem 0 0;
  color: #c6d9f6;
  max-width: 58ch;
}

.contact-hero-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-ghost {
  color: #ebf3ff;
  border-color: rgba(228, 239, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.contact-hero-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.45rem;
  border-radius: 999px;
  padding: 0.48rem 0.84rem;
  border: 1px solid rgba(205, 220, 245, 0.28);
  background: rgba(8, 22, 42, 0.38);
  color: #e5efff;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-hero-pills .fi {
  line-height: 0;
  color: #f2b43e;
}

.contact-hero-panel {
  display: grid;
  gap: 0.9rem;
}

.contact-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.05rem;
  background:
    radial-gradient(circle at 84% 10%, rgba(30, 139, 255, 0.1), transparent 26%),
    radial-gradient(circle at 8% 90%, rgba(235, 159, 26, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(245, 249, 255, 0.98), rgba(225, 234, 248, 0.96));
  border: 1px solid rgba(180, 200, 228, 0.72);
  box-shadow: 0 18px 34px rgba(8, 24, 47, 0.18);
  color: #12345f;
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.38rem;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.contact-hero-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.35rem 0.3rem 1rem;
  border-bottom: 1px solid #d8e3f1;
}

.contact-card-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(235, 159, 26, 0.16), rgba(30, 139, 255, 0.14));
  color: #133a69;
  box-shadow: inset 0 0 0 1px rgba(181, 199, 225, 0.8);
}

.contact-card-icon .fi {
  font-size: 1.25rem;
  line-height: 0;
}

.contact-hero-card-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #4b6489;
}

.contact-hero-card h2 {
  margin: 0.18rem 0 0.2rem;
  color: #0b2449;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.contact-hero-card-sub {
  margin: 0;
  color: #617596;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-status-pill {
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 211, 232, 0.95);
  background: rgba(255, 255, 255, 0.82);
  color: #12345f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-hero-card-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-info-tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 0.96rem 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #dbe5f3;
  box-shadow: 0 10px 20px rgba(10, 28, 54, 0.06);
  display: grid;
  gap: 0.25rem;
}

.contact-info-tile::before {
  content: "";
  position: absolute;
  inset: auto -22px -28px auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.14), rgba(235, 159, 26, 0));
  pointer-events: none;
}

.contact-info-tile .fi {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #eff5ff, #e4edf9);
  color: #173868;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.contact-info-tile strong {
  color: #0b2344;
  font-size: 0.97rem;
  line-height: 1.2;
}

.contact-info-tile span {
  color: #60748e;
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-info-tile--wide {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.contact-info-tile--wide .fi {
  margin-bottom: 0;
  grid-row: span 2;
}

.contact-info-tile--wide strong {
  margin-top: 0.05rem;
}

.contact-highlights {
  padding-top: clamp(1.2rem, 3vw, 2.2rem);
}

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

.contact-highlights-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.96)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  border: 1px solid #dbe5f3;
  box-shadow: 0 14px 28px rgba(8, 28, 58, 0.09);
  padding: 1.05rem 1.02rem 1.08rem;
  display: grid;
  gap: 0.45rem;
}

.contact-highlights-grid article::before {
  content: "";
  position: absolute;
  inset: auto -10px -40px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.16), rgba(235, 159, 26, 0));
  pointer-events: none;
}

.contact-highlights-grid .fi {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(140deg, #eff5ff, #e1ebfb);
  color: #173868;
  font-size: 1rem;
}

.contact-highlights-grid h2 {
  margin: 0;
  color: #0b2344;
  font-size: 1.05rem;
}

.contact-highlights-grid strong,
.contact-highlights-grid a {
  color: #0f2d57;
  font-weight: 800;
}

.contact-highlights-grid p {
  margin: 0;
  color: #5e708f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(30, 139, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(235, 159, 26, 0.09), transparent 32%),
    #f5f8ff;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-5);
  align-items: start;
}

.contact-form-copy {
  position: relative;
  padding: 1.2rem 0 0;
}

.contact-form-copy h2 {
  margin: 0.15rem 0 0.75rem;
  color: #0a2144;
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  line-height: 1.15;
}

.contact-form-intro {
  margin: 0;
  color: var(--text-muted);
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-side-cards {
  margin-top: var(--space-3);
  display: grid;
  gap: 0.75rem;
}

.contact-side-cards article,
.contact-note-card {
  border-radius: 18px;
  border: 1px solid #d8e4f3;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 12px 24px rgba(8, 26, 52, 0.08);
  padding: 0.95rem 1rem;
}

.contact-side-cards strong {
  display: block;
  color: #0b2449;
  font-size: 1rem;
  line-height: 1.25;
}

.contact-side-cards span {
  display: block;
  margin-top: 0.3rem;
  color: #5c6f8d;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-note-card {
  margin-top: 1rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(235, 159, 26, 0.14), transparent 35%),
    linear-gradient(160deg, #fffaf0, #f4f9ff);
}

.contact-note-card p {
  margin: 0;
  color: #4b5c77;
  line-height: 1.7;
}

.contact-note-card a {
  color: #143e74;
  font-weight: 800;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  border: 1px solid rgba(194, 209, 232, 0.9);
  background:
    radial-gradient(circle at 88% 8%, rgba(30, 139, 255, 0.14), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(235, 159, 26, 0.16), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
  box-shadow: 0 24px 48px rgba(7, 23, 46, 0.16);
}

.contact-form-card::before,
.contact-form-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-form-card::before {
  width: 11rem;
  height: 11rem;
  right: -4.5rem;
  top: -4.5rem;
  background: radial-gradient(circle, rgba(30, 139, 255, 0.1), rgba(30, 139, 255, 0));
}

.contact-form-card::after {
  width: 10rem;
  height: 10rem;
  left: -4.2rem;
  bottom: -4.2rem;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.12), rgba(235, 159, 26, 0));
}

.contact-form-card h2 {
  margin: 0.45rem 0 0.42rem;
  color: #0a2144;
  font-size: clamp(1.42rem, 2.5vw, 1.95rem);
  line-height: 1.12;
}

.contact-form-card .hero-form-sub {
  margin-bottom: 1rem;
}

.contact-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.contact-form-fields {
  display: grid;
  gap: 0.72rem;
}

.contact-form-fields .hero-field-solid {
  padding-block: 0.82rem;
}

.contact-form-fields textarea {
  width: 100%;
  border: 0;
  resize: vertical;
  min-height: 7.4rem;
  background: transparent;
  color: #132748;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0;
}

.contact-form-fields textarea::placeholder {
  color: #6e7f9d;
  font-weight: 600;
}

.contact-file-field {
  display: grid;
  gap: 0.55rem;
}

.contact-file-field label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #17355f;
}

.contact-file-field input[type="file"] {
  width: 100%;
  color: #50627f;
  font: inherit;
}

.contact-file-field input[type="file"]::file-selector-button {
  margin-right: 0.8rem;
  border: 1px solid #c7d5ea;
  background: linear-gradient(180deg, #ffffff, #eff4fb);
  color: #17355f;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.contact-submit-btn {
  width: 100%;
  margin-top: 0.8rem;
  min-height: 3.25rem;
  border-radius: 16px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact-submit-btn.is-loading,
.contact-submit-btn:disabled {
  opacity: 0.85;
  cursor: wait;
  box-shadow: 0 10px 18px rgba(235, 159, 26, 0.2);
  transform: none;
}

.form-success {
  min-height: 1.4rem;
  margin: 0.75rem 0 0;
  color: #1d6d2f;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-success.is-error {
  color: #b13232;
}

.form-success.is-success {
  color: #1d6d2f;
}

.contact-form-status {
  text-align: left;
}

.contact-recaptcha-note {
  margin: 0.55rem 0 0;
  color: #6b7f9c;
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .contact-hero-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy h1 {
    max-width: 18ch;
  }

  .contact-hero-panel {
    max-width: 44rem;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .contact-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .contact-highlights-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-pills {
    gap: 0.42rem;
  }

  .contact-hero-pills span {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-hero-card-top {
    grid-template-columns: auto 1fr;
  }

  .contact-status-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .contact-hero-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .pay-online-hero-grid,
  .pay-online-help-card {
    grid-template-columns: 1fr;
  }

  .pay-online-help-actions .btn {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .pay-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .pay-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* About Us Page */
.about-us-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(30, 139, 255, 0.08), transparent 34%),
    radial-gradient(circle at 92% 2%, rgba(235, 159, 26, 0.12), transparent 30%),
    #f7f9ff;
}

.about-us-hero {
  position: relative;
  overflow: clip;
  padding: clamp(1.35rem, 3vw, 2.5rem) 0 clamp(1rem, 2.3vw, 1.9rem);
  background:
    linear-gradient(118deg, rgba(6, 20, 40, 0.95) 0%, rgba(10, 30, 58, 0.86) 46%, rgba(12, 36, 69, 0.84) 100%);
  color: #edf4ff;
}

.about-us-hero::before,
.about-us-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-us-hero::before {
  left: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.28), rgba(235, 159, 26, 0));
}

.about-us-hero::after {
  right: -110px;
  top: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(30, 139, 255, 0.24), rgba(30, 139, 255, 0));
}

.about-us-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1rem, 2.1vw, 1.8rem);
  align-items: center;
}

.about-us-hero-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.about-us-hero-copy h1 {
  margin: 0;
  width: 100%;
  max-width: 15ch;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.08;
  text-wrap: balance;
}

.about-us-lead {
  margin: 0.9rem 0 0;
  max-width: 48ch;
  color: #d7e5ff;
  font-size: clamp(0.96rem, 1.35vw, 1.06rem);
  line-height: 1.65;
  margin-inline: auto;
}

.about-us-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  justify-content: center;
}

.about-us-pills {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  max-width: 52rem;
}

.about-us-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.5rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 222, 245, 0.28);
  background: rgba(8, 22, 42, 0.38);
  color: #e7efff;
  font-size: 0.86rem;
  font-weight: 800;
}

.about-us-hero-visual {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
}

.about-us-image-frame {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 52px rgba(3, 12, 26, 0.34);
}

.about-us-image-frame img {
  width: 100%;
  min-height: clamp(250px, 27vw, 360px);
  object-fit: cover;
  object-position: center top;
}

.about-us-overlay-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: min(82%, 360px);
  margin: 0;
  border-radius: 20px;
  padding: 0.95rem 1rem;
  background: rgba(10, 28, 52, 0.88);
  border: 1px solid rgba(176, 201, 235, 0.28);
  color: #dbe9ff;
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 30px rgba(4, 16, 34, 0.28);
}

.about-us-overlay-card p {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #96bfff;
}

.about-us-overlay-card strong {
  font-size: 0.98rem;
  line-height: 1.4;
  color: #edf4ff;
}

.about-us-license-card {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  gap: 0.18rem;
  border-radius: 18px;
  padding: 0.72rem 0.9rem;
  background: linear-gradient(135deg, rgba(235, 159, 26, 0.96), rgba(243, 190, 71, 0.98));
  color: #1a2131;
  box-shadow: 0 14px 28px rgba(235, 159, 26, 0.32);
}

.about-us-license-card span {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-us-license-card strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.about-us-highlights {
  padding-top: clamp(0.95rem, 2.2vw, 1.8rem);
}

.about-us-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-us-highlights-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #dbe5f3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.96)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  box-shadow: 0 14px 28px rgba(8, 28, 58, 0.09);
  padding: 1.05rem 1.02rem 1.08rem;
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.about-us-highlights-grid article::before {
  content: "";
  position: absolute;
  inset: auto -10px -38px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.14), rgba(235, 159, 26, 0));
  pointer-events: none;
}

.about-us-highlights-grid .fi {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #eff5ff, #e2ebfb);
  color: #173868;
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(23, 56, 104, 0.08);
}

.about-us-highlights-grid span {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #4f6687;
}

.about-us-highlights-grid strong {
  color: #0c2649;
  font-size: 1.03rem;
  line-height: 1.3;
}

.about-us-highlights-grid p {
  margin: 0;
  color: #5e708f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-us-story {
  background:
    radial-gradient(circle at 10% 8%, rgba(30, 139, 255, 0.08), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(235, 159, 26, 0.09), transparent 32%),
    var(--bg-surface);
}

.about-us-story-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: var(--space-5);
  align-items: center;
}

.about-us-story-media {
  position: relative;
}

.about-us-story-image {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #d4e1f3;
  box-shadow: 0 26px 48px rgba(11, 32, 64, 0.2);
}

.about-us-story-image img {
  width: 100%;
  min-height: clamp(320px, 38vw, 540px);
  object-fit: cover;
  object-position: center top;
}

.about-us-story-note {
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  width: min(78%, 330px);
  margin: 0;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7e2f1;
  box-shadow: 0 16px 26px rgba(8, 28, 58, 0.12);
}

.about-us-story-note p {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #4f6687;
}

.about-us-story-note strong {
  color: #0c2649;
  font-size: 0.98rem;
  line-height: 1.45;
}

.about-us-story-copy h2 {
  margin: 0.15rem 0 0.75rem;
  color: #0a2144;
  font-size: clamp(1.72rem, 3.1vw, 2.55rem);
  line-height: 1.15;
}

.about-us-story-copy p {
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.72;
}

.about-us-checklist {
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-us-checklist li {
  position: relative;
  padding-left: 1.4rem;
  color: #223754;
  font-weight: 700;
  line-height: 1.45;
}

.about-us-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--orange), #f1bc57);
}

.about-us-values {
  background:
    radial-gradient(circle at 12% 10%, rgba(30, 139, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 84%, rgba(235, 159, 26, 0.08), transparent 30%),
    #eef3fb;
}

.about-us-section-head {
  text-align: center;
  margin-inline: auto;
  width: 100%;
}

.about-us-section-head h2 {
  max-width: 100%;
  width: 100%;
  margin-inline: auto;
  font-size: clamp(1.18rem, 1.7vw, 1.8rem);
  line-height: 1.1;
  white-space: nowrap;
  text-wrap: balance;
}

.about-us-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-us-values-grid article {
  border-radius: 22px;
  border: 1px solid #dbe5f3;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 12px 24px rgba(8, 26, 52, 0.08);
  padding: 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.about-us-values-grid .fi {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #eff5ff, #e1ebfb);
  color: #173868;
  font-size: 1rem;
}

.about-us-values-grid h3 {
  margin: 0;
  color: #0b2344;
  font-size: 1.05rem;
  line-height: 1.25;
}

.about-us-values-grid p {
  margin: 0;
  color: #5e708f;
  line-height: 1.6;
}

.about-us-services {
  background: #f8fbff;
}

.about-us-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-us-service-grid article {
  border-radius: 20px;
  border: 1px solid #dbe5f3;
  background: linear-gradient(160deg, #ffffff, #f4f8ff);
  box-shadow: 0 12px 24px rgba(8, 26, 52, 0.08);
  padding: 1.08rem 1.05rem 1.1rem;
  display: grid;
  gap: 0.34rem;
}

.about-us-service-grid strong {
  color: #0b2344;
  font-size: 1rem;
  line-height: 1.25;
}

.about-us-service-grid span {
  color: #5e708f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-us-process {
  background:
    radial-gradient(circle at 10% 10%, rgba(30, 139, 255, 0.08), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(235, 159, 26, 0.1), transparent 32%),
    #0d1d35;
  color: #edf4ff;
}

.about-us-process .eyebrow {
  color: #8ec4ff;
}

.about-us-process .section-head h2 {
  color: #ffffff;
}

.about-us-process .section-head p {
  color: #ccd9ef;
}

.about-us-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-us-process-grid article {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(219, 233, 255, 0.22);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 44px rgba(3, 10, 23, 0.35);
  backdrop-filter: blur(2px);
  padding: 1.15rem;
  overflow: hidden;
}

.about-us-process-grid article::before {
  content: "";
  position: absolute;
  inset: auto -18px -24px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 159, 26, 0.12), rgba(235, 159, 26, 0));
  pointer-events: none;
}

.about-us-process-grid span {
  display: inline-block;
  color: transparent;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(219, 233, 255, 0.6);
}

.about-us-process-grid h3 {
  margin: 0.4rem 0 0.45rem;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.about-us-process-grid p {
  margin: 0;
  color: #d0def4;
  line-height: 1.6;
}

.about-us-cta {
  background: #ffffff;
}

.about-us-cta-card {
  display: grid;
  grid-template-columns: 1.05fr auto;
  gap: 1rem;
  align-items: center;
  border-radius: 28px;
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  background: linear-gradient(135deg, #0c2345, #143f74);
  color: #edf4ff;
  box-shadow: 0 28px 50px rgba(8, 25, 47, 0.24);
}

.about-us-cta-copy h2 {
  margin: 0.25rem 0 0.6rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.about-us-cta-copy p {
  margin: 0;
  color: #d3e2fb;
  max-width: 62ch;
  line-height: 1.7;
}

.about-us-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  justify-content: flex-end;
}

.about-us-cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
  .about-us-hero-grid,
  .about-us-story-grid,
  .about-us-cta-card {
    grid-template-columns: 1fr;
  }

  .about-us-hero-visual {
    max-width: 44rem;
  }

  .about-us-highlights-grid,
  .about-us-values-grid,
  .about-us-service-grid,
  .about-us-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us-section-head h2 {
    white-space: normal;
    font-size: clamp(1.3rem, 2vw, 2rem);
  }

  .about-us-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .about-us-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-us-actions .btn {
    width: 100%;
  }

  .about-us-checklist {
    grid-template-columns: 1fr;
  }

  .about-us-pills {
    gap: 0.42rem;
    width: 100%;
  }

  .about-us-pills span {
    width: 100%;
    justify-content: flex-start;
  }

  .about-us-story-note {
    position: static;
    width: auto;
    margin-top: 0.85rem;
  }
}

@media (max-width: 520px) {
  .about-us-highlights-grid,
  .about-us-values-grid,
  .about-us-service-grid,
  .about-us-process-grid {
    grid-template-columns: 1fr;
  }

  .about-us-license-card {
    right: 0.7rem;
    top: 0.7rem;
  }

  .about-us-overlay-card {
    left: 0.7rem;
    right: 0.7rem;
    width: auto;
  }

  .about-us-hero-copy h1 {
    max-width: 14ch;
  }
}
