:root {
  --navy: #0b1f33;
  --navy-2: #102a44;
  --blue: #2f6f9f;
  --red: #d64032;
  --copper: #b66a3c;
  --white: #f7fafc;
  --paper: #ffffff;
  --text: #17212b;
  --muted: #5d6b78;
  --border: #d8e2ea;
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.15);
}

:root[data-theme="dark"] {
  --navy: #f5f8fb;
  --navy-2: #d9e7f2;
  --blue: #7fc4ee;
  --red: #ff685b;
  --copper: #d58a55;
  --white: #0a1723;
  --paper: #101f2d;
  --text: #edf5fb;
  --muted: #a8b8c6;
  --border: #24384a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(11, 31, 51, 0.04), rgba(47, 111, 159, 0.08)),
    var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

:root[data-theme="dark"] body {
  background:
    linear-gradient(120deg, rgba(127, 196, 238, 0.07), rgba(255, 104, 91, 0.04)),
    #07111b;
}

body.modal-open {
  overflow: hidden;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 8px 20px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.urgency-bar span {
  color: #d8e2ea;
  font-weight: 650;
}

.urgency-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 111, 159, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47, 111, 159, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: blueprint-drift 22s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12% 0 -12%;
  z-index: -1;
  height: 42vh;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(11, 31, 51, 0.10) 18% 19%, transparent 19% 42%, rgba(182, 106, 60, 0.12) 42% 43%, transparent 43%),
    linear-gradient(90deg, rgba(247, 250, 252, 0), rgba(247, 250, 252, 0.84));
  transform: skewY(-4deg) translateY(20%);
  animation: duct-plane 14s ease-in-out infinite alternate;
}

@keyframes blueprint-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 128px 64px, 128px 64px; }
}

@keyframes duct-plane {
  from { transform: skewY(-4deg) translateY(20%) translateX(-2%); }
  to { transform: skewY(-4deg) translateY(12%) translateX(2%); }
}

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

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

