:root {
  --blue-950: #06152f;
  --blue-900: #08224b;
  --blue-800: #0b316b;
  --blue-700: #123f86;
  --orange: #ff7a1a;
  --orange-2: #ff9b2f;
  --white: #ffffff;
  --soft: #f5f8fc;
  --line: rgba(6, 21, 47, 0.12);
  --text: #111827;
  --muted: #657084;
  --shadow: 0 24px 70px rgba(6, 21, 47, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.chat-open {
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

main section {
  scroll-margin-top: 96px;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 200;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 12px;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.no-hero-header main {
  padding-top: 126px;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(6, 21, 47, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(6, 21, 47, 0.08);
}

.utility-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding: 7px max(20px, calc((100vw - var(--max)) / 2)) 6px;
  color: #050505;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: color 220ms ease, background 220ms ease;
}

.utility-bar a {
  color: inherit;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(255, 122, 26, 0.22);
  border-radius: 999px;
  color: var(--blue-950);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.96)),
    #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(6, 21, 47, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-current:hover,
.language-current[aria-expanded="true"] {
  border-color: rgba(255, 122, 26, 0.55);
  box-shadow: 0 18px 38px rgba(255, 122, 26, 0.18);
  transform: translateY(-1px);
}

.language-flag {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(6, 21, 47, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(6, 21, 47, 0.12);
  font-size: 0;
  line-height: 1;
}

.language-flag-en {
  background:
    linear-gradient(#21468b 0 0) left top / 48% 55% no-repeat,
    repeating-linear-gradient(to bottom, #b22234 0 7.7%, #fff 7.7% 15.4%);
}

.language-flag-es {
  background:
    linear-gradient(to bottom, #c60b1e 0 27%, #ffc400 27% 73%, #c60b1e 73% 100%);
}

.language-flag-fr {
  background:
    linear-gradient(to right, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.language-flag-ht {
  background:
    linear-gradient(to bottom, #00209f 0 50%, #d21034 50% 100%);
}

.language-flag-ht::after {
  content: "";
  position: absolute;
  inset: 34% 36%;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(6, 21, 47, 0.08);
}

.language-current strong {
  min-width: 66px;
  text-align: left;
}

.language-chevron {
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 120;
  display: grid;
  width: 240px;
  padding: 10px;
  border: 1px solid rgba(6, 21, 47, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 28px 80px rgba(6, 21, 47, 0.22);
  animation: languageMenuIn 160ms ease both;
}

.language-menu[hidden] {
  display: none;
}

.language-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(6, 21, 47, 0.1);
  border-left: 1px solid rgba(6, 21, 47, 0.1);
  background: #fff;
  transform: rotate(45deg);
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 0;
  border-radius: 16px;
  color: var(--blue-950);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.language-menu button:hover,
.language-menu button.active {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.16), rgba(31, 140, 255, 0.08));
  transform: translateX(2px);
}

.language-menu button span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

@keyframes languageMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate,
.skiptranslate iframe,
iframe[src*="translate.google"] {
  display: none !important;
}

body {
  top: 0 !important;
}

.site-header.is-scrolled .utility-bar {
  color: #050505;
  background: #fff;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(var(--max), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  color: var(--white);
  background: transparent;
  transition: color 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  color: #050505;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 32px rgba(255, 122, 26, 0.35);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  width: 62px;
  max-width: none;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(6, 21, 47, 0.12));
}

.site-header .brand-copy {
  display: grid;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.site-footer nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.login-modal.open {
  display: flex;
}

.login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 47, 0.48);
  backdrop-filter: blur(10px);
}

.login-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 450px);
  gap: 58px;
  width: min(920px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 46px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--white) 0 73%, #f1f3f5 73% 100%);
  box-shadow: 0 30px 90px rgba(6, 21, 47, 0.28);
}

.login-close,
.privacy-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--blue-950);
  background: #eef4f8;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.login-benefits {
  align-self: center;
}

.login-benefits h2 {
  margin-bottom: 18px;
  color: #050505;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.login-benefits p,
.login-benefits li {
  color: #222;
  font-weight: 750;
}

.login-benefits ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.login-benefits li {
  position: relative;
  padding-left: 34px;
  color: #626262;
}

.login-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.signup-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px 38px 0;
  border: 1px solid rgba(6, 21, 47, 0.18);
  border-radius: 4px;
  background: var(--white);
}

.signup-form h3 {
  margin: 0;
  color: #050505;
  font-size: 18px;
  line-height: 1.15;
}

.signup-form p,
.signup-form small,
.signup-legal {
  margin: 0;
  color: #4f5968;
  font-size: 12px;
  line-height: 1.35;
}

.signup-form a {
  color: #008f92;
  font-weight: 900;
}

.google-login-panel {
  align-self: center;
}

.google-login-panel h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
}

.google-signin,
.firebase-google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(6, 21, 47, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #06152f !important;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(6, 21, 47, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.google-login-panel .g_id_signin {
  min-height: 44px;
}

.google-login-panel .g_id_signin iframe {
  max-width: 100%;
}

.google-signin:hover,
.firebase-google-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 125, 31, 0.65);
  box-shadow: 0 24px 60px rgba(255, 125, 31, 0.18);
}

.firebase-google-button:focus-visible,
.firebase-user-card button:focus-visible {
  outline: 3px solid rgba(0, 143, 146, 0.3);
  outline-offset: 3px;
}

.google-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(6, 21, 47, 0.1);
}

.google-mark img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.firebase-user-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 143, 146, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 143, 146, 0.08), rgba(255, 125, 31, 0.08)),
    #fff;
  box-shadow: 0 18px 44px rgba(6, 21, 47, 0.08);
}

.firebase-user-card[hidden] {
  display: none;
}

.firebase-user-card img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(6, 21, 47, 0.14);
}

.firebase-user-card strong,
.firebase-user-card span {
  display: block;
  min-width: 0;
}

.firebase-user-card strong {
  color: #06152f;
  font-size: 14px;
}

