*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  /* Room for fixed bottom dock + safe-area */
  padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); text-transform: uppercase; margin: 0 0 .5rem; line-height: 1.15; color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin: 0 0 10px; }
.eyebrow.light { color: #ffb57a; }

/* Section type label — more visible than plain eyebrow */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, .12);
  border: 1px solid rgba(249, 115, 22, .28);
  color: var(--orange-hover);
}
.section-kicker-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  flex-shrink: 0;
}
.section-kicker-ico svg { width: 20px; height: 20px; }
.section-kicker-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
}
.section-header.center .section-kicker { margin-inline: auto; }

.rule { width: 78px; height: 5px; background: var(--orange); border: 0; margin: 16px 0 20px; }
.rule--center { margin-left: auto; margin-right: auto; }
.section { padding: 72px 0; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 0 0 12px;
  max-width: 36ch;
  line-height: 1.2;
  letter-spacing: .02em;
}
.section-header.center h2 { margin-inline: auto; max-width: 34ch; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0; }
.section-header .section-sub {
  font-size: 1.05rem;
  line-height: 1.6;
}
.section-header.center .section-sub { margin-inline: auto; max-width: 46ch; }
.section-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.btn-with-ico svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-with-ico .btn-arrow { width: 18px; height: 18px; }
.btn-gallery-all,
.btn-services-all,
.btn-posts-all {
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: .06em;
  box-shadow: none;
}
.btn-gallery-all:hover,
.btn-services-all:hover,
.btn-posts-all:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 31, 61, .12);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
}
@media (min-width: 640px) {
  .cta-panel { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .cta-panel:has(> :nth-child(4)) { grid-template-columns: repeat(4, 1fr); }
}
.cta-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cta-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, .45);
  box-shadow: var(--shadow-trust);
}
.cta-chip-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(18, 60, 102, .1);
  color: var(--blue);
  flex-shrink: 0;
}
.cta-chip:hover .cta-chip-ico {
  background: rgba(249, 115, 22, .14);
  color: var(--orange);
}
.cta-chip-ico--yt { background: rgba(255, 0, 0, .08); color: #c4302b; }
.cta-chip:hover .cta-chip-ico--yt { background: rgba(255, 0, 0, .12); color: #c4302b; }
.cta-chip-ico svg { width: 22px; height: 22px; }
.cta-chip-text { display: grid; gap: 2px; min-width: 0; }
.cta-chip-text strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}
.cta-chip-text small {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.3;
}

/* Legacy plain links (if used elsewhere) */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.cta-row a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; }
.cta-row a:hover { color: var(--orange); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 28px; border-radius: var(--radius-btn);
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: 12.5px; }
.topbar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
.topbar-left, .topbar-right { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.topbar-flags { display: inline-flex; gap: 4px; align-items: center; }
.usa-flag-gif {
  display: inline-block; width: 28px; height: 18px; object-fit: cover;
  border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}
.usa-flag-gif--sm { width: 22px; height: 14px; }
.usa-flag-gif--inline { width: 22px; height: 14px; margin-left: 8px; vertical-align: middle; }

.header-mobile-tools { display: none; }
.header-mobile-tools-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 10px; padding-bottom: 10px;
}
.mobile-flags { display: inline-flex; gap: 4px; align-items: center; flex-shrink: 0; }
.mobile-contact-icons { display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex: 1; }
.mobile-contact-ico {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 7px; color: var(--orange); background: rgba(255,255,255,.08);
  text-decoration: none; transition: background .15s, color .15s, transform .15s;
}
.mobile-contact-ico svg { width: 16px; height: 16px; display: block; }
.mobile-contact-ico:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.mobile-socials { display: inline-flex; gap: 5px; align-items: center; flex-shrink: 0; }
.mobile-socials .topbar-social {
  width: 28px; height: 28px; border: 0;
}
.mobile-socials .topbar-social svg { width: 14px; height: 14px; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.topbar-item--area {
  max-width: min(280px, 42vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-ico { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
.topbar-social, .social-btn {
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 6px;
  color: #fff; border: 0; text-decoration: none;
  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.topbar-social svg, .social-btn svg { width: 14px; height: 14px; display: block; }
.topbar-social:hover, .social-btn:hover { transform: translateY(-1px); filter: brightness(1.08); color: #fff; }
.social-facebook { background: #1877F2; }
.social-instagram { background: linear-gradient(45deg, #f58529, #dd2a7b 50%, #8134af); }
.social-youtube { background: #FF0000; }
.social-linkedin { background: #0A66C2; }
.social-tiktok { background: #010101; }
.social-whatsapp { background: #25D366; }
.social-email { background: #123C66; }
.social-maps { background: #EA4335; }
.social-phone { background: #F97316; }
.social-mobile-only { display: none !important; }
@media (max-width: 1024px) {
  .social-mobile-only { display: grid !important; }
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--orange); }

.site-header { position: sticky; top: 0; z-index: 40; background: #fff; box-shadow: 0 3px 16px rgba(10,31,61,.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.5vw, 20px);
  min-height: 108px;
  flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; flex: 0 1 auto; min-width: 0; }
.brand-logo { height: clamp(68px, 7.5vw, 92px); width: auto; max-width: min(380px, 34vw); }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.55vw, 10px);
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}
.site-nav .nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; font-weight: 600;
  color: var(--ink);
  padding: 10px clamp(6px, 0.7vw, 12px); border-radius: 6px; border-bottom: 2px solid transparent;
  transition: color .15s, background .15s;
  background: transparent; border-top: 0; border-left: 0; border-right: 0; cursor: pointer;
  font-family: inherit;
  font-size: clamp(12.5px, 1.12vw, 15.5px);
  white-space: nowrap;
  flex: 0 1 auto;
  max-width: 100%;
}
.site-nav .nav-link > span { white-space: nowrap; }
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--orange); background: rgba(249,115,22,.08); border-bottom-color: var(--orange); }
.nav-ico { width: clamp(24px, 2.2vw, 32px); height: clamp(24px, 2.2vw, 32px); flex-shrink: 0; color: var(--orange); }
.site-nav .nav-link:not(.active) .nav-ico { color: var(--blue); opacity: .9; }
.site-nav .nav-link:hover .nav-ico,
.site-nav .nav-link.active .nav-ico { color: var(--orange); opacity: 1; }
.nav-quote {
  margin-left: clamp(2px, 0.4vw, 6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  flex: 0 0 auto;
  max-width: min(280px, 34vw);
  min-height: 44px;
  height: auto;
  padding: 10px clamp(10px, 1vw, 16px);
  font-size: clamp(11.5px, 1.05vw, 13.5px);
  letter-spacing: .03em;
  line-height: 1.15;
}
.nav-quote > span,
.nav-quote font { white-space: nowrap; }
.nav-ico--btn { width: 22px; height: 22px; color: #fff; flex-shrink: 0; }

/* Mid desktop: longer browser-translated labels (e.g. PT) must stay on one row */
@media (min-width: 900px) and (max-width: 1180px) {
  .brand-logo { max-width: min(300px, 28vw); height: clamp(60px, 6.5vw, 78px); }
  .site-nav { gap: 2px; }
  .site-nav .nav-link { padding: 8px 6px; gap: 5px; font-size: 12.5px; }
  .nav-ico { width: 22px; height: 22px; }
  .nav-quote {
    max-width: min(250px, 34vw);
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: .02em;
    gap: 5px;
  }
  .nav-ico--btn { width: 18px; height: 18px; }
}

.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.nav-caret { width: 16px; height: 16px; margin-left: 2px; color: currentColor; transition: transform .2s ease; }
.nav-item.has-dropdown.is-open > .nav-dropdown-toggle .nav-caret,
.nav-item.has-dropdown:hover > .nav-dropdown-toggle .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(10, 31, 61, .16);
  display: none;
  z-index: 40;
}
.nav-dropdown--services {
  min-width: 260px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}
.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown,
.nav-item.has-dropdown.is-open > .nav-dropdown { display: grid; gap: 4px; }
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.nav-dropdown-link svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.nav-dropdown-link .service-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: rgba(249, 115, 22, .1);
  color: var(--orange);
}
.nav-dropdown-link:hover svg,
.nav-dropdown-link.active svg { color: var(--orange); }
.nav-item.has-dropdown.is-active > .nav-dropdown-toggle {
  color: var(--orange);
  background: rgba(249,115,22,.08);
  border-bottom-color: var(--orange);
}
.nav-item.has-dropdown.is-active > .nav-dropdown-toggle .nav-ico { color: var(--orange); opacity: 1; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; position: relative; z-index: 1; padding: 0; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); width: 22px; margin: 0 auto; transition: transform .2s ease, opacity .2s ease, background .2s ease; transform-origin: center; }

.hero {
  position: relative; min-height: 68vh; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(10,31,61,.92) 0%, rgba(10,31,61,.55) 55%, rgba(10,31,61,.25) 100%),
    url('../img/brand/trabalhadores-01.png') center/cover no-repeat;
  color: #fff;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  /* Keep CTAs / phone / trust line clear of fixed dock on short screens */
  max-height: calc(100svh - 168px - env(safe-area-inset-bottom, 0px));
}
.hero-slides { position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-slide.is-active .hero-slide-media img { transform: scale(1); }
.hero-slide--media-only .hero-slide-media img,
.hero-slide--media-only.is-active .hero-slide-media img {
  transform: none;
  transition: none;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,31,61,.92) 0%, rgba(10,31,61,.6) 50%, rgba(10,31,61,.25) 100%);
  pointer-events: none;
}
.hero-slide--media-only::after {
  background: linear-gradient(180deg, rgba(10,31,61,.1) 0%, transparent 28%, transparent 72%, rgba(10,31,61,.22) 100%);
}
.hero-slide-content {
  position: relative; z-index: 2;
  max-width: 640px; margin-right: auto;
  padding: 96px 24px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease .25s, transform .7s ease .25s;
}
.hero-slide.is-active .hero-slide-content { opacity: 1; transform: none; }
.hero-slide-content h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.7rem); margin-bottom: 1rem; }

/* Match desktop artwork ratio (3264×935 / 2400×688 ≈ 3.49:1) */
.hero-slides,
.hero-slide {
  min-height: 0;
  aspect-ratio: 2400 / 688;
  height: auto;
  max-height: inherit;
}

.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.16); color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease;
}
.hero-nav:hover { background: var(--orange); transform: translateY(-50%) scale(1.06); }
.hero-nav svg { width: 26px; height: 26px; }
.hero-nav--prev { left: 18px; }
.hero-nav--next { right: 18px; }

.hero-dots {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 6;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.42); transition: background .2s ease, width .25s ease, border-radius .25s ease;
}
.hero-dot.is-active { background: var(--orange); width: 30px; border-radius: 999px; }

.hero-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.15); z-index: 6; }
.hero-progress-bar { display: block; height: 100%; width: 0; background: var(--orange); }