.site-header {
  position: sticky;
  top: 38px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(247, 250, 252, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .site-header {
  background: rgba(10, 23, 35, 0.94);
}

:root[data-theme="dark"] .urgency-bar,
:root[data-theme="dark"] .site-footer,
:root[data-theme="dark"] .emergency-strip,
:root[data-theme="dark"] .article-cta-panel {
  color: #edf5fb;
  background: #07111b;
}

:root[data-theme="dark"] .button.emergency,
:root[data-theme="dark"] .nav.open .nav-mobile-cta .book-link,
:root[data-theme="dark"] .assistant-toggle {
  color: #07111b;
  background: #edf5fb;
}

:root[data-theme="dark"] .button.secondary,
:root[data-theme="dark"] .trust-badges span,
:root[data-theme="dark"] .trust-row span,
:root[data-theme="dark"] .plan-row span,
:root[data-theme="dark"] .assistant-actions a,
:root[data-theme="dark"] .assistant-actions button {
  color: #edf5fb;
  background: #13283a;
  border-color: #2f475c;
}

:root[data-theme="dark"] .pricing-popup .button.secondary {
  color: #07111b;
  background: #edf5fb;
}

:root[data-theme="dark"] .hero,
:root[data-theme="dark"] .blog-hero,
:root[data-theme="dark"] .advisor-section,
:root[data-theme="dark"] .split-section,
:root[data-theme="dark"] .office-section,
:root[data-theme="dark"] .blog-preview {
  background:
    linear-gradient(120deg, rgba(127, 196, 238, 0.05), rgba(255, 104, 91, 0.035)),
    var(--white);
}

:root[data-theme="dark"] .service-grid article,
:root[data-theme="dark"] .info-panel,
:root[data-theme="dark"] .booking-form,
:root[data-theme="dark"] .blog-preview-grid a,
:root[data-theme="dark"] .advisor-form,
:root[data-theme="dark"] .advisor-result,
:root[data-theme="dark"] .advisor-card,
:root[data-theme="dark"] .article-reader,
:root[data-theme="dark"] .office-details p,
:root[data-theme="dark"] .map-frame {
  background: var(--paper);
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] select,
:root[data-theme="dark"] textarea {
  background: #0b1824;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  box-sizing: border-box;
}

:root[data-theme="dark"] .brand-mark {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.text-link:hover {
  color: var(--red);
}

.header-phone {
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-cta {
  display: none;
}

.site-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.language-toggle button,
.theme-toggle {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.flag-icon {
  display: block;
  width: 24px;
  height: 17px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(11, 31, 51, 0.16);
}

.language-toggle button.is-active {
  background: var(--paper);
  box-shadow: 0 8px 18px rgba(11, 31, 51, 0.12);
}

.theme-toggle {
  min-width: 58px;
  padding: 0 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  font-size: 12px;
}

:root[data-theme="dark"] .theme-toggle {
  color: #07111b;
  background: #edf5fb;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(214, 64, 50, 0.28);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
}

.button.emergency {
  color: #fff;
  background: var(--navy);
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 56px) 46px;
  background:
    linear-gradient(120deg, rgba(11, 31, 51, 0.04), rgba(47, 111, 159, 0.08)),
    var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% 52% auto -6%;
  height: 280px;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(47, 111, 159, 0.16) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(47, 111, 159, 0.08));
  clip-path: polygon(0 14%, 100% 0, 86% 100%, 0 78%);
  transform: perspective(900px) rotateX(58deg) rotateZ(-7deg);
  animation: vent-sweep 11s ease-in-out infinite alternate;
}

@keyframes vent-sweep {
  from {
    transform: perspective(900px) rotateX(58deg) rotateZ(-7deg) translateX(-20px);
    opacity: 0.46;
  }
  to {
    transform: perspective(900px) rotateX(58deg) rotateZ(-3deg) translateX(30px);
    opacity: 0.72;
  }
}

.blog-hero {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 4vw, 56px) 44px;
  background:
    linear-gradient(120deg, rgba(11, 31, 51, 0.04), rgba(47, 111, 159, 0.08)),
    var(--white);
}

.blog-hero h1 {
  max-width: 900px;
}

.blog-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.blog-library {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 56px) clamp(58px, 8vw, 100px);
  background: var(--white);
}

.blog-library article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 245px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 31, 51, 0.07);
  transform: perspective(900px) translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-library article::after,
.blog-preview-grid a::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.blog-library article:hover,
.blog-preview-grid a:hover {
  border-color: rgba(47, 111, 159, 0.42);
  box-shadow: 0 26px 56px rgba(11, 31, 51, 0.12);
  transform: perspective(900px) rotateX(1deg) translateY(-4px);
}

.blog-library article:hover::after,
.blog-preview-grid a:hover::after {
  transform: scaleX(1);
}

.blog-library span {
  width: fit-content;
  padding: 7px 9px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.blog-library h2 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.08;
}

.blog-library p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: hero-rise 700ms ease-out both;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 21px;
}

.hero p {
  color: var(--muted);
  font-size: 20px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.trust-row,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.trust-row span,
.trust-badges span,
.plan-row span {
  padding: 10px 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.08);
}

.trust-badges span::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #2fa968;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 12.5l4.5 4.5 10.5-11.5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 12.5l4.5 4.5 10.5-11.5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dce6ed;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.hero-media:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 32px 86px rgba(11, 31, 51, 0.24);
}

.hero-media img {
  width: 100%;
  height: min(620px, 58vw);
  min-height: 420px;
  object-fit: cover;
}

.hero-media picture {
  display: block;
}

.emergency-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 4vw, 56px);
  padding: 26px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.emergency-strip h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}

.emergency-strip p {
  margin: 0;
  color: #d8e2ea;
}