.firebase-user-card span {
  overflow: hidden;
  color: #596575;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.firebase-user-card button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #06152f;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7b8492;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(6, 21, 47, 0.12);
}

.login-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: rgba(255, 125, 31, 0.12);
  color: #06152f !important;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(6, 21, 47, 0.22);
  border-radius: 0;
  color: var(--blue-950);
  background: transparent;
  outline: none;
  font-weight: 700;
}

.signup-form input:first-of-type {
  padding: 0 8px;
  border: 2px solid #09b9bd;
  border-radius: 3px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.consent-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #4f5968;
  font-size: 12px;
  line-height: 1.25;
}

.consent-line input {
  min-height: auto;
  width: 18px;
  height: 18px;
  border: 1px solid #09b9bd;
}

.signup-form button[type="submit"] {
  min-height: 48px;
  margin-top: 12px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: #09b9bd;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.signup-legal {
  text-align: center;
}

.signup-progress {
  height: 5px;
  margin: 0 -38px;
  background: #eef1f4;
}

.signup-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #09b9bd;
}

.menu-toggle {
  display: none;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.28);
}

.nav-cta::after,
.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 48%, transparent 62%);
  transform: translateX(-145%);
  transition: transform 520ms ease;
}

.nav-cta:hover::after,
.button-primary:hover::after {
  transform: translateX(145%);
}

.button-secondary {
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 21, 47, 0.14);
}

.nav-cta:hover,
.button:hover,
.floating-quote:hover,
.chat-launcher:hover {
  transform: translateY(-2px);
}

body.menu-open .floating-quote {
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(170px, 17vh, 215px) 0 104px;
  color: var(--blue-950);
  background: var(--blue-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.78) 0 42%, rgba(6, 21, 47, 0.48) 58%, rgba(6, 21, 47, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 21, 47, 0.14), rgba(6, 21, 47, 0.22));
}

.hero-grid {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: center;
  gap: 44px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-size: clamp(54px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-transform: none;
}

.hero-word {
  display: inline-block;
  margin-right: 0.12em;
}

.hero-line {
  display: block;
}

.hero-accent {
  color: var(--orange-2);
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-proof {
  display: none;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(6, 21, 47, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: rgba(6, 21, 47, 0.76);
  font-weight: 800;
}

.hero-proof strong {
  color: var(--blue-950);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-visual::before {
  display: none;
}

.hero-visual img,
.hero-visual video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
}

.hero-card {
  display: none;
}

.hero-wave {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  z-index: 3;
  height: clamp(105px, 11vw, 170px);
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave .wave-fill {
  fill: #fff;
  filter: drop-shadow(0 -14px 30px rgba(6, 21, 47, 0.06));
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 1.8s infinite;
}

.section-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading::before {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #098f92);
}

.section-heading h2,
.split-heading h2,
.about-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.split-heading > p,
.about-copy p,
.faq-intro p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.gallery-section,
.faq-section {
  padding: 98px 0;
  background:
    linear-gradient(180deg, rgba(8, 34, 75, 0.04), rgba(255, 255, 255, 0) 220px),
    var(--white);
}

.service-band {
  padding: 42px 0 98px;
  background: var(--white);
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 5vw, 92px);
  align-items: center;
  margin: 0 auto 72px;
  padding: 48px clamp(18px, 4vw, 64px);
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.96)),
    radial-gradient(circle at 12% 0%, rgba(255, 122, 26, 0.12), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(7, 143, 146, 0.13), transparent 30%);
  box-shadow: inset 0 1px 0 rgba(6, 21, 47, 0.05), 0 24px 70px rgba(6, 21, 47, 0.07);
}

.credential-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 178px;
  color: #667085;
  text-align: center;
  filter: grayscale(1);
  opacity: 0.86;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.credential-card:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px);
}

.credential-card small {
  color: #7a8494;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.credential-card strong {
  color: #050505;
  font-size: clamp(24px, 3.1vw, 38px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.credential-card p {
  max-width: 250px;
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.credential-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 6px;
  color: #050505;
}

.credential-icon::before,
.credential-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.credential-icon-route {
  border: 8px solid #767d86;
  border-radius: 24px 24px 8px 8px;
}

.credential-icon-route::before {
  width: 48px;
  height: 26px;
  border: 7px solid #767d86;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  bottom: 18px;
}

.credential-icon-route::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #767d86;
  box-shadow: 38px 0 0 #767d86;
  bottom: 5px;
}

.credential-icon-shield {
  width: 94px;
  height: 104px;
  clip-path: polygon(50% 0, 90% 12%, 90% 58%, 50% 100%, 10% 58%, 10% 12%);
  background:
    linear-gradient(135deg, #050505 0 24%, transparent 24% 38%, #050505 38% 62%, transparent 62% 76%, #050505 76%),
    #d7dde5;
}

.credential-icon-shield::before {
  inset: 22px 24px 36px;
  border: 5px solid #fff;
  border-radius: 4px;
}

.credential-icon-laurel::before,
.credential-icon-laurel::after {
  top: 10px;
  width: 32px;
  height: 72px;
  border: 6px solid #8b929c;
  border-top: 0;
  border-bottom: 0;
}

.credential-icon-laurel::before {
  left: 8px;
  border-right: 0;
  border-radius: 0 0 0 80px;
  transform: rotate(-16deg);
}

.credential-icon-laurel::after {
  right: 8px;
  border-left: 0;
  border-radius: 0 0 80px 0;
  transform: rotate(16deg);
}

.credential-icon-laurel {
  font-size: 18px;
  font-weight: 950;
}

.credential-icon-laurel::marker {
  display: none;
}

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

.service-card,
.feature-card,
.testimonial-card,
.contact-form,
.qr-card,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 0;
  border: 0;
  border-radius: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.42), rgba(9, 143, 146, 0.24), transparent);
  transform: scaleX(0.45);
  transform-origin: left;
  opacity: 0.5;
  transition: transform 220ms ease, opacity 220ms ease;
}