.hero-content { max-width: 640px; padding: 80px 0; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; opacity: .92; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }

.trust-strip { margin-top: -48px; position: relative; z-index: 2; padding-bottom: 8px; }
/* Image-only vitrine: don't overlap baked-in CTAs / phone / trust line */
.hero-slider + .trust-strip {
  margin-top: 28px;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-trust);
  overflow: hidden; border: 1px solid var(--border);
}
.trust-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 26px 22px; position: relative;
}
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(249,115,22,.12); color: var(--orange);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item h3 {
  font-size: .95rem; margin: 0 0 6px; line-height: 1.25;
  color: var(--navy);
}
.trust-item p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.45; }

@media (max-width: 999px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-left: 1px solid var(--border); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .trust-item:nth-child(3) { border-left: 0; }
}
@media (max-width: 560px) {
  .trust-strip { margin-top: -28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--border); }
  .trust-item:nth-child(2),
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-left: 0; border-top: 1px solid var(--border); }
}

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.blog-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(4, 1fr); }
}
.card-grid--services {
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) {
  .card-grid--services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .card-grid--services { grid-template-columns: repeat(3, 1fr); }
}
.service-card, .blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; text-decoration: none; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s; color: inherit; }
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover, .blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-trust); }
.service-card-img, .blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--light); position: relative; }
.service-card-img img, .blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(10, 31, 61, .35);
}
.service-card-badge svg { width: 24px; height: 24px; }
.service-card-badge .service-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.service-card:hover .service-card-badge { background: var(--orange); }
.service-card-body, .blog-card-body { padding: 18px; }
.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.service-card-body h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  line-height: 1.25;
}
.service-card-body p { margin: 0 0 14px; color: var(--muted); font-size: .95rem; flex: 1; }
.service-card-body .learn-more { align-self: flex-start; margin-top: auto; }
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.blog-card-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(10, 31, 61, .35);
}
.blog-card-badge svg { width: 22px; height: 22px; }
.blog-card:hover .blog-card-badge { background: var(--orange); }
.blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 600;
}
.blog-card-date svg { width: 16px; height: 16px; color: var(--orange); }
.blog-card-body h3 {
  font-size: 1.12rem;
  margin: 0 0 10px;
  line-height: 1.3;
  color: var(--navy);
}
.blog-card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .95rem;
  flex: 1;
}
.blog-card-body .learn-more { align-self: flex-start; margin-top: auto; }
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: none;
  transition: color .15s ease, gap .15s ease;
}
.learn-more svg { width: 16px; height: 16px; }
.service-card:hover .learn-more,
.blog-card:hover .learn-more {
  background: transparent;
  color: var(--orange-hover);
  transform: none;
  gap: 10px;
  box-shadow: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item { margin: 0; border-radius: var(--radius-card); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.gallery-thumb {
  position: relative; display: block; width: 100%; padding: 0; border: 0; background: #0A1F3D;
  cursor: zoom-in; overflow: hidden;
}
.gallery-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .35s ease, opacity .25s ease; }
.gallery-thumb:hover img,
.gallery-thumb:focus-visible img { transform: scale(1.06); opacity: .92; }
.gallery-zoom-hint {
  position: absolute; right: 10px; bottom: 10px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(10, 31, 61, .72); color: #fff;
  opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.gallery-thumb:hover .gallery-zoom-hint,
.gallery-thumb:focus-visible .gallery-zoom-hint { opacity: 1; }
.gallery-item figcaption { padding: 12px 14px; }
.gallery-item strong { display: block; font-size: .95rem; }
.gallery-item span { color: var(--muted); font-size: .85rem; }
.gallery-page-meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}
.site-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 4px;
}
.site-pager-btn {
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}
a.site-pager-btn:hover,
a.site-pager-btn:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}
.site-pager-btn.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.site-pager-btn.is-disabled {
  opacity: .38;
  cursor: default;
}
.site-pager-ellipsis {
  min-width: 18px;
  text-align: center;
  color: #94A3B8;
  font-weight: 700;
}

.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center;
}
.gallery-lightbox-backdrop {
  position: absolute; inset: 0; background: rgba(6, 16, 32, .92); backdrop-filter: blur(3px);
}
.gallery-lightbox-dialog {
  position: relative; z-index: 1; width: min(96vw, 1100px); max-height: 94vh;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 56px 12px 12px;
}
.gallery-lightbox-stage {
  position: relative;
  z-index: 1;
  width: 100%; max-height: min(72vh, 820px); overflow: hidden; border-radius: 12px;
  background: #061528; display: grid; place-items: center; touch-action: none; cursor: grab;
}
.gallery-lightbox-stage.is-dragging { cursor: grabbing; }
.gallery-lightbox-stage img {
  max-width: 100%; max-height: min(72vh, 820px); object-fit: contain;
  transform-origin: center center; transition: transform .08s linear; user-select: none;
  will-change: transform;
}
.gallery-lightbox-caption {
  margin: 0; color: #fff; text-align: center; font-size: .95rem; max-width: 90%;
  text-wrap: balance;
}
.gallery-lightbox-tools {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.gallery-lb-btn,
.gallery-lb-tool {
  border: 0; background: rgba(255,255,255,.18); color: #fff; cursor: pointer;
  border-radius: 999px; font: inherit; line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.gallery-lb-btn:hover,
.gallery-lb-tool:hover,
.gallery-lb-btn:focus-visible,
.gallery-lb-tool:focus-visible { background: var(--orange); outline: none; }
.gallery-lb-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 0px));
  right: max(12px, env(safe-area-inset-right, 0px));
  z-index: 1210;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(10, 31, 61, .92);
  border: 2px solid rgba(255,255,255,.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}