.section,
.split-section,
.booking,
.advisor-section,
.office-section {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 4vw, 56px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p,
.split-section p,
.booking p,
.advisor-section p,
.office-section p {
  color: var(--muted);
  font-size: 18px;
}

.advisor-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.advisor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(11, 31, 51, 0.045) 44% 46%, transparent 46% 68%, rgba(47, 111, 159, 0.06) 68% 69%, transparent 69%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(216, 226, 234, 0.42) 34px 35px, transparent 35px 92px);
  animation: advisor-depth 12s ease-in-out infinite alternate;
}

@keyframes advisor-depth {
  from { transform: translateX(-1%); }
  to { transform: translateX(1%); }
}

.advisor-intro,
.advisor-app {
  position: relative;
  z-index: 1;
}

.advisor-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 0;
}

.advisor-intro h2 {
  max-width: 920px;
}

.advisor-intro p {
  max-width: 820px;
}

.advisor-disclaimer,
.advisor-card {
  margin: 0;
  padding: 18px;
  color: var(--navy) !important;
  background: #f2f7fb;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 15px !important;
  font-weight: 750;
}

.advisor-card {
  display: grid;
  gap: 14px;
  background: #fff;
  border-left-color: var(--red);
  box-shadow: 0 18px 50px rgba(11, 31, 51, 0.10);
}

.advisor-card span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--red);
  background: #fff3f1;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.advisor-card strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.advisor-card p {
  margin: 0;
  font-size: 14px !important;
}

.advisor-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 28px;
}

.advisor-modal.is-open {
  display: grid;
  place-items: center;
}

.advisor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.62);
  backdrop-filter: blur(10px);
}

.advisor-modal .advisor-app {
  width: min(1080px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.30);
}

.advisor-modal .advisor-app:not(.has-result) {
  width: min(760px, 100%);
  grid-template-columns: 1fr;
}

.advisor-app:not(.has-result) .advisor-result {
  display: none;
}

.advisor-modal-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 4px 4px 0;
}

.advisor-modal-head span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.advisor-modal-head strong {
  color: var(--navy);
  font-size: 24px;
}

.advisor-modal-head button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.advisor-app {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.advisor-form,
.advisor-result {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11, 31, 51, 0.08);
}

.advisor-form {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.advisor-step {
  display: none;
}

.advisor-step.is-active {
  display: block;
}

.advisor-progress {
  display: grid;
  gap: 8px;
}

.advisor-progress span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.advisor-progress div {
  height: 7px;
  overflow: hidden;
  background: var(--white);
  border-radius: 999px;
}

.advisor-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: inherit;
  transition: width 180ms ease;
}

.advisor-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.advisor-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.advisor-controls [data-submit-advisor] {
  display: none;
}

.advisor-controls.is-last [data-next-step] {
  display: none;
}

.advisor-controls.is-last [data-submit-advisor] {
  display: inline-flex;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.choice-grid input {
  width: auto;
}

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

.advisor-result {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-top: 6px solid var(--blue);
}

.result-label {
  width: fit-content;
  padding: 8px 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.advisor-result h3 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.08;
}

.advisor-result p {
  margin-bottom: 0;
  font-size: 16px;
}

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

.result-grid div {
  min-height: 92px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.result-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.result-grid strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.24;
}

.result-notes {
  padding: 16px;
  background: #fff8f4;
  border-radius: 8px;
  border-left: 4px solid var(--copper);
}

.result-notes h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
}

.result-notes ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.verify-icons {
  padding-left: 0 !important;
  list-style: none;
}

.verify-icons li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
}