.service-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.service-thumb {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(6, 21, 47, 0.14);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-card:hover .service-thumb {
  transform: translateY(-5px) rotate(-1deg) scale(1.06);
  box-shadow: 0 16px 36px rgba(255, 122, 26, 0.2);
}

.service-card .eyebrow {
  margin-bottom: 8px;
  color: #006e72;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.service-card h3,
.feature-card h3,
.testimonial-card strong {
  color: #050505;
  font-size: clamp(24px, 2.4vw, 29px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-card p,
.feature-card p,
.testimonial-card p {
  color: #050505;
  font-weight: 750;
}

.service-card .learn-link {
  margin-top: auto;
}

.why-section,
.about-section,
.testimonial-section,
.contact-section {
  padding: 104px 0;
  background: var(--white);
}

.roadie-feature-strip {
  padding: 0 0 96px;
  background: var(--white);
}

.roadie-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.roadie-feature-reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.78fr);
}

.roadie-feature-reverse div {
  order: 2;
}

.roadie-feature h2 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(38px, 4.7vw, 58px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.roadie-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.roadie-feature figure {
  margin: 0;
}

.roadie-feature img {
  height: 430px;
  object-fit: cover;
  border-radius: 0 70px 0 0;
  box-shadow: 0 22px 58px rgba(6, 21, 47, 0.14);
}

.roadie-feature-reverse img {
  border-radius: 70px 0 0 0;
}

.industry-section {
  padding: 90px 0 104px;
  background: var(--white);
}

.industry-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.industry-heading h2 {
  color: #050505;
  font-size: clamp(42px, 5.7vw, 68px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.industry-heading h2 span,
.why-heading h2 span {
  color: #078f92;
}

.industry-heading p {
  max-width: 840px;
  margin: 18px auto 0;
  color: #050505;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.industry-tabs button {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #3b2a21;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.industry-tabs button.active,
.industry-tabs button:hover {
  border-color: #078f92;
  color: #006e72;
  background: rgba(7, 143, 146, 0.06);
}

.industry-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  align-items: center;
  min-height: 430px;
  background: #eef5f6;
  box-shadow: 0 18px 55px rgba(6, 21, 47, 0.1);
}

.industry-showcase img {
  height: 520px;
  object-fit: cover;
  object-position: center;
  background: #eef7f8;
}

.industry-showcase div {
  padding: 60px 78px;
}

.industry-showcase h3 {
  max-width: 480px;
  margin-bottom: 18px;
  color: #050505;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.industry-showcase p {
  max-width: 520px;
  color: #050505;
  font-size: 18px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-800);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  margin-left: 12px;
  background: var(--orange);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px 76px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  padding: 0 0 24px;
  border: 1px solid rgba(6, 21, 47, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(6, 21, 47, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: rgba(255, 122, 26, 0.24);
  box-shadow: 0 26px 70px rgba(6, 21, 47, 0.12);
}

.why-image {
  width: 100%;
  height: 205px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  background: #eef5f7;
  transition: transform 650ms ease, filter 650ms ease;
}

.feature-card:hover .why-image {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.feature-card .eyebrow {
  padding: 0 24px;
  margin-bottom: 6px;
  color: #006e72;
}

.feature-card h3 {
  max-width: 330px;
  padding: 0 24px;
  margin-bottom: 12px;
  color: #050505;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.feature-card p:not(.eyebrow) {
  max-width: 330px;
  padding: 0 24px;
  margin-bottom: 20px;
  color: #050505;
  font-weight: 750;
}

.feature-card .learn-link {
  margin: auto 24px 0;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-top: auto;
  color: #3b1c12;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.learn-link span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.coverage-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  color: var(--white);
  background: #005a58;
}

.coverage-left,
.coverage-right {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(58px, 7vw, 96px) 40px;
  text-align: center;
}

.coverage-left {
  background: #005653;
}

.coverage-left h2 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(44px, 5.5vw, 70px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.coverage-left p {
  max-width: 620px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: min(660px, 100%);
  margin-top: 40px;
}

.coverage-stats div {
  display: grid;
  gap: 8px;
}

.coverage-stats span {
  color: #11c4c8;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 950;
  line-height: 1;
}

.coverage-stats strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.coverage-right {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 143, 146, 0.82), rgba(7, 143, 146, 0.82)),
    url("assets/van-wide.jpg") center / cover;
}

.coverage-right h3 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.zip-form {
  display: grid;
  grid-template-columns: 1fr 56px;
  width: min(430px, 100%);
  margin-top: 26px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 20px 55px rgba(6, 21, 47, 0.18);
  overflow: hidden;
}

.zip-form input {
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  color: #050505;
  font-weight: 850;
}

.zip-form button {
  border: 0;
  color: #050505;
  background: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.zip-result {
  width: min(520px, 100%);
  min-height: 68px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(6, 21, 47, 0.18);
  color: var(--white);
  font-weight: 800;
  line-height: 1.35;
}

.zip-result strong {
  color: var(--orange-2);
}

.zip-map-card {
  width: min(560px, 100%);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(6, 21, 47, 0.24);
}

.zip-map-card iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.zip-map-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: var(--blue-950);
  font-weight: 950;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.about-media img {
  height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.about-stats div {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--soft), var(--white));
  border: 1px solid var(--line);
}

.about-stats strong {
  display: block;
  color: var(--orange);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 315px;
  gap: 22px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 16px 46px rgba(6, 21, 47, 0.12);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid figure:last-child {
  grid-column: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:first-child img {
  object-position: center top;
}

#gallery .gallery-grid figure:nth-of-type(4) > img {
  object-position: center 42%;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.instagram-section {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.04), transparent 42%),
    var(--white);
}

.instagram-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 64px;
  align-items: center;
  padding-top: 78px;
  border-top: 1px solid var(--line);
}

.instagram-copy h2 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.instagram-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.instagram-button {
  gap: 10px;
}

.instagram-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.instagram-board {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-auto-rows: 220px;
  gap: 18px;
}

.instagram-board a {
  position: relative;
  overflow: hidden;
  border-radius: 0 46px 0 0;
  background: var(--blue-950);
  box-shadow: 0 20px 58px rgba(6, 21, 47, 0.14);
}

.instagram-board a:first-child {
  grid-row: span 2;
}

.instagram-board img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 500ms ease;
}

.instagram-board a:hover img {
  opacity: 0.86;
  transform: scale(1.04);
}

.instagram-board span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 21, 47, 0.78);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.home-social-section {
  padding: 96px 0 108px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 122, 26, 0.32), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(7, 143, 146, 0.28), transparent 32%),
    linear-gradient(135deg, #06152f, #08224b 56%, #06152f);
}

.home-social-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

.home-social-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.home-social-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 750;
}

.home-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-social-live {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.home-social-app-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 6px 8px 18px;
}

.home-social-app-head span {
  display: block;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-social-app-head strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1;
}

.home-social-app-head a,
.home-social-app-head button,
.home-social-feed-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
  font: inherit;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}