.gallery-lb-close svg { width: 22px; height: 22px; display: block; }
.gallery-lb-prev,
.gallery-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; font-size: 1.3rem;
}
.gallery-lb-prev { left: 4px; }
.gallery-lb-next { right: 4px; }
.gallery-lb-tool { min-width: 44px; height: 40px; padding: 0 14px; font-weight: 700; }
.gallery-lb-tool--close {
  background: var(--orange);
  min-width: 72px;
}
body.lightbox-open,
body.support-open { overflow: hidden; }
body.lightbox-open .dock-nav,
body.lightbox-open .support-chat {
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 699px) {
  .gallery-lightbox-dialog { padding: 60px 8px 16px; width: 100%; max-height: 100vh; }
  .gallery-lightbox-stage,
  .gallery-lightbox-stage img { max-height: min(62vh, 640px); }
  .gallery-lb-prev { left: 4px; }
  .gallery-lb-next { right: 4px; }
  .gallery-lb-close {
    width: 52px;
    height: 52px;
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
  }
  .gallery-zoom-hint { opacity: .9; }
  .gallery-lb-tool--close { display: inline-flex; align-items: center; justify-content: center; }
}

.quote-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 64px 0 0;
  background: #061528;
}
.quote-cta h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  max-width: 14ch;
  line-height: 1.08;
  letter-spacing: .01em;
  margin: 0 0 16px;
}
.quote-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #030b16 0%, #0A1F3D 42%, #123C66 72%, #0a2748 100%);
  pointer-events: none;
}
.quote-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 11, 22, .2) 0%, transparent 30%, transparent 62%, rgba(3, 11, 22, .55) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, .018) 48px,
      rgba(255, 255, 255, .018) 49px
    );
}
.quote-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.quote-cta-orb--orange {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  right: -6%;
  top: 8%;
  background: radial-gradient(circle, rgba(249, 115, 22, .55) 0%, rgba(249, 115, 22, .18) 42%, transparent 70%);
  animation: quote-orb-pulse 7s ease-in-out infinite;
}
.quote-cta-orb--blue {
  width: min(44vw, 420px);
  height: min(44vw, 420px);
  right: 18%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(56, 140, 214, .35) 0%, rgba(18, 60, 102, .2) 45%, transparent 72%);
}
.quote-cta-orb--soft {
  width: min(38vw, 360px);
  height: min(38vw, 360px);
  left: -8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(249, 115, 22, .22) 0%, transparent 68%);
}
@keyframes quote-orb-pulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.06); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .quote-cta-orb--orange { animation: none; }
}
.quote-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-items: end;
  padding-bottom: 0;
}
@media (min-width: 900px) {
  .quote-cta { padding: 72px 0 0; }
  .quote-cta-inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: end;
    gap: 12px 28px;
    min-height: 560px;
  }
}
.quote-cta-copy {
  padding-bottom: 56px;
  max-width: 560px;
}
.section-kicker--on-dark {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(249, 115, 22, .45);
  color: #ffb57a;
}
.section-kicker--on-dark .section-kicker-ico {
  background: var(--orange);
  color: #fff;
}
.quote-cta-text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 42ch;
}
.quote-cta-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.quote-cta-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: .95rem;
}
.quote-cta-point-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, .18);
  color: var(--orange);
  flex-shrink: 0;
}
.quote-cta-point-ico svg { width: 18px; height: 18px; }
.quote-cta-actions { gap: 12px; flex-wrap: wrap; }
.quote-cta-actions .btn-primary {
  box-shadow: 0 12px 28px rgba(249, 115, 22, .4);
}
.quote-cta-actions .btn-outline {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .06);
}
.quote-cta-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 340px;
  margin: 0;
  padding: 0 8px;
  overflow: visible;
}
@media (min-width: 900px) {
  .quote-cta-media {
    min-height: 560px;
    justify-content: flex-end;
    padding: 0 0 0 12px;
  }
}
.quote-cta-stage {
  position: absolute;
  inset: 8% 4% 0;
  pointer-events: none;
}
@media (min-width: 900px) {
  .quote-cta-stage { inset: 4% 0 0 4%; }
}
.quote-cta-ring {
  position: absolute;
  width: min(82%, 440px);
  aspect-ratio: 1;
  left: 42%;
  top: 8%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 50% 42%, rgba(249, 115, 22, .2), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(18, 60, 102, .32), transparent 70%);
  box-shadow:
    inset 0 0 40px rgba(249, 115, 22, .1),
    0 0 60px rgba(249, 115, 22, .08);
  overflow: hidden;
}
.quote-cta-glow {
  position: absolute;
  width: min(88%, 460px);
  height: 55%;
  left: 42%;
  top: 16%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .38) 0%, rgba(249, 115, 22, .1) 42%, transparent 72%);
  filter: blur(18px);
}
.quote-cta-floor {
  position: absolute;
  left: 55%;
  bottom: 3%;
  transform: translateX(-50%);
  width: min(78%, 400px);
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .5) 0%, transparent 72%);
  filter: blur(6px);
}
.quote-cta-figures {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 320px;
  display: grid;
  place-items: end center;
}
.quote-cta-figure {
  display: block;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .45s ease, filter .45s ease;
}
.quote-cta-figure--work {
  position: absolute;
  z-index: 1;
  left: 42%;
  top: 10%;
  width: min(78%, 420px);
  aspect-ratio: 1;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: .92;
  filter: saturate(.95) contrast(1.02);
  -webkit-mask-image: radial-gradient(circle at center, #000 62%, transparent 78%);
  mask-image: radial-gradient(circle at center, #000 62%, transparent 78%);
}
.quote-cta-figure--worker {
  position: relative;
  z-index: 3;
  width: min(58%, 320px);
  max-height: 500px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  justify-self: end;
  margin-right: 2%;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .5)) drop-shadow(0 0 24px rgba(249, 115, 22, .16));
  -webkit-mask-image: linear-gradient(180deg, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 82%, transparent 100%);
  transform: translateY(6px);
}
.quote-cta-media:hover .quote-cta-figure--worker {
  transform: translateY(0);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .55)) drop-shadow(0 0 30px rgba(249, 115, 22, .24));
}
.quote-cta-media:hover .quote-cta-figure--work {
  opacity: 1;
}
@media (min-width: 900px) {
  .quote-cta-figures { min-height: 540px; }
  .quote-cta-figure--work {
    width: min(86%, 460px);
    left: 38%;
    top: 6%;
  }
  .quote-cta-figure--worker {
    width: min(52%, 360px);
    max-height: 560px;
    margin-right: 0;
  }
  .quote-cta-ring {
    width: min(86%, 460px);
    left: 38%;
    top: 4%;
  }
}
@media (max-width: 899px) {
  .quote-cta-copy { padding-bottom: 8px; max-width: none; text-align: left; }
  .quote-cta-media { min-height: 320px; order: 2; }
  .quote-cta-figure--worker { max-height: 360px; width: min(62%, 280px); }
  .quote-cta-figure--work { width: min(70%, 280px); top: 8%; }
  .quote-cta h2 { max-width: none; }
}

.why-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px; box-shadow: var(--shadow-card); }
.pill { display: inline-block; background: #fff7ed; color: var(--orange-hover); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.why-head { text-align: left; max-width: 680px; margin: 0 0 8px; }
.why-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 12px; max-width: none; }
.why-head .section-sub { margin: 0; }
.why-grid { display: grid; gap: 22px; margin-top: 36px; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-triggers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
}
@media (min-width: 700px) {
  .why-triggers { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .why-triggers { grid-template-columns: repeat(6, 1fr); gap: 10px; padding: 16px; }
}
.why-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 14px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.why-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, .4);
  box-shadow: var(--shadow-trust);
}
.why-trigger-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, .12);
  color: var(--orange);
  margin-bottom: 4px;
}
.why-trigger:hover .why-trigger-ico {
  background: var(--orange);
  color: #fff;
}
.why-trigger-ico svg { width: 24px; height: 24px; }
.why-trigger strong {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.25;
}
.why-trigger small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.3;
}