.verify-icons span,
.service-icon,
.plan-row i {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  background: #e9f4fb;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.verify-icons span svg,
.service-icon svg,
.plan-row i svg {
  width: 20px;
  height: 20px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  color: var(--blue);
  background: linear-gradient(140deg, #eaf4fb, #f6fafd);
  box-shadow: inset 0 0 0 1px rgba(47, 111, 159, 0.10);
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-grid article {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 159, 0.42);
  box-shadow: 0 24px 52px rgba(11, 31, 51, 0.13);
}

/* keep section titles clear of the sticky header when jumping to anchors */
[id] {
  scroll-margin-top: 124px;
}

.advisor-result textarea {
  min-height: 150px;
  font-size: 13px;
}

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

.service-grid article,
.info-panel,
.booking-form,
.blog-preview-grid a {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 31, 51, 0.07);
}

.service-grid article {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.service-grid h3 {
  margin: 0;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.blog-preview {
  background: var(--white);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.blog-preview-grid a {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.blog-preview-grid strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.16;
}

.blog-preview-grid span {
  color: var(--muted);
}

.system-match {
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.94), rgba(16, 42, 68, 0.96)),
    var(--navy);
}

.system-match h2,
.system-match .section-heading p,
.system-note,
.system-note p {
  color: #fff;
}

.system-match .section-heading {
  margin-inline: auto;
  text-align: center;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.system-grid article {
  display: grid;
  gap: 12px;
  min-height: 315px;
  padding: 22px;
  background: rgba(247, 250, 252, 0.08);
  border: 1px solid rgba(216, 226, 234, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.system-grid article:hover {
  transform: translateY(-6px);
  background: rgba(247, 250, 252, 0.13);
  border-color: rgba(255, 255, 255, 0.46);
}

.system-grid span {
  color: #9ed0f2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.1;
}

.system-grid p {
  margin: 0;
  color: rgba(247, 250, 252, 0.78);
  font-size: 15px;
}

.system-grid small {
  align-self: end;
  color: rgba(247, 250, 252, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.system-note {
  display: grid;
  gap: 8px;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
}

.system-note p {
  margin: 0;
  color: rgba(247, 250, 252, 0.76);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #fff;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 3px;
}

.info-panel {
  padding: clamp(26px, 4vw, 42px);
  border-top: 6px solid var(--copper);
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.compact {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.compact h2,
.compact p {
  color: #fff;
}

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

.plan-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.office-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fff;
  border-top: 1px solid var(--border);
}

.office-copy {
  align-self: center;
}

.office-details {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.office-details p {
  margin: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
}

.office-details strong {
  color: var(--navy);
}

.office-details span {
  color: var(--red);
  font-weight: 800;
}

.map-frame {
  position: relative;
  height: 300px;
  min-height: 300px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  width: min(330px, calc(100% - 32px));
  padding: 12px 14px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(247,250,252,0.94));
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(11, 31, 51, 0.16);
  pointer-events: none;
}

.map-fallback strong {
  color: var(--navy);
  font-size: 15px;
}

.map-fallback p {
  grid-column: 2;
  max-width: none;
  margin: 0;
  font-size: 13px;
}

.map-pin {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  margin: 0;
  background: var(--red);
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 16px 30px rgba(214, 64, 50, 0.3);
  transform: rotate(-45deg);
}

.site-assistant {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
  width: min(330px, calc(100vw - 36px));
  pointer-events: none;
}

.assistant-toggle,
.assistant-panel {
  pointer-events: auto;
}

.assistant-toggle {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.25);
  font-weight: 900;
  cursor: pointer;
}

.assistant-toggle::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 9px;
  background: #40d483;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(64, 212, 131, 0.14);
}

.assistant-panel {
  order: -1;
  display: none;
  gap: 14px;
  padding: 16px;
  max-height: min(520px, calc(100vh - 96px));
  overflow: auto;
  color: var(--navy);
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 31, 51, 0.22);
  backdrop-filter: blur(16px);
}

.site-assistant.is-open .assistant-panel {
  display: grid;
  animation: assistant-pop 180ms ease-out both;
}

@keyframes assistant-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.assistant-head button {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.assistant-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.assistant-emergency {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
}

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

.assistant-actions a,
.assistant-actions button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
}

.assistant-panel small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.pricing-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 12px;
  width: min(370px, calc(100vw - 36px));
  padding: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-top: 5px solid var(--red);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(11, 31, 51, 0.22);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

:root[data-theme="dark"] .pricing-popup,
:root[data-theme="dark"] .assistant-panel,
:root[data-theme="dark"] .advisor-modal .advisor-app {
  background: rgba(16, 31, 45, 0.98);
}

.pricing-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pricing-popup span {
  width: fit-content;
  padding: 6px 9px;
  color: var(--red);
  background: #fff3f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-popup strong {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.12;
}

.pricing-popup p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-popup div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-close {
  justify-self: end;
  min-height: 30px;
  padding: 0 10px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.fine-print {
  padding: 16px;
  color: var(--navy) !important;
  background: #fff5f3;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  font-size: 15px !important;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.site-footer {
  padding: 34px clamp(20px, 4vw, 56px);
  color: #d8e2ea;
  background: var(--navy);
}

.site-footer p {
  max-width: 960px;
  margin: 0 0 10px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 4vw, 56px);
}

.article-aside {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 20px;
}

.article-cta-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.96), rgba(16, 42, 68, 0.96)),
    var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-cta-panel p {
  margin: 0;
  color: #d8e2ea;
  font-size: 15px;
}

.article-reader {
  max-width: 890px;
  padding: clamp(26px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 31, 51, 0.11);
}

.article-reader h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 64px);
}

.article-reader h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 36px);
}