.home-social-app-head button {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(255, 122, 26, 0.28);
}

.home-social-feed-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.18fr) minmax(250px, 0.82fr);
  gap: 16px;
}

.instagram-only-feed {
  grid-template-columns: 1fr;
}

.home-social-feed-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease;
}

.home-social-feed-card:first-child {
  grid-row: span 2;
}

.instagram-live-card:first-child {
  grid-row: auto;
}

.home-social-feed-card:hover {
  border-color: rgba(255, 122, 26, 0.42);
  transform: translateY(-6px);
}

.home-social-feed-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.social-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 26px;
  font-weight: 950;
  flex: 0 0 auto;
}

.home-social-feed-head small {
  display: block;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-social-feed-head strong {
  display: block;
  max-width: 100%;
  margin-top: 5px;
  color: var(--white);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 950;
  line-height: 1;
  overflow-wrap: anywhere;
}

.social-mark svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.x-mark {
  background: #050505;
}

.fb-mark {
  background: #1877f2;
}

.ig-mark {
  background: linear-gradient(135deg, #ff7a1a, #1877f2);
}

.home-social-feed-shell {
  position: relative;
  min-height: 292px;
  max-height: 420px;
  overflow: auto;
  background: #060a13;
}

.home-social-feed-card:first-child .home-social-feed-shell {
  min-height: 612px;
  max-height: 612px;
}

.instagram-live-card .home-social-feed-shell,
.home-social-feed-card.instagram-live-card:first-child .home-social-feed-shell {
  display: grid;
  min-height: 760px;
  max-height: none;
  padding: 24px;
  place-items: start center;
  background:
    linear-gradient(145deg, rgba(6, 21, 47, 0.92), rgba(8, 34, 75, 0.82)),
    url("assets/van-side.jpg") center / cover;
}

.home-social-feed-shell iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.social-live-placeholder {
  display: grid;
  min-height: inherit;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 21, 47, 0.76), rgba(6, 21, 47, 0.92)),
    url("assets/van-side.jpg") center / cover;
}

.social-live-placeholder strong {
  font-size: 24px;
  font-weight: 950;
}

.social-live-placeholder p,
.social-live-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.social-live-note {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 21, 47, 0.88);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-card p {
  min-height: 118px;
  color: var(--blue-950);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 54px;
  align-items: start;
}

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

.faq-list details {
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.faq-list details[open] {
  box-shadow: 0 24px 60px rgba(6, 21, 47, 0.12);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--blue-950);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-weight: 600;
  animation: faqDrop 220ms ease;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 122, 26, 0.1), transparent 28%),
    linear-gradient(180deg, var(--white), var(--soft));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  color: var(--blue-950);
  font-weight: 900;
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 440px;
  padding: 18px;
}

.qr-code {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border: 8px solid var(--white);
  border-radius: 16px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(6, 21, 47, 0.14);
}

.qr-card strong,
.qr-card span {
  display: block;
}

.qr-card strong {
  color: var(--blue-950);
  font-weight: 900;
}

.qr-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.chat-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.chat-form input:focus {
  border-color: rgba(255, 122, 26, 0.7);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

.form-note {
  margin: 0;
  color: var(--blue-800);
  font-weight: 800;
}

.form-helper {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  display: none;
  min-height: 54px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgba(0, 143, 146, 0.24);
  border-radius: 16px;
  background: rgba(0, 143, 146, 0.08);
  color: var(--blue-950);
  box-shadow: 0 14px 34px rgba(6, 21, 47, 0.08);
}

.form-status:not(:empty) {
  display: flex;
}

.form-status.is-success {
  border-color: rgba(34, 197, 94, 0.32);
  background: rgba(34, 197, 94, 0.12);
}

.professional-confirmation {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px;
  border-color: rgba(34, 197, 94, 0.42);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(0, 143, 146, 0.08)),
    #fff;
}

.confirmation-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #16a34a;
  font-size: 19px;
  font-weight: 950;
}

.professional-confirmation strong,
.professional-confirmation em {
  display: block;
}

.professional-confirmation strong {
  color: var(--blue-950);
  font-size: 16px;
  font-weight: 950;
}

.professional-confirmation em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.45;
}

.form-status.is-warning {
  border-color: rgba(255, 122, 26, 0.36);
  background: rgba(255, 122, 26, 0.12);
}

.form-fallback-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.form-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
  width: min(420px, calc(100% - 32px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 122, 26, 0.34);
  border-radius: 18px;
  background: rgba(6, 21, 47, 0.96);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 24px 70px rgba(6, 21, 47, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.form-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 180;
  width: min(620px, calc(100% - 44px));
  color: var(--blue-950);
  animation: cookieSlideIn 260ms ease both;
}

.cookie-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(6, 21, 47, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 90px rgba(6, 21, 47, 0.22);
  backdrop-filter: blur(20px);
}

.cookie-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 0.98;
  letter-spacing: 0;
}