.location-section {
  background:
    radial-gradient(ellipse 70% 60% at 90% 20%, rgba(18, 60, 102, .12), transparent 55%),
    linear-gradient(180deg, #d7e3f0 0%, #e8eef6 45%, #dce6f2 100%);
}
.location-section .section-sub { color: #3d5166; }
.location-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: .9fr 1.1fr; gap: 24px; }
}
.location-card {
  background: #fff;
  border: 1px solid rgba(18, 60, 102, .12);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow-trust);
}
.location-card-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.location-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: var(--navy);
}
.location-address {
  display: grid;
  gap: 4px;
  font-style: normal;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0 0 18px;
}
.location-area {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}
.location-note { color: var(--muted); margin: 0 0 18px; }
.location-meta {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.location-meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}
.location-meta a { text-decoration: none; color: var(--blue); }
.location-meta a:hover { color: var(--orange); }
.location-meta-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, .12);
  color: var(--orange);
  flex-shrink: 0;
}
.location-meta-ico svg { width: 18px; height: 18px; }
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.location-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-trust);
  background: #e8eef5;
  min-height: 320px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.location-map-empty {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--muted);
}
.location-map-empty p { margin: 0; max-width: 34ch; line-height: 1.5; }
.why-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.why-card:hover { background: #fff; }
.why-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--orange); transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-trust); border-color: rgba(249,115,22,.35); }
.why-card:hover::before { transform: scaleY(1); }
.why-card-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(249,115,22,.12); color: var(--orange); margin-bottom: 18px;
}
.why-card-ico svg { width: 30px; height: 30px; }
.why-card h4 { font-size: 1.05rem; margin: 0 0 10px; color: var(--navy); }
.why-card p { color: var(--muted); margin: 0; line-height: 1.6; }

.video-grid { display: grid; gap: 16px; }
@media (min-width: 800px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-grid--4,
.video-grid--3,
.video-grid--home {
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 640px) {
  .video-grid--4,
  .video-grid--3,
  .video-grid--home { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .video-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
@media (min-width: 1100px) {
  .video-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.video-grid--home {
  gap: 20px;
}
@media (min-width: 960px) {
  .video-grid--home {
    gap: 22px;
    max-width: 1080px;
    margin-inline: auto;
  }
}
.videos-section {
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(249, 115, 22, .06), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(18, 60, 102, .06), transparent 50%),
    var(--light, #f5f7fa);
}
.videos-page .video-grid--3 {
  max-width: 1180px;
  margin-inline: auto;
}
.video-grid--home .video-card,
.video-grid--4 .video-card,
.video-grid--3 .video-card {
  height: 100%;
  min-width: 0;
}
.video-grid--home .video-card-play,
.video-grid--home .video-card-file,
.video-grid--4 .video-card-play,
.video-grid--4 .video-card-file,
.video-grid--3 .video-card-play,
.video-grid--3 .video-card-file {
  aspect-ratio: 16 / 9;
  min-height: 0;
  flex: 0 0 auto;
}
.video-grid--3 .video-card-btn {
  width: 68px;
  height: 68px;
}
.video-grid--3 .video-card-btn svg {
  width: 30px;
  height: 30px;
}
.video-grid--3 .video-card-body {
  padding: 16px 18px 18px;
}
.video-grid--3 .video-card-body h3 {
  font-size: 1.08rem;
}
.video-grid--home .video-card-btn {
  width: 64px;
  height: 64px;
}
.video-grid--home .video-card-btn svg {
  width: 28px;
  height: 28px;
}
.video-grid--home .video-card-body {
  padding: 16px 18px 18px;
}
.video-grid--home .video-card-body h3 {
  font-size: 1.12rem;
}
.video-grid--home .video-card-body,
.video-grid--4 .video-card-body,
.video-grid--3 .video-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.video-grid--home .video-card-body h3,
.video-grid--4 .video-card-body h3,
.video-grid--3 .video-card-body h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}
.video-grid--home .video-card-body p,
.video-grid--4 .video-card-body p,
.video-grid--3 .video-card-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.videos-empty {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(10, 31, 61, .96) 0%, rgba(18, 60, 102, .92) 55%, rgba(6, 21, 40, .96) 100%);
  color: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}
@media (min-width: 800px) {
  .videos-empty {
    grid-template-columns: 220px 1fr;
    padding: 36px 40px;
  }
}
.videos-empty-visual {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.videos-empty-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(249, 115, 22, .45), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(56, 140, 214, .35), transparent 60%),
    rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}
.videos-empty-play {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(249, 115, 22, .4);
}
.videos-empty-play svg { width: 30px; height: 30px; margin-left: 3px; }
.videos-empty-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}
.videos-empty-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
  max-width: 46ch;
  line-height: 1.55;
}
.videos-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.videos-empty-actions .btn-outline-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
}
.videos-empty-actions .btn-outline-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}
.video-facade { aspect-ratio: 16/9; background: #000; border-radius: var(--radius-card); overflow: hidden; }
.video-facade iframe { width: 100%; height: 100%; border: 0; }
.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 31, 61, .12);
}
.video-card-play {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #0b1220;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-card-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.video-card-play:hover img { transform: scale(1.04); }
.video-card-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .95);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease;
}
.video-card-play:hover .video-card-btn {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--orange-hover, #ea580c);
}
.video-card-btn svg { width: 26px; height: 26px; margin-left: 2px; }
.video-card-play.is-playing .video-card-btn,
.video-card-play.is-playing img { display: none; }
.video-card-play iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card-file {
  background: #0b1220;
  aspect-ratio: 16 / 9;
}
.video-card-file video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-card-body { padding: 14px 16px 16px; }
.video-card-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.3;
}
.video-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: #061528;
  color: #fff;
  padding: 56px 0 52px;
  border-bottom: 3px solid var(--orange);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #061528;
  background-image:
    linear-gradient(105deg, rgba(4, 13, 26, .88) 0%, rgba(10, 31, 61, .78) 38%, rgba(6, 21, 40, .62) 72%, rgba(18, 60, 102, .48) 100%),
    radial-gradient(ellipse 48% 70% at 92% 12%, rgba(249, 115, 22, .22), transparent 58%),
    radial-gradient(ellipse 42% 55% at 6% 88%, rgba(18, 60, 102, .35), transparent 60%),
    var(--page-hero-image, none);
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  pointer-events: none;
  filter: saturate(.92);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 26, .15) 0%, transparent 40%, rgba(4, 13, 26, .35) 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-hero .section-kicker {
  margin: 0 0 16px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  margin: 0 0 12px;
  max-width: 28ch;
  line-height: 1.12;
  letter-spacing: .015em;
}
.page-hero-sub,
.page-hero p {
  margin: 0;
  opacity: .9;
  max-width: 44ch;
  font-size: 1.05rem;
  line-height: 1.55;
}
.page-hero-accent {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(249, 115, 22, .45);
}