.article-reader h3 {
  margin-top: 30px;
}

.article-reader p,
.article-reader li {
  color: #344557;
  font-size: 19px;
  line-height: 1.72;
}

.article-reader ul {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}

.article-bottom-cta {
  margin-top: 46px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.96), rgba(16, 42, 68, 0.96)),
    var(--navy);
  border-radius: 8px;
}

.article-bottom-cta h2,
.article-bottom-cta p {
  color: #fff;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    position: sticky;
  }

  .nav,
  .header-phone,
  .site-header .button.small {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(247, 250, 252, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 36px rgba(11, 31, 51, 0.08);
    padding: 8px 16px 16px;
    z-index: 9;
    font-size: 16px;
  }

  :root[data-theme="dark"] .nav.open {
    background: rgba(16, 31, 45, 0.98);
  }

  .nav.open a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--navy);
    font-weight: 700;
  }

  .nav.open .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0 0;
    border-bottom: 0;
  }

  .nav.open .nav-mobile-cta a {
    border-bottom: 0;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
  }

  .nav.open .nav-mobile-cta .phone-link {
    background: rgba(11, 31, 51, 0.06);
    color: var(--navy);
    font-weight: 800;
    font-size: 18px;
  }

  .nav.open .nav-mobile-cta .book-link {
    background: var(--navy);
    color: #fff;
  }

  .site-controls {
    margin-left: auto;
  }

  .language-toggle {
    gap: 2px;
  }

  .language-toggle button {
    min-width: 30px;
    height: 30px;
  }

  .theme-toggle {
    min-width: 48px;
    height: 32px;
    padding: 0 8px;
  }

  .hero,
  .split-section,
  .booking,
  .office-section,
  .article-shell,
  .emergency-strip,
  .advisor-intro,
  .advisor-app {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: auto;
    min-height: 0;
  }

  .service-grid,
  .blog-preview-grid,
  .blog-library,
  .plan-row,
  .system-grid,
  .choice-grid,
  .advisor-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-result {
    position: static;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .urgency-bar {
    justify-content: space-between;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .urgency-bar span {
    max-width: 150px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .site-header .button.small {
    display: none;
  }

  .hero {
    padding: 32px 16px 28px;
  }

  .hero-copy {
    animation: none;
  }

  h1 {
    font-size: clamp(38px, 11vw, 44px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero p,
  .section-heading p,
  .split-section p,
  .booking p,
  .advisor-section p,
  .office-section p {
    font-size: 16px;
  }

  .section,
  .split-section,
  .booking,
  .advisor-section,
  .office-section {
    padding: 52px 16px;
  }

  .emergency-strip {
    margin: 0 16px;
  }

  .service-grid,
  .blog-preview-grid,
  .blog-library,
  .plan-row,
  .system-grid,
  .booking-form,
  .choice-grid,
  .advisor-fields,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .system-grid article {
    min-height: auto;
  }

  .advisor-form,
  .advisor-result {
    padding: 18px;
  }

  .choice-grid label {
    min-height: 48px;
  }

  .blog-hero {
    padding: 44px 16px 30px;
  }

  .blog-library {
    padding: 0 16px 52px;
  }

  .blog-library article {
    min-height: auto;
    padding: 20px;
  }

  .blog-library h2 {
    font-size: 23px;
  }

  .office-section {
    gap: 26px;
  }

  .map-frame,
  .map-frame iframe {
    height: 230px;
    min-height: 230px;
  }

  .map-fallback {
    left: 10px;
    bottom: 10px;
    width: min(280px, calc(100% - 20px));
    padding: 10px;
  }

  .article-reader {
    padding: 22px;
  }

  .article-reader p,
  .article-reader li {
    font-size: 17px;
  }

  .article-shell {
    padding: 34px 16px 52px;
  }

  .article-reader h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .site-assistant {
    left: 12px;
    bottom: 12px;
    width: min(330px, calc(100vw - 24px));
  }

  .assistant-toggle {
    min-width: 82px;
    min-height: 46px;
  }

  .assistant-panel {
    padding: 14px;
    max-height: min(460px, calc(100vh - 88px));
  }

  .assistant-actions {
    grid-template-columns: 1fr;
  }

  .pricing-popup {
    right: 12px;
    bottom: 70px;
    width: min(330px, calc(100vw - 24px));
  }

  .advisor-modal {
    padding: 18px;
  }

  .advisor-modal .advisor-app {
    max-height: calc(100vh - 36px);
    padding: 14px;
  }

  .advisor-modal-head strong {
    font-size: 22px;
  }
}

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

/* ===== Ventic service fleet band ===== */
.fleet {
  padding: clamp(40px, 6vw, 84px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(120% 140% at 88% 12%, rgba(47, 111, 159, 0.35), transparent 60%),
    linear-gradient(135deg, #0b1f33 0%, #102a44 55%, #16365c 100%);
  color: #eef5fb;
  overflow: hidden;
}

.fleet-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.fleet-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7fc4ee;
  margin-bottom: 14px;
}

.fleet-copy h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
  margin: 0 0 14px;
  color: #fff;
}

.fleet-copy p {
  color: #c4d6e6;
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 46ch;
  margin: 0 0 22px;
}

.fleet-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
}

.fleet-tags li {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  color: #eaf3fb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(127, 196, 238, 0.35);
}

.fleet-tags li:nth-child(4) {
  color: #ffd9c7;
  border-color: rgba(214, 64, 50, 0.55);
  background: rgba(214, 64, 50, 0.16);
}

.fleet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.fleet-actions .button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #eaf3fb;
  border-color: rgba(255, 255, 255, 0.28);
}

.fleet-media {
  margin: 0;
  position: relative;
}

.fleet-media::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 4%;
  height: 38px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0, 0, 0, 0.5), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.fleet-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.45));
}

@media (max-width: 860px) {
  .fleet-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fleet-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .fleet-tags,
  .fleet-actions {
    justify-content: center;
  }
  .fleet-media {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ===== WhatsApp floating button ===== */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  display: block;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 46px rgba(37, 211, 102, 0.55);
}

.wa-float::after {
  content: "WhatsApp";
  position: absolute;
  right: 70px;
  white-space: nowrap;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  color: #0b1f33;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .wa-float {
    width: 52px;
    height: 52px;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
  .wa-float::after {
    display: none;
  }
}