.cookie-copy p {
  margin: 0;
  max-width: 55ch;
  color: #4b5567;
  font-weight: 750;
  line-height: 1.55;
}

.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-links a {
  color: #008f92;
  font-size: 14px;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.cookie-preferences {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(6, 21, 47, 0.1);
  border-radius: 18px;
  background: #f6fafc;
}

.cookie-preferences[hidden],
.cookie-save[hidden],
.cookie-secondary[hidden] {
  display: none;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #536072;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.cookie-toggle input {
  width: 20px;
  height: 20px;
  accent-color: #008f92;
  cursor: pointer;
}

.cookie-toggle input:disabled {
  cursor: not-allowed;
}

.cookie-toggle strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-950);
  font-size: 15px;
  font-weight: 950;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cookie-actions button:hover {
  transform: translateY(-2px);
}

.cookie-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(255, 122, 26, 0.28);
}

.cookie-secondary {
  color: var(--blue-950);
  background: #eef5f7;
}

body.cookie-consent-open #chatbase-bubble-button {
  bottom: 116px !important;
}

@keyframes cookieSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.ai-report-form,
.mail-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.dashboard-page {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 122, 26, 0.11), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(0, 143, 146, 0.12), transparent 32%),
    #f7fafc;
}

.dashboard-main {
  padding-bottom: 90px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  align-items: end;
  gap: 34px;
  padding: 56px 0 34px;
}

.dashboard-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.dashboard-hero p {
  max-width: 680px;
  margin: 0;
  color: #263247;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
}

.dashboard-profile,
.dashboard-gate-card,
.dashboard-order-form,
.dashboard-side article {
  border: 1px solid rgba(6, 21, 47, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(6, 21, 47, 0.1);
}

.dashboard-profile {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
}

.dashboard-profile[hidden] {
  display: none;
}

.dashboard-profile img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
}

.dashboard-profile strong,
.dashboard-profile span {
  display: block;
  min-width: 0;
}

.dashboard-profile strong {
  color: var(--blue-950);
  font-size: 15px;
}

.dashboard-profile span {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-profile button {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: var(--blue-950);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-gate {
  padding: 22px 0 80px;
}

.dashboard-gate-card {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px;
  text-align: center;
}

.dashboard-gate-card .firebase-google-button {
  width: fit-content;
  min-width: 320px;
  margin: 24px auto 12px;
}

.dashboard-gate-card .form-note {
  text-align: center;
}

.dashboard-gate-card h2 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.dashboard-gate-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-panel[hidden],
.dashboard-gate[hidden],
.admin-panel[hidden] {
  display: none;
}

.admin-panel {
  padding: 10px 0 48px;
}

.admin-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.admin-command,
.admin-card,
.admin-stat-grid article {
  border: 1px solid rgba(6, 21, 47, 0.1);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 26, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 250, 0.92));
  box-shadow: 0 24px 70px rgba(6, 21, 47, 0.1);
}

.admin-safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.admin-safety-grid article {
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(6, 21, 47, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(6, 21, 47, 0.07);
}

.admin-safety-grid span {
  color: #087d84;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-safety-grid strong {
  display: block;
  margin: 8px 0;
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1.08;
}

.admin-safety-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.admin-command {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
}

.admin-command h2 {
  max-width: 850px;
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
}

.admin-command p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.55;
}

.admin-command-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #06152f, #0b7f88);
}

.admin-command-card span,
.admin-command-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.admin-command-card strong {
  overflow-wrap: anywhere;
  font-size: 20px;
}

.admin-command-card button,
.admin-card-head button {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #06152f;
  background: var(--orange);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.admin-stat-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border-radius: 22px;
}

.admin-stat-grid span,
.admin-stat-grid small {
  color: var(--muted);
  font-weight: 900;
}

.admin-stat-grid strong {
  color: var(--blue-950);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
}

.admin-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.72fr) minmax(260px, 0.72fr);
  gap: 22px;
  margin-bottom: 22px;
}

.admin-card {
  padding: 24px;
  border-radius: 26px;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.admin-card-head h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.admin-card-head small,
.admin-card-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.45;
}

.admin-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 14px;
  height: 260px;
  padding: 16px 8px 0;
}

.admin-bar {
  display: grid;
  grid-template-rows: 1fr auto auto;
  justify-items: center;
  gap: 8px;
  height: 100%;
  color: var(--blue-950);
  font-weight: 950;
}

.admin-bar span {
  display: block;
  width: 100%;
  align-self: end;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--orange), #0b9aa2);
  box-shadow: 0 14px 28px rgba(255, 122, 26, 0.22);
}

.admin-bar small {
  color: var(--muted);
  font-weight: 900;
}

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

.admin-top-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(6, 21, 47, 0.1);
  color: var(--blue-950);
  font-weight: 950;
}

.admin-top-list span {
  overflow-wrap: anywhere;
}

.admin-top-list strong {
  color: #0b8e95;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(6, 21, 47, 0.09);
  text-align: left;
  color: var(--blue-950);
  font-weight: 850;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-event-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #06373b;
  background: rgba(7, 189, 196, 0.14);
}

.admin-filter-bar {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) repeat(3, minmax(150px, 0.72fr)) auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(6, 21, 47, 0.08);
  border-radius: 20px;
  background: rgba(247, 250, 252, 0.9);
}

.admin-filter-bar label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-filter-bar input,
.admin-filter-bar select {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(6, 21, 47, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--blue-950);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  outline: none;
}

.admin-filter-bar input:focus,
.admin-filter-bar select:focus {
  border-color: rgba(255, 122, 26, 0.74);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

.admin-filter-bar button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-950);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

.dashboard-order-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
}

.dashboard-form-head h2 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
}

.dashboard-form-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

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

.dashboard-order-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-order-form input,
.dashboard-order-form select,
.dashboard-order-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 21, 47, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--blue-950);
  font-weight: 800;
  outline: none;
}