.contact-page { background: var(--light); }
.contact-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 960px) {
  .contact-layout { grid-template-columns: .9fr 1.1fr; gap: 28px; }
}
.contact-aside {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}
.contact-aside h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 10px;
  max-width: 14ch;
}
.contact-aside-text { color: var(--muted); margin: 0 0 22px; line-height: 1.6; }
.contact-channels { display: grid; gap: 10px; margin-bottom: 20px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--light);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, .4);
  box-shadow: var(--shadow-card);
}
.contact-channel--static { cursor: default; }
.contact-channel--static:hover { transform: none; box-shadow: none; border-color: var(--border); }
.contact-channel--phone { display: none; }
.contact-channel--desktop-phone { display: flex; }
.contact-channel--desktop-chat { display: flex; }
@media (max-width: 1024px), ((hover: none) and (pointer: coarse)) {
  .contact-channel--phone { display: flex; }
  .contact-channel--desktop-phone { display: none; }
}
.contact-social {
  margin: 4px 0 18px;
  display: grid;
  gap: 10px;
}
.contact-social > span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-social-row .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
.contact-social-row .social-btn svg { width: 16px; height: 16px; }
.contact-channel-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(249, 115, 22, .12); color: var(--orange); flex-shrink: 0;
}
.contact-channel-ico svg { width: 22px; height: 22px; }
.contact-channel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact-channel small { color: var(--muted); font-size: .84rem; word-break: break-word; }
.contact-quote-btn { width: 100%; min-height: 50px; border-radius: 12px; }
.contact-form-card { max-width: none; margin: 0; }
.contact-form-head { margin-bottom: 18px; }
.contact-form-head h2 { margin: 0 0 8px; font-size: 1.45rem; }
.contact-form-head p { margin: 0; color: var(--muted); }
.form-grid-2 {
  display: grid;
  gap: 0 16px;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}
.contact-success {
  text-align: center;
  padding: 28px 12px;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.contact-success-ico {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(30, 123, 62, .12); color: var(--success);
}
.contact-success-ico svg { width: 32px; height: 32px; }
.contact-success h2 { margin: 0; }
.contact-success p { margin: 0 0 8px; color: var(--muted); max-width: 36ch; }

body.form-success-open { overflow: hidden; }
.form-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
}
.form-success-overlay.is-hidden { display: none; }
.form-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 61, .52);
  backdrop-filter: blur(4px);
}
.form-success-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px 26px;
  text-align: center;
  box-shadow: 0 28px 70px rgba(10, 31, 61, .28);
  animation: form-success-in .28s ease;
}
@keyframes form-success-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.form-success-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #8A96A3;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.form-success-close svg { width: 18px; height: 18px; }
.form-success-close:hover,
.form-success-close:focus-visible {
  background: var(--light);
  color: var(--navy);
  outline: none;
}
.form-success-ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #E7F6EC;
  color: var(--success);
}
.form-success-card.is-error .form-success-ico {
  background: #FDECEC;
  color: var(--danger);
}
.form-success-ico svg { width: 36px; height: 36px; }
.form-success-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: .04em;
  color: var(--navy);
}
.form-success-card p {
  margin: 0 auto 22px;
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  text-transform: none;
  font-family: var(--font-body);
}
.form-success-cta {
  width: 100%;
  border-radius: 8px;
}

.about-page { background: #fff; }
.about-page > .container > .section-header {
  margin-bottom: 36px;
}
.about-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-layout { grid-template-columns: 1.05fr .95fr; gap: 40px; }
}
.about-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: 0 0 14px;
  max-width: 14ch;
}
.about-prose { max-width: none; margin-bottom: 20px; }
.about-prose p { font-size: 1.05rem; line-height: 1.7; }
.about-prose p + p { margin-top: 14px; }
.about-actions {
  margin-top: 0;
  justify-content: flex-start;
}
.about-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-trust);
  border: 1px solid var(--border);
}
.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.page-hero--about {
  padding: 72px 0 64px;
  border-bottom: 3px solid var(--orange);
}
.page-hero--about .page-hero-inner {
  max-width: 720px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-hero--about h1 {
  max-width: 14ch;
  margin: 0 0 16px;
  line-height: 1.08;
}
.page-hero--about .page-hero-sub {
  max-width: 40ch;
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.55;
  opacity: .9;
}
.page-hero--about .section-kicker {
  margin: 0 0 18px;
}
.page-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  max-width: 100%;
}
.page-hero-meta p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.4;
  opacity: .95;
  max-width: none;
}
.page-hero-meta strong {
  color: #ffb57a;
  font-weight: 700;
}
.page-hero-meta-flag {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.page-hero-actions {
  margin: 0;
  gap: 12px;
}
.page-hero-actions .btn-outline {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .06);
}

.about-usa-strip {
  display: none;
}
.about-usa-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}
.about-usa-flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.about-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 60, 102, .08);
  border: 1px solid rgba(18, 60, 102, .14);
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}
.about-mvv { background: var(--light); }
.about-mvv > .container > .section-header {
  margin-bottom: 36px;
}
.about-mvv-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
@media (min-width: 800px) {
  .about-mvv-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.about-mvv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-mvv-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.about-mvv-ico {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(249, 115, 22, .12); color: var(--orange);
  margin-bottom: 4px;
}
.about-mvv-ico svg { width: 24px; height: 24px; }
.about-mvv-kicker {
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.about-mvv-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.about-mvv-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 36ch;
}
.about-values {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px 24px;
  box-shadow: var(--shadow-card);
}
.about-values-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  text-align: left;
}
.about-values-titles {
  display: grid;
  gap: 4px;
  justify-items: start;
}
.about-values-titles h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
.about-values-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 700px) {
  .about-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-values-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 16px;
  border-radius: 14px;
  background: var(--light);
  border: 1px solid var(--border);
  text-align: left;
  transition: border-color .15s ease, transform .15s ease;
}
.about-values-grid li:hover {
  border-color: rgba(249, 115, 22, .35);
  transform: translateY(-2px);
}
.about-value-ico {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(249, 115, 22, .12); color: var(--orange);
  margin-top: 1px;
}
.about-value-ico svg { width: 16px; height: 16px; }
.about-values-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.02rem;
}
.about-values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

@media (max-width: 699px) {
  .about-actions { justify-content: center; width: 100%; }
  .about-badge-row { margin-inline: auto; }
  .about-copy { text-align: center; }
  .about-prose { text-align: left; }
}

.empty-page-state {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  justify-items: center;
}
.empty-page-ico {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(249, 115, 22, .12); color: var(--orange);
}
.empty-page-ico svg { width: 30px; height: 30px; }
.empty-page-state h2 { margin: 0; }
.empty-page-state p { margin: 0 0 8px; color: var(--muted); max-width: 40ch; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: clamp(18px, 4vw, 28px); box-shadow: var(--shadow-card); max-width: 820px; margin: 0 auto; }
.quote-page { background: var(--light); }
.quote-page .step {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.quote-form-card { max-width: 900px; }
.quote-trust-row {
  justify-content: flex-start;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.site-form .form-actions { margin-top: 4px; }
.recaptcha-wrap {
  margin: 4px 0 18px;
  min-height: 78px;
  overflow: auto;
  max-width: 100%;
}
.recaptcha-wrap .g-recaptcha { transform-origin: left top; }
.form-captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 4px 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #F8FAFC;
}
.form-captcha label {
  flex: 1 1 220px;
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}
.form-captcha input {
  width: 88px;
  min-height: 44px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.blog-article { max-width: 820px; margin: 0 auto; }
.blog-article-img {
  border-radius: 16px;
  margin-bottom: 28px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}
.blog-article-dek {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 22px;
}
.blog-article-body { margin-bottom: 8px; }
.blog-article-blocks { margin: 28px 0 8px; }
.blog-article-tags {
  margin: 28px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .88rem;
  color: var(--muted);
}
.blog-article-tags span:first-child {
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-right: 6px;
}
.blog-breadcrumbs {
  max-width: 820px;
  margin: 0 auto 18px;
}
.blog-breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  font-size: .88rem;
  color: var(--muted);
}
.blog-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: rgba(10, 31, 61, .35);
}
.blog-breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.blog-breadcrumbs a:hover { color: var(--orange); }
.blog-breadcrumbs [aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
  max-width: min(420px, 70vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-back {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cta {
  margin: 28px 0;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, .28);
  background:
    linear-gradient(135deg, rgba(10, 31, 61, .96), rgba(18, 60, 102, .92)),
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, .35), transparent 45%);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.blog-cta--inline { margin: 32px 0; }
.blog-cta--article { margin: 36px 0 8px; }
.blog-cta--index {
  margin: 40px auto 0;
  max-width: 920px;
}
.blog-cta-inner { padding: 26px 28px; }
.blog-cta-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffb57a;
}
.blog-cta-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}
.blog-cta-text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .88);
  max-width: 58ch;
  line-height: 1.55;
}
.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-cta .btn-outline-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.blog-cta .btn-outline-dark:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}
@media (max-width: 699px) {
  .blog-cta-inner { padding: 22px 18px; }
  .blog-cta-actions .btn { width: 100%; justify-content: center; }
  .blog-back .btn { width: 100%; justify-content: center; }
}