.dashboard-order-form input,
.dashboard-order-form select {
  min-height: 54px;
  padding: 0 16px;
}

.dashboard-order-form textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.dashboard-order-form input:focus,
.dashboard-order-form select:focus,
.dashboard-order-form textarea:focus {
  border-color: rgba(255, 122, 26, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
}

.dashboard-order-form .full-span {
  grid-column: 1 / -1;
}

.dashboard-side {
  display: grid;
  gap: 18px;
}

.dashboard-side article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 26px;
}

.dashboard-side article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.12);
}

.dashboard-side span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.dashboard-side h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1;
}

.dashboard-side p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.map-shell {
  margin-top: 34px;
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: var(--white);
}

.map-card h3 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.map-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.map-shell iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.floating-quote {
  position: fixed;
  right: 22px;
  bottom: 104px;
  z-index: 70;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 45px rgba(255, 122, 26, 0.36);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.ai-dispatch {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: none !important;
}

.chat-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-950);
  box-shadow: 0 20px 54px rgba(6, 21, 47, 0.28);
  cursor: pointer;
  transition: transform 180ms ease;
}

.chat-launcher span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 42%, #ffffff 0 54%, #e9eef5 100%);
  box-shadow: inset 0 0 0 1px rgba(6, 21, 47, 0.12);
}

.chat-logo img {
  width: 46px;
  max-width: none;
  height: 46px;
  object-fit: contain;
  object-position: center;
}

.chat-launcher strong {
  font-size: 14px;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: none;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(6, 21, 47, 0.28);
}

.chat-panel.open {
  display: block;
  animation: panelIn 220ms ease;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.chat-log {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow-y: auto;
  padding: 18px;
  background: var(--soft);
}

.message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
}

.message.bot {
  color: var(--blue-950);
  background: var(--white);
  border-bottom-left-radius: 6px;
}

.message.user {
  justify-self: end;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  border-bottom-right-radius: 6px;
}

.chat-privacy {
  display: grid;
  gap: 4px;
  padding: 12px 18px 0;
  color: var(--muted);
  background: var(--white);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.chat-privacy a {
  justify-self: start;
  padding: 0;
  border: 0;
  color: #078f92;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.chat-privacy div {
  display: flex;
  gap: 12px;
}

.chat-privacy div a + a {
  padding-left: 12px;
  border-left: 1px solid rgba(6, 21, 47, 0.16);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  background: var(--white);
}

.chat-form input {
  min-height: 46px;
  padding: 0 14px;
}

.chat-form button {
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  padding: 0 16px;
  cursor: pointer;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 96px 0 44px;
  color: var(--white);
  background: #37190f;
  border-top: 8px solid #078f92;
}

.footer-main {
  position: relative;
  z-index: 1;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.25fr;
  gap: 46px;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 13px;
}

.footer-column h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 850;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  display: grid;
  gap: 26px;
  margin-top: 76px;
}

.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-socials a {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 28px;
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 850;
}

.footer-legal strong {
  color: var(--white);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-legal a:hover {
  color: var(--orange);
}

.footer-watermark {
  position: absolute;
  right: -62px;
  bottom: -116px;
  width: 300px;
  max-width: 32vw;
  border-radius: 50%;
  opacity: 0.58;
  filter: saturate(1.1);
  pointer-events: none;
}

.support-page {
  background: #f3f6f8;
}

.support-hero {
  padding: 92px 0 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.92), rgba(6, 21, 47, 0.62)),
    url("assets/van-side.jpg") center / cover;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: center;
}

.support-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.support-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  font-weight: 750;
}

.support-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.support-quick-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.support-card {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 30px;
  border-radius: 18px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.support-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.support-card strong {
  font-size: 22px;
  font-weight: 950;
}

.support-card a {
  color: #078f92;
  font-weight: 900;
}

.support-home-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 45px rgba(255, 122, 26, 0.34);
  font-size: 14px;
  font-weight: 950;
}

.policy-socials {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 70;
  display: flex;
  gap: 10px;
}

.policy-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-950);
  box-shadow: 0 18px 45px rgba(6, 21, 47, 0.18);
  font-size: 13px;
  font-weight: 950;
}

.background-music-toggle {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 69;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 21, 47, 0.94);
  box-shadow: 0 18px 45px rgba(6, 21, 47, 0.18);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.background-music-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
}

.background-music-toggle.is-playing::before {
  background: #21d18f;
  box-shadow: 0 0 0 5px rgba(33, 209, 143, 0.18);
}

.background-music-toggle:hover {
  background: var(--blue-900);
  box-shadow: 0 20px 54px rgba(6, 21, 47, 0.24);
  transform: translateY(-2px);
}

.has-policy-socials .background-music-toggle {
  bottom: 74px;
}

body.cookie-consent-open .background-music-toggle {
  bottom: 210px;
}

body.cookie-consent-open.has-policy-socials .background-music-toggle {
  bottom: 258px;
}

.support-faq {
  padding: 78px 0 110px;
}

.support-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.support-sidebar {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 21, 47, 0.08);
}

.support-sidebar a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--blue-950);
  font-weight: 900;
}

.support-sidebar a:hover {
  color: var(--white);
  background: #078f92;
}

.support-questions {
  display: grid;
  gap: 52px;
}

.support-group {
  scroll-margin-top: 120px;
}

.support-group h2 {
  margin-bottom: 20px;
  color: #050505;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.support-page .faq-list {
  display: grid;
  gap: 12px;
}

.support-page .faq-list details {
  border: 1px solid rgba(6, 21, 47, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 21, 47, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.support-page .faq-list details:hover,
.support-page .faq-list details[open] {
  border-color: rgba(7, 143, 146, 0.24);
  box-shadow: 0 18px 50px rgba(6, 21, 47, 0.1);
  transform: translateY(-2px);
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.94), rgba(6, 21, 47, 0.48)),
    url("assets/van-wide.jpg") center / cover;
}

.gallery-logo-card {
  animation: floatSoft 5s ease-in-out infinite;
}

.gallery-page-section {
  padding: 78px 0 118px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 26, 0.1), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(7, 143, 146, 0.12), transparent 30%),
    #f3f6f8;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.social-hero {
  background:
    linear-gradient(110deg, rgba(6, 21, 47, 0.95), rgba(6, 21, 47, 0.76)),
    url("assets/van-side.jpg") center / cover;
}

.social-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 46px;
  align-items: end;
}

.social-profile-card,
.social-consent-card,
.social-feed-card {
  border: 1px solid rgba(6, 21, 47, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(6, 21, 47, 0.12);
}

.social-profile-card {
  display: grid;
  gap: 14px;
  min-height: 330px;
  padding: 28px;
  align-content: end;
  border-radius: 30px;
  color: var(--blue-950);
}

.social-profile-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(6, 21, 47, 0.14);
}

.social-profile-card span {
  color: #078f92;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-profile-card strong {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
}

.social-profile-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.5;
}

.social-feed-section {
  padding: 82px 0 120px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 122, 26, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff, #f3f8fa);
}

.social-heading {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.social-heading h2 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.95;
}

.social-heading p:not(.eyebrow) {
  margin: 0 auto;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
}

.social-consent-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 22px;
  border-radius: 24px;
}

.social-consent-card span {
  color: #078f92;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-consent-card strong {
  display: block;
  margin: 4px 0 6px;
  color: var(--blue-950);
  font-size: 22px;
}

.social-consent-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.social-consent-card button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9f3d);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(255, 122, 26, 0.24);
}

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

.instagram-page-feed {
  grid-template-columns: minmax(0, 1fr);
}

.social-feed-card {
  overflow: hidden;
  min-height: 740px;
  border-radius: 30px;
}

.instagram-page-feed .social-feed-card {
  min-height: 860px;
}

.social-card-head {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(6, 21, 47, 0.08);
  background: #fff;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  background: #06152f;
  font-size: 26px;
  font-weight: 950;
}

.facebook-icon {
  background: #1877f2;
}

.instagram-icon {
  background: linear-gradient(135deg, #ff7a1a, #1877f2);
}

.instagram-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-card-head h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 25px;
  line-height: 1;
}

.social-card-head a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue-950);
  background: rgba(255, 122, 26, 0.14);
  font-weight: 950;
}

.social-embed-shell {
  min-height: 650px;
  padding: 16px;
  background: #f7fafc;
}

.instagram-page-feed .social-embed-shell {
  display: grid;
  min-height: 790px;
  place-items: start center;
  padding: 28px;
}

.social-placeholder {
  display: grid;
  min-height: 620px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed rgba(6, 21, 47, 0.18);
  border-radius: 24px;
  text-align: center;
  color: var(--muted);
}

.social-placeholder strong {
  color: var(--blue-950);
  font-size: 26px;
}

.social-placeholder p {
  max-width: 360px;
  margin: 0;
  font-weight: 800;
  line-height: 1.5;
}

.social-fallback-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  color: var(--blue-950);
  background: rgba(255, 122, 26, 0.12);
}

.social-fallback-note strong {
  display: block;
  margin-bottom: 6px;
}

.social-fallback-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  background: var(--blue-950);
  box-shadow: 0 18px 48px rgba(6, 21, 47, 0.12);
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile.wide {
  grid-column: span 2;
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, opacity 650ms ease;
}

.gallery-tile:hover img {
  opacity: 0.9;
  transform: scale(1.06);
}

.gallery-tile figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 21, 47, 0.78);
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.privacy-hero {
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.92), rgba(6, 21, 47, 0.58)),
    url("https://images.pexels.com/photos/5668473/pexels-photo-5668473.jpeg?cs=srgb&dl=pexels-sora-shimazaki-5668473.jpg&fm=jpg") center / cover;
}