.service-detail-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 960px) {
  .service-detail-layout { grid-template-columns: 1.2fr .8fr; gap: 36px; }
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18, 60, 102, .08);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.service-detail-copy h3 { margin-top: 1.4em; }
.service-process { margin-top: 36px; }
.service-process h2,
.service-includes h2 { margin: 0 0 8px; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.service-process-lead { color: var(--muted); margin: 0 0 18px; max-width: 52ch; }
.service-process-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 700px) {
  .service-process-grid { grid-template-columns: 1fr 1fr; }
}
.service-process-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 18px 16px;
  position: relative;
}
.service-process-num {
  width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  margin-bottom: 10px;
}
.service-process-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.service-process-card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.service-includes { margin-top: 32px; }
.service-includes-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-includes-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}
.service-includes-list svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); margin-top: 1px;
}
.service-detail-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}
.service-detail-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.service-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.service-cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
}
.service-cta-card h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  max-width: 14ch;
}
.service-cta-card > p { margin: 0 0 16px; color: var(--muted); }
.service-cta-stack { display: grid; gap: 10px; }
.service-cta-stack .btn { width: 100%; justify-content: center; }
.service-contact {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-contact-label {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-contact-channels {
  display: grid;
  gap: 8px;
}
.service-contact-channels .contact-channel {
  margin: 0;
  min-height: 0;
  padding: 10px 12px;
}
.service-contact-channels .contact-channel-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.service-contact-channels .contact-channel-ico svg { width: 18px; height: 18px; }
.service-contact-channels .contact-channel strong { font-size: 12px; }
.service-contact-channels .contact-channel small {
  font-size: .78rem;
  line-height: 1.35;
  word-break: break-word;
}
/* Phone number on desktop; Call/Text only on tablet & mobile */
.service-contact-phone { display: flex; }
@media (max-width: 1024px), ((hover: none) and (pointer: coarse)) {
  .service-contact-phone { display: none; }
}
.service-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.service-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--light);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.service-channel svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.service-channel:hover {
  border-color: rgba(249, 115, 22, .45);
  color: var(--orange);
  background: #fff;
}
.service-channel:hover svg { color: var(--orange); }
/* Call / Text only on tablet & mobile — desktop keeps Quote / Contact / WA / Email */
.service-channel--phone { display: none; }
@media (max-width: 1024px), ((hover: none) and (pointer: coarse)) {
  .service-channel--phone { display: inline-flex; }
}
.service-channel--wa:hover {
  border-color: rgba(37, 211, 102, .45);
  color: #128C7E;
}
.service-channel--wa:hover svg { color: #128C7E; }
.btn-whatsapp {
  background: #1fa855;
  color: #fff !important;
  border: 1px solid #1fa855;
}
.btn-whatsapp:hover { background: #18964a; border-color: #18964a; }
.btn-outline-light {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.service-social {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.service-social > span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.service-social-btn svg { width: 18px; height: 18px; }
.service-triggers {
  background: linear-gradient(120deg, #061528 0%, #0A1F3D 45%, #123C66 100%);
  color: #fff;
  padding: 28px 0;
}
.service-triggers-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.service-triggers h2 { margin: 0 0 4px; color: #fff; font-size: clamp(1.25rem, 2.4vw, 1.7rem); }
.service-triggers p { margin: 0; opacity: .88; }
.service-triggers-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.form-check--inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
  font-size: .85rem;
}
.inline-form { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.field-hint { display: block; margin-top: 6px; color: var(--muted); font-size: .82rem; }
.file-field {
  border: 1px dashed rgba(249, 115, 22, .45);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
}
.file-field input[type="file"] {
  width: 100%;
  font: inherit;
  color: var(--ink);
}
.quote-file-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.quote-file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: .9rem;
}
.quote-file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quote-file-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(185, 28, 28, .92);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.quote-file-remove:hover { background: #991B1B; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; font: inherit; background: #fff;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: 3px solid rgba(249,115,22,.35); border-color: var(--orange); }
.service-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.service-pick label { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; display: block; position: relative; }
.service-pick input { position: absolute; opacity: 0; pointer-events: none; }
.service-pick img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-pick span { display: block; padding: 8px 10px; font-size: .85rem; font-weight: 600; }
.service-pick input:checked + span, .service-pick label:has(input:checked) { outline: 2px solid var(--orange); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.alert { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; }
.alert-success { background: #e7f5ec; color: #1e7b3e; }
.alert-error { background: #fbeaea; color: #b3261e; }
.steps { display: grid; gap: 16px; margin: 28px 0 36px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--light); border-radius: var(--radius-card); padding: 18px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; margin-bottom: 10px; }
@media (max-width: 639px) {
  .site-form .form-actions .btn,
  .site-form > .btn {
    width: 100%;
    justify-content: center;
  }
  .quote-trust-row { justify-content: center; text-align: center; }
  .contact-form-card,
  .quote-form-card,
  .privacy-form-card { border-radius: 14px; }
  .recaptcha-wrap .g-recaptcha { transform: scale(.92); }
}

.site-footer { background: #071527; color: rgba(255,255,255,.85); padding: 0 0 24px; margin-top: 40px; }
.footer-map { margin-bottom: 0; }
.footer-map iframe { width: 100%; height: 280px; border: 0; display: block; }

.footer-social-bar {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.footer-social-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-flags { display: flex; align-items: center; gap: 8px; }
.footer-flag-label {
  font-family: var(--font-display); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-left: 6px;
}

.footer-socials { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-socials .social-btn { width: 36px; height: 36px; border-radius: 8px; }
.footer-socials .social-btn svg { width: 17px; height: 17px; }

.footer-grid { display: grid; gap: 32px; padding-top: 42px; padding-bottom: 10px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.45fr 1fr 1fr 1fr; } }
.footer-col h4 {
  color: #fff; font-size: .95rem; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.site-footer li { margin-bottom: 10px; }

.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo img { height: 96px; width: auto; max-width: min(420px, 100%); }
.footer-tagline {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  color: var(--orange); font-size: 13px; margin: 0 0 18px;
}
.footer-contact-list { display: grid; gap: 12px; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; margin: 0; }
.footer-links a { display: inline-flex; align-items: center; gap: 12px; }
.fi-svg {
  width: 24px; height: 24px; flex-shrink: 0; color: var(--orange);
}
.footer-svc-ico {
  width: 24px; height: 24px; flex-shrink: 0; color: var(--orange);
  display: inline-grid; place-items: center;
}
.footer-svc-ico svg,
.footer-svc-ico .service-icon-img {
  width: 24px; height: 24px; display: block;
}
.footer-svc-ico .service-icon-img { object-fit: contain; }
.footer-contact-list .fi {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(249,115,22,.15); color: var(--orange);
  display: grid; place-items: center; flex-shrink: 0;
}
.footer-contact-list .fi svg { width: 18px; height: 18px; }
.footer-contact-list small { color: rgba(255,255,255,.55); }
.footer-cta {
  margin-top: 18px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(249, 115, 22, .35);
}
.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, .45);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding: 22px 0 8px;
  font-size: .9rem;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bottom-left p { margin: 0; color: rgba(255,255,255,.78); }
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s, color .2s;
}
.back-top-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  flex-shrink: 0;
}
.back-top-ico svg { width: 18px; height: 18px; }
.back-top:hover {
  background: rgba(249, 115, 22, .16);
  border-color: rgba(249, 115, 22, .55);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(249, 115, 22, .28);
}
.back-top:hover .back-top-ico { background: var(--orange-hover); }

.agency-credit {
  background: #050e1c;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  padding: 16px 0 18px;
  text-align: center;
}
.agency-credit-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.agency-credit-inner p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.45;
  text-align: center;
}
.agency-credit-inner p + p { margin-top: 0; }
.agency-credit a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.agency-credit a:hover { color: var(--orange); }

/* Bottom dock — mobile + desktop (São Bento style) */
.dock-nav {
  position: fixed;
  left: calc(50% + 28px);
  transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  width: min(640px, calc(100% - 100px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(10, 31, 61, .16);
  padding: 8px 10px 10px;
}
.dock-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 14px;
  transition: color .15s, background .15s, transform .15s;
}
.dock-item svg { width: 22px; height: 22px; color: var(--blue, #123C66); }
.dock-item:hover,
.dock-item.active {
  color: var(--orange);
  background: rgba(249, 115, 22, .08);
}
.dock-item.active svg,
.dock-item:hover svg { color: var(--orange); }
.dock-cta { color: var(--navy); }
.dock-cta svg { color: var(--orange); }
/* Call only on phones/tablets (incl. large tablets / touch devices) — desktop uses Quote */
.dock-cta--phone { display: none; pointer-events: none; }
.dock-cta--desktop { display: flex; }
@media (max-width: 1024px), ((hover: none) and (pointer: coarse)) {
  .dock-cta--phone {
    display: flex;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: rgba(249, 115, 22, .25);
  }
  .dock-cta--desktop { display: none; }
}

/* Round chat orb — left of dock */
.dock-chat {
  position: absolute;
  left: -78px;
  bottom: 8px;
  top: auto;
  width: 64px;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
}
.dock-chat:hover,
.dock-chat:focus-visible {
  background: transparent;
  transform: translateY(-2px);
}
.dock-chat-orb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(249, 115, 22, .45);
  border: 3px solid #fff;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.dock-chat:hover .dock-chat-orb,
.dock-chat:focus-visible .dock-chat-orb {
  background: var(--orange-hover);
  box-shadow: 0 14px 28px rgba(249, 115, 22, .55);
}
.dock-chat-orb svg { width: 26px; height: 26px; color: #fff; }
.dock-chat.is-active .dock-chat-orb {
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(10, 31, 61, .4);
}

/* Support chat popup */
.support-chat[hidden] { display: none !important; }
.support-chat {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px 18px calc(118px + env(safe-area-inset-bottom, 0px)) 16px;
  pointer-events: none;
}
.support-chat-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(6, 16, 32, .48);
  backdrop-filter: blur(3px);
  cursor: pointer;
  pointer-events: auto;
}
.support-chat-panel {
  position: relative;
  z-index: 1;
  width: min(400px, calc(100vw - 24px));
  max-height: min(680px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  background: #f4f7fb;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(4, 13, 26, .4);
  animation: supportPop .22s ease;
  pointer-events: auto;
}
@keyframes supportPop {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.support-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 16px 18px;
  background: linear-gradient(135deg, #061528 0%, #0A1F3D 45%, #123C66 100%);
  color: #fff;
}
.support-chat-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.support-chat-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.support-chat-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.support-chat-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  font-size: .78rem;
  opacity: .92;
}
.support-chat-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .28);
}
.support-chat-x {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.support-chat-x:hover { background: rgba(249, 115, 22, .85); }
.support-chat-body {
  flex: 1;
  overflow: auto;
  padding: 18px 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 115, 22, .08), transparent 42%),
    #f4f7fb;
}
.support-bubble {
  max-width: 92%;
  background: #fff;
  border-radius: 16px 16px 16px 4px;
  padding: 14px 16px;
  box-shadow: 0 8px 22px rgba(10, 31, 61, .08);
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.5;
}
.support-bubble p { margin: 0 0 8px; }
.support-bubble p:last-of-type { margin-bottom: 6px; }
.support-bubble time {
  display: block;
  text-align: right;
  font-size: .72rem;
  color: var(--muted);
}
.support-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.support-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.support-action:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, .4);
  box-shadow: var(--shadow-trust);
}
.support-action--primary {
  border-color: rgba(249, 115, 22, .35);
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}
.support-action-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(18, 60, 102, .1);
  color: var(--blue);
  flex-shrink: 0;
}
.support-action--primary .support-action-ico,
.support-action:hover .support-action-ico {
  background: rgba(249, 115, 22, .14);
  color: var(--orange);
}
.support-action-ico svg { width: 22px; height: 22px; }
.support-action-text { display: grid; gap: 2px; min-width: 0; flex: 1; }
.support-action-text strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}
.support-action-text small { color: var(--muted); font-size: .8rem; }
.support-action-arrow { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
/* Call / SMS only on mobile & tablet */
.support-action--phone { display: none; }
.support-action--desktop-chat { display: flex; }
@media (max-width: 1024px), ((hover: none) and (pointer: coarse)) {
  .support-action--phone { display: flex; }
  .support-action--desktop-chat { display: none; }
}
.support-chat-foot {
  padding: 12px 14px 16px;
  background: #fff;
  border-top: 1px solid rgba(10, 31, 61, .08);
}
.support-chat-cta {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, .3);
}

@media (min-width: 900px) {
  .support-chat {
    padding: 28px 28px calc(130px + env(safe-area-inset-bottom, 0px)) 28px;
    justify-content: flex-start;
  }
  .support-chat-panel {
    width: 420px;
    max-height: min(720px, calc(100vh - 150px));
    /* Align above the orange orb (left of centered dock) */
    margin-left: max(0px, calc(50vw - min(360px, 50vw) - 120px));
  }
}

.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;
}

@media (min-width: 900px) {
  .dock-nav {
    bottom: 22px;
    width: min(720px, calc(100% - 140px));
    left: calc(50% + 36px);
    padding: 10px 14px 12px;
  }
  .dock-item { font-size: 12px; padding: 10px 6px; }
  .dock-item svg { width: 24px; height: 24px; }
  .dock-chat { left: -72px; bottom: 8px; width: 64px; }
  .dock-chat-orb { width: 54px; height: 54px; }
}
@media (max-width: 380px) {
  .dock-nav {
    left: 50%;
    width: calc(100% - 24px);
    padding-left: 8px;
  }
  .dock-chat {
    left: 8px;
    bottom: calc(100% + 10px);
  }
}

/* Legacy chrome removed */
.bottom-page-nav,
.mobile-action-bar,
.support-fab { display: none !important; }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(110px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-trust);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner-copy { flex: 1 1 240px; min-width: 0; }
.cookie-banner-kicker {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.cookie-banner-copy p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.cookie-banner-copy a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-gpc {
  margin-top: 8px !important;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(18, 60, 102, .08);
  color: var(--navy) !important;
  font-size: .85rem !important;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (max-width: 899px) {
  .cookie-banner {
    padding: 12px 14px;
    gap: 10px;
    max-height: min(42vh, 280px);
    overflow: auto;
  }
  .cookie-banner-copy p { font-size: .82rem; }
  .cookie-banner-kicker { font-size: 12px; margin-bottom: 4px; }
}
@media (min-width: 900px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: calc(110px + env(safe-area-inset-bottom, 0px));
    max-width: 460px;
  }
}
.cookie-banner[hidden] { display: none !important; }

.prose img { max-width: 100%; height: auto; border-radius: 10px; }
.prose table { width: 100%; border-collapse: collapse; }
.prose table th,
.prose table td { border: 1px solid var(--border); padding: 8px 10px; }
.prose { overflow-wrap: anywhere; }

/* Legal documents */
.legal-page { padding-top: 36px; }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 120px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.legal-toc-label {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.legal-toc a {
  text-decoration: none;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.35;
}
.legal-toc a:hover { color: var(--orange); }
.legal-meta {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.4;
}
.legal-meta strong { color: var(--navy); font-weight: 700; }
.legal-prose { max-width: none; }
.legal-section {
  margin: 0 0 28px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  scroll-margin-top: 130px;
}
.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}
.legal-section h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  color: var(--blue);
}
.legal-section p,
.legal-section li { color: var(--ink); }
.legal-section ul {
  list-style: disc;
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-section li { margin: 0 0 .45rem; }
.legal-callout {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10,31,61,.04), rgba(249,115,22,.08));
  border: 1px solid rgba(249,115,22,.22);
}
.legal-callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: .85rem;
}
.legal-callout ul { margin-bottom: 0; }
.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 14px 0 4px;
}
.legal-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  margin: 0;
  font-size: .9rem;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: rgba(10,31,61,.05);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal-disclaimer {
  margin-top: 8px;
  font-size: .85rem;
  color: var(--muted);
}

.privacy-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.privacy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.privacy-card h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.privacy-card p,
.privacy-card li { color: var(--ink); font-size: .95rem; }
.privacy-card ul {
  list-style: disc;
  margin: 10px 0 0;
  padding-left: 1.15rem;
}
.privacy-card-note {
  margin-top: 12px;
  color: var(--muted) !important;
  font-size: .88rem !important;
}
.privacy-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-bottom: 28px;
}
.privacy-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.privacy-panel--muted {
  background: linear-gradient(160deg, #0A1F3D, #123C66);
  color: #fff;
  border: 0;
}
.privacy-panel--muted h2 { color: #fff; }
.privacy-panel--muted a { color: #ffb57a; }
.privacy-panel--muted .privacy-card-note { color: rgba(255,255,255,.75) !important; }
.privacy-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.cookie-pref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}
.privacy-form-card { max-width: 920px; margin: 0 auto; }
.privacy-form-card h2 { margin-bottom: 6px; }
.privacy-form .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-fineprint {
  margin: 0 0 16px;
  font-size: .86rem;
  color: var(--muted);
}
@media (max-width: 999px) {
  .legal-layout,
  .privacy-cards,
  .privacy-split,
  .privacy-form .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .legal-toc { position: static; }
  .legal-section { padding: 18px; }
}

.content-blocks { display: grid; gap: 28px; margin-top: 8px; }
.content-block-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1.15rem;
  margin: 0 0 12px;
}
.content-block-figure { margin: 0; }
.content-block-figure img {
  width: 100%; border-radius: var(--radius-card);
  display: block; max-height: 480px; object-fit: cover;
}
.content-block-figure figcaption {
  margin-top: 8px; color: var(--muted); font-size: .9rem;
}
.content-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.content-gallery-item {
  position: relative;
  display: block; width: 100%; padding: 0; border: 0; cursor: zoom-in;
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 1; background: #eef2f5;
  font: inherit; color: inherit;
}
.content-gallery-item--single {
  aspect-ratio: auto;
  max-height: 480px;
}
.content-gallery-item--single img {
  max-height: 480px;
}
.content-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .35s ease, opacity .25s ease;
}
.content-gallery-item:hover img,
.content-gallery-item:focus-visible img { transform: scale(1.06); opacity: .92; }
.content-gallery-item .gallery-zoom-hint {
  position: absolute; right: 10px; bottom: 10px; z-index: 1;
}
.content-gallery-item:hover .gallery-zoom-hint,
.content-gallery-item:focus-visible .gallery-zoom-hint { opacity: 1; }
.content-block-figure .content-gallery-item { border-radius: var(--radius-card); }
.content-video {
  border-radius: var(--radius-card); overflow: hidden; background: #000;
}
.content-video video { width: 100%; display: block; max-height: 480px; }
.content-channel, .content-pdf { margin-top: 4px; }
.content-pdf-note { margin: 10px 0 0; color: var(--muted); font-size: .9rem; }
.content-blocks-section { padding-top: 0; }

@media (max-width: 899px) {
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
  body.nav-open .site-header {
    z-index: 90;
  }
  body.nav-open .dock-nav,
  body.nav-open .support-chat {
    visibility: hidden;
    pointer-events: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 100;
  }
  .nav-toggle[aria-expanded="true"] span { background: #fff; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(7, 21, 39, .97);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .28s ease;
    padding: max(72px, calc(env(safe-area-inset-top, 0px) + 64px)) 20px calc(28px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 95;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav .nav-link {
    color: #fff;
    font-size: 1.12rem;
    border: 0;
    background: transparent;
    padding: 14px 16px;
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    border-bottom: 0;
    min-height: 52px;
  }
  .site-nav .nav-link:hover,
  .site-nav .nav-link.active { background: rgba(249,115,22,.18); color: #fff; }
  .site-nav .nav-link .nav-ico { color: var(--orange); width: 28px; height: 28px; }
  .nav-item.has-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-item.has-dropdown::before { display: none; }
  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }
  .nav-dropdown--services {
    min-width: 0;
    max-height: none;
    overflow: visible;
  }
  /* Mobile: accordion only via .is-open — never hover/focus-within */
  .nav-item.has-dropdown:hover > .nav-dropdown,
  .nav-item.has-dropdown:focus-within > .nav-dropdown { display: none; }
  .nav-item.has-dropdown.is-open > .nav-dropdown {
    display: grid;
    gap: 2px;
  }
  .nav-item.has-dropdown.is-open > .nav-dropdown-toggle {
    background: rgba(249,115,22,.16);
    color: #fff;
  }
  .nav-dropdown-link {
    color: #fff;
    padding: 12px 14px;
    min-height: 46px;
    border-radius: 10px;
  }
  .nav-dropdown-link svg { color: var(--orange); }
  .nav-dropdown-link:hover,
  .nav-dropdown-link.active { background: rgba(249,115,22,.18); color: #fff; }
  .nav-quote {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
    min-height: 52px;
    flex-shrink: 0;
  }
  .topbar { display: none; }

  .header-mobile-tools {
    display: block;
    background: var(--navy);
    border-bottom: 0;
  }
  .header-mobile-tools-inner { padding-top: 10px; padding-bottom: 10px; }
  .mobile-flags { gap: 6px; }
  .mobile-flags .usa-flag-gif {
    width: 34px; height: 22px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.25);
  }
  .mobile-socials { gap: 7px; }
  .mobile-socials .topbar-social { width: 30px; height: 30px; border-radius: 7px; }
  .mobile-socials .topbar-social svg { width: 15px; height: 15px; }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand-logo { height: 86px; max-width: min(360px, 80vw); }
  .footer-logo img { height: 78px; }

  .container { padding-left: 22px; padding-right: 22px; }

  .hero-slides,
  .hero-slide {
    /* Match mobile artwork (1400×788 / 1200×675 ≈ 16:9) */
    aspect-ratio: 1200 / 675;
    min-height: 0;
    max-height: inherit;
  }
  .hero-slider {
    max-height: calc(100svh - 148px - env(safe-area-inset-bottom, 0px));
  }
  .hero-slide-media img {
    object-position: center bottom;
  }
  .hero-slide::after {
    background: linear-gradient(180deg, rgba(10,31,61,.72) 0%, rgba(10,31,61,.82) 60%, rgba(10,31,61,.92) 100%);
  }
  .hero-slide--media-only::after {
    background: linear-gradient(180deg, rgba(10,31,61,.06) 0%, transparent 35%, transparent 68%, rgba(10,31,61,.18) 100%);
  }
  .hero-slide-content {
    padding: 40px 28px 74px;
    max-width: 100%;
  }
  .hero-slide-content h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
    line-height: 1.2;
    overflow-wrap: break-word;
  }
  .hero-slide-content .hero-sub { font-size: .94rem; padding-right: 8px; }
  .hero-slide-content .hero-actions {
    flex-direction: column; align-items: stretch; gap: 10px; max-width: min(280px, 100%);
  }
  .hero-slide-content .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-nav { width: 36px; height: 36px; }
  .hero-nav svg { width: 18px; height: 18px; }
  .hero-nav--prev { left: 6px; }
  .hero-nav--next { right: 6px; }
  .hero-dots { bottom: 12px; gap: 8px; }
  .hero-slider + .trust-strip { margin-top: 20px; }

  .hero {
    min-height: 72vh;
    background-position: center top;
    align-items: flex-start;
    overflow-x: clip;
  }
  .hero > .container {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero-content {
    padding: 36px 0 120px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .hero .eyebrow {
    letter-spacing: .12em;
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: .85rem;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .hero-sub {
    font-size: .94rem;
    line-height: 1.55;
    max-width: 100%;
    padding-right: 44px;
    margin: 0;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
    gap: 10px;
    max-width: min(280px, 100%);
  }
  .hero-actions .btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .eyebrow { letter-spacing: .14em; font-size: 12px; }
}