.terms-hero {
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.92), rgba(6, 21, 47, 0.58)),
    url("https://images.pexels.com/photos/5668858/pexels-photo-5668858.jpeg?cs=srgb&dl=pexels-sora-shimazaki-5668858.jpg&fm=jpg") center / cover;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content article {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(6, 21, 47, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 21, 47, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.policy-content article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, #078f92, var(--orange));
  opacity: 0.9;
}

.policy-content article:hover {
  border-color: rgba(7, 143, 146, 0.22);
  box-shadow: 0 20px 58px rgba(6, 21, 47, 0.09);
  transform: translateY(-2px);
}

.policy-content h2 {
  margin-bottom: 10px;
  color: #050505;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.policy-content p {
  margin: 0;
  color: #243044;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes faqDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 48px;
    height: 48px;
    place-content: center;
    border: 1px solid rgba(6, 21, 47, 0.12);
    border-radius: 16px;
    background: rgba(255, 122, 26, 0.12);
    cursor: pointer;
  }

  .utility-bar {
    gap: 16px;
    align-items: center;
  }

  .language-menu {
    right: 0;
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue-950);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    padding: 12px 0 20px;
  }

  .nav-links.open a {
    padding: 14px 0;
    border-top: 1px solid rgba(6, 21, 47, 0.08);
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .faq-grid,
  .instagram-grid,
  .home-social-grid,
  .roadie-feature,
  .roadie-feature-reverse,
  .industry-showcase,
  .coverage-section,
  .support-hero-grid,
  .social-hero-grid,
  .social-feed-grid,
  .support-layout,
  .dashboard-hero,
  .dashboard-layout,
  .admin-command,
  .admin-insight-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .admin-filter-bar button {
    width: fit-content;
  }

  .login-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .roadie-feature-reverse div {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 420px;
    margin-top: 0;
    border-radius: 0;
  }

  .service-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    gap: 48px 42px;
  }

  .credential-strip {
    gap: 24px;
    padding-inline: 28px;
  }

  .industry-showcase img {
    height: 430px;
  }

  .industry-showcase div {
    padding: 46px;
  }

  .support-sidebar {
    position: static;
    grid-template-columns: repeat(5, max-content);
    overflow-x: auto;
  }

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

  .footer-watermark {
    width: 240px;
    right: -70px;
    bottom: -92px;
  }

  .dashboard-profile {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 72px;
  }

  .utility-bar {
    gap: 10px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .language-current {
    min-height: 34px;
    padding: 0 10px 0 7px;
  }

  .language-flag {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }

  .language-current strong {
    min-width: auto;
    max-width: 76px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-menu {
    width: min(240px, calc(100vw - 28px));
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .brand-logo img {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero {
    padding: 138px 0 66px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 54px);
    letter-spacing: -0.045em;
    line-height: 1.02;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    width: 100%;
  }

  .about-media img {
    height: auto;
    aspect-ratio: 1 / 1.05;
    border-radius: 26px;
  }

  .hero-visual img,
  .hero-visual video {
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .hero-visual::before {
    inset: 18px -8px -10px 18px;
    border-radius: 26px;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .service-band,
  .why-section,
  .about-section,
  .gallery-section,
  .home-social-section,
  .testimonial-section,
  .faq-section,
  .contact-section {
    padding: 70px 0;
  }

  .credential-strip {
    grid-template-columns: 1fr;
    margin-bottom: 46px;
    padding: 36px 22px;
  }

  .credential-card {
    min-height: 0;
    padding: 12px 0;
  }

  .service-grid,
  .feature-grid,
  .testimonial-grid,
  .about-stats,
  .home-social-feed-grid,
  .gallery-page-grid,
  .instagram-board {
    grid-template-columns: 1fr;
  }

  .home-social-grid {
    gap: 34px;
  }

  .home-social-live {
    padding: 12px;
    border-radius: 24px;
  }

  .home-social-app-head {
    display: grid;
  }

  .home-social-feed-card:first-child {
    grid-row: auto;
  }

  .home-social-feed-head {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .home-social-feed-head a {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .social-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 24px;
  }

  .home-social-feed-card:first-child .home-social-feed-shell,
  .home-social-feed-shell {
    min-height: 360px;
    max-height: 520px;
  }

  .social-consent-card {
    display: grid;
  }

  .login-modal {
    padding: 14px;
  }

  .login-card {
    padding: 26px;
    max-height: 94vh;
  }

  .signup-form {
    padding: 24px 20px 0;
  }

  .signup-progress {
    margin: 0 -20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .cookie-panel {
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

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

  .cookie-actions button {
    width: 100%;
  }

  body.cookie-consent-open #chatbase-bubble-button {
    bottom: 304px !important;
  }

  .background-music-toggle {
    left: 14px;
    bottom: 14px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .has-policy-socials .background-music-toggle {
    bottom: 70px;
  }

  body.cookie-consent-open .background-music-toggle,
  body.cookie-consent-open.has-policy-socials .background-music-toggle {
    bottom: 360px;
  }

  .industry-section {
    padding: 64px 0 74px;
  }

  .industry-heading {
    text-align: left;
  }

  .industry-tabs {
    justify-content: flex-start;
    gap: 10px;
  }

  .industry-tabs button {
    min-height: 42px;
    padding: 0 15px;
    font-size: 14px;
  }

  .industry-showcase {
    min-height: auto;
  }

  .industry-showcase img {
    height: auto;
    aspect-ratio: 1.15 / 1;
  }

  .industry-showcase div {
    padding: 28px;
  }

  .feature-grid {
    gap: 42px;
  }

  .feature-card {
    min-height: 0;
  }

  .why-image {
    height: 220px;
  }

  .coverage-left,
  .coverage-right {
    padding: 60px 22px;
  }

  .coverage-left h2,
  .coverage-left p,
  .coverage-right h3 {
    text-align: left;
  }

  .coverage-stats {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .support-hero {
    padding: 64px 0;
  }

  .social-feed-section {
    padding: 58px 0 96px;
  }

  .social-feed-card {
    min-height: 0;
    border-radius: 22px;
  }

  .social-card-head {
    grid-template-columns: 48px 1fr;
  }

  .social-card-head a {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .support-faq {
    padding: 58px 0 76px;
  }

  .support-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-grid {
    gap: 30px;
    padding-top: 56px;
  }

  .instagram-board {
    grid-auto-rows: 310px;
  }

  .instagram-board a:first-child {
    grid-row: auto;
  }

  .roadie-feature {
    gap: 28px;
    padding: 62px 0;
  }

  .roadie-feature img {
    height: auto;
    aspect-ratio: 1.2 / 1;
    border-radius: 26px;
  }

  .gallery-grid {
    grid-auto-rows: 330px;
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:last-child,
  .gallery-tile.tall,
  .gallery-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .dashboard-hero {
    padding-top: 34px;
  }

  .dashboard-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .dashboard-profile {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .dashboard-profile button {
    grid-column: 1 / -1;
  }

  .dashboard-gate-card,
  .dashboard-order-form,
  .admin-command,
  .admin-card {
    padding: 22px;
    border-radius: 22px;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-safety-grid,
  .admin-filter-bar {
    grid-template-columns: 1fr;
  }

  .admin-filter-bar button {
    width: 100%;
  }

  .admin-bars {
    height: 220px;
    gap: 8px;
  }

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

  .dashboard-order-form .full-span {
    grid-column: auto;
  }

  .map-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .qr-card {
    align-items: flex-start;
  }

  .floating-quote {
    right: 14px;
    bottom: 94px;
  }

  .ai-dispatch {
    right: 14px;
    bottom: 14px;
  }

  .chat-launcher strong {
    display: none;
  }

  .site-footer {
    padding: 64px 0 34px;
  }

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

  .footer-column h3 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .footer-bottom {
    margin-top: 54px;
  }

  .footer-legal {
    display: grid;
    gap: 12px;
  }

  .footer-watermark {
    width: 190px;
    max-width: none;
    right: -74px;
    bottom: -78px;
    opacity: 0.42;
  }
}
