@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

/* Green Group Logistics — design system */
:root {
  --color-bg: #000000;
  --color-surface: #141816;
  --color-ink: #e8f0ec;
  --color-ink-muted: #a3b5ad;
  --color-heading: #f2faf5;
  --color-text-on-light: #0f1f18;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-green-deep: #0d2818;
  --color-green-mid: #1b4d32;
  --color-accent: #3d9a5c;
  --color-accent-bright: #6ecf8c;
  --color-warm: #c9a227;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  background-image: radial-gradient(ellipse 100% 60% at 50% -10%, rgba(61, 154, 92, 0.08), transparent 52%);
}

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

/* In-body backlink to corporate site (blog copy, hero eyebrow, etc.) */
.company-home-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.company-home-link:hover {
  color: var(--color-green-mid);
}

.hero-video-content .company-home-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.hero-video-content .company-home-link:hover {
  color: #fff;
  text-decoration-color: var(--color-accent-bright);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--color-green-deep);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--color-green-mid), var(--color-accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 14px rgba(27, 77, 50, 0.35);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  transform: rotate(-6deg);
}

.logo-accent {
  color: var(--color-green-mid);
  font-weight: 600;
}

.logo.logo--split {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo.logo--split .logo__mark,
.logo.logo--split .logo__google {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo.logo--header-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo.logo--header-brand .logo__home {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-img.logo-img--header {
  height: clamp(44px, 5.5vw, 56px);
  width: auto;
  max-width: min(220px, 52vw);
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

.site-footer .logo.logo--split .logo__google {
  color: #fff;
}

.site-footer .logo.logo--split .logo__google:hover {
  color: var(--color-accent-bright);
}

.logo-footer .logo-mark {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle-bar {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--color-ink-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-link-btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-ink-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link-btn::after {
  content: "▾";
  font-size: 0.7rem;
  opacity: 0.8;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 290px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.65rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
  z-index: 120;
}

.dropdown-menu a {
  display: block;
  padding: 0.62rem 0.72rem;
  border-radius: 9px;
  border: none;
  color: var(--color-ink);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(110, 207, 140, 0.12);
}

.mega-menu {
  min-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.45rem;
}

.nav-item.is-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .nav-item.has-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.65rem;
    z-index: 119;
  }

  .nav-item.has-dropdown:hover > .dropdown-menu,
  .nav-item.has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.mega-menu--blog {
  min-width: 560px;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-accent-bright);
}

.nav-list a[aria-current="page"] {
  color: var(--color-green-mid);
  border-color: var(--color-accent);
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem !important;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.nav-auth-btn--outline {
  color: var(--color-ink) !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.nav-auth-btn--outline:hover,
.nav-auth-btn--outline:focus-visible {
  border-color: var(--color-green-mid) !important;
  color: var(--color-green-mid) !important;
}

.nav-auth-btn--primary {
  background: #1f8f3a !important;
  color: #fff !important;
  border-color: #1f8f3a !important;
}

.nav-auth-btn--primary:hover,
.nav-auth-btn--primary:focus-visible {
  background: #166f2e !important;
  border-color: #166f2e !important;
  color: #fff !important;
}

button.nav-auth-btn {
  font: inherit;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.06em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.nav-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.05rem;
  line-height: 1.15;
}

.nav-phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-green-mid);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  color: var(--color-accent-bright);
}

.nav-social-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Match footer .social-row — same green circles, white glyphs (not brand colors) */
.nav-social-top a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(61, 154, 92, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  font-size: 0;
  transition: background 0.15s ease, filter 0.15s ease;
}

.nav-social-top a:hover,
.nav-social-top a:focus-visible {
  background: var(--color-accent);
  filter: none;
}

.nav-social-top svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* Mobile header social strip (cloned from nav by JS) — matches footer .social-row */
.header-social-bar {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-header {
    z-index: 200;
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0;
  }

  .logo.logo--header-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-social-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 0.35rem;
  }

  .header-social-bar a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(61, 154, 92, 0.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.15s ease, filter 0.15s ease;
  }

  .header-social-bar a:hover,
  .header-social-bar a:focus-visible {
    background: var(--color-accent);
    filter: none;
  }

  .header-social-bar svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
  }

  .nav-toggle {
    order: 3;
    flex: 0 0 auto;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle-bar,
  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
    background: #fff;
  }

  /* In-flow panel: pushes page down, solid black, white labels */
  .site-nav {
    order: 4;
    flex: 1 1 100%;
    position: static;
    inset: auto;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transform: none;
    pointer-events: none;
    padding: 0 1rem;
    background: #000;
    border-top: 0 solid rgba(255, 255, 255, 0.1);
    transition: max-height 0.38s ease, padding 0.28s ease, border-top-width 0.2s ease;
  }

  .site-nav.is-open {
    max-height: min(82vh, 680px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.65rem 1rem 1.15rem;
    pointer-events: auto;
    border-top-width: 1px;
  }

  a.nav-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.25rem 0;
    -webkit-tap-highlight-color: rgba(27, 77, 50, 0.18);
  }

  .nav-phones {
    align-items: flex-start;
    width: 100%;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-phones a.nav-phone {
    min-height: 40px;
    color: var(--color-accent-bright) !important;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-link-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: #fff !important;
  }

  .nav-list a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: none;
    color: #fff !important;
  }

  .nav-social-top {
    display: none !important;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible,
  .nav-link-btn:hover,
  .nav-link-btn:focus-visible {
    color: var(--color-accent-bright) !important;
    background: rgba(255, 255, 255, 0.07);
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border-radius: 10px;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 0 0.35rem;
    display: none;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: rgba(110, 207, 140, 0.18);
    color: #fff !important;
  }

  .mega-menu {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .nav-item.is-open > .dropdown-menu {
    display: grid;
  }

  .nav-auth {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-auth-btn {
    flex: 1;
    width: auto;
    text-align: center;
    padding: 0.72rem 0.65rem !important;
    font-size: 0.72rem !important;
  }

  .nav-auth-btn--outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }
}

.tools-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tool-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.tool-card h3 {
  margin-bottom: 0.45rem;
}

.tool-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.tool-form .row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .tool-form .row.two {
    grid-template-columns: 1fr 1fr;
  }

  .tool-form .row.three {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
}

.tool-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--color-ink);
  font-weight: 600;
}

.tool-form input,
.tool-form select {
  font: inherit;
  padding: 0.62rem 0.78rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text-on-light);
}

.tool-result {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-ink);
  background: rgba(61, 154, 92, 0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  min-height: 2.2rem;
}

.service-center-tool {
  display: grid;
  gap: 1.1rem;
}

.service-center-intro {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 760px) {
  .service-center-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

.service-center-intro h2,
.service-center-intro p {
  margin: 0;
}

.service-center-intro p {
  margin-top: 0.35rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.service-center-search .btn {
  width: 100%;
  min-height: 42px;
}

.service-center-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 920px) {
  .service-center-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    align-items: start;
  }
}

.service-center-results {
  display: grid;
  gap: 0.85rem;
}

.service-center-card {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text-on-light);
  box-shadow: var(--shadow-sm);
}

.service-center-card.is-primary {
  border-color: rgba(61, 154, 92, 0.55);
  box-shadow: 0 16px 34px rgba(22, 83, 44, 0.12);
}

.service-center-card h3 {
  margin: 0;
  color: var(--color-text-on-light);
}

.service-center-meta,
.service-center-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
}

.service-center-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: rgba(31, 143, 58, 0.14);
  color: #0b3d1c;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-center-card p {
  margin: 0;
  color: var(--color-text-on-light);
  line-height: 1.55;
}

.service-center-card a {
  color: inherit;
}

.service-center-card .btn-primary {
  color: #fff;
  background: #063b1c;
  border-color: #063b1c;
}

.service-center-card .btn-primary:hover,
.service-center-card .btn-primary:focus-visible {
  color: #fff;
  background: #0a5428;
  border-color: #0a5428;
}

.service-center-card .btn-ghost {
  color: #137a36;
  background: #fff;
  border-color: rgba(19, 122, 54, 0.45);
}

.service-center-card .btn-ghost:hover,
.service-center-card .btn-ghost:focus-visible {
  color: #0b3d1c;
  background: rgba(31, 143, 58, 0.1);
  border-color: rgba(19, 122, 54, 0.7);
}

.service-center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-center-map {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #f6f8f5;
  box-shadow: var(--shadow-sm);
}

.service-center-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.hero-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 0;
}

.page-hero-tools .container {
  position: relative;
}

.hero-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  transition: background 0.15s ease, color 0.15s ease;
}

.hero-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero-social a:hover,
.hero-social a:focus-visible {
  background: #222;
  color: #fff;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

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

.lead {
  font-size: 1.15rem;
  max-width: 36rem;
}

.lead.narrow {
  max-width: 40rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13, 40, 24, 0.04) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b4d32' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero-copy .lead {
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: 0.9rem;
  color: var(--color-ink-muted);
}

.trust-row strong {
  color: var(--color-green-mid);
  display: block;
  font-size: 1rem;
}

.hero-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--color-warm), var(--color-accent), var(--color-green-mid));
}

.hero-card-inner {
  padding: 1.75rem 1.75rem 2rem;
}

.hero-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--color-ink-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(61, 154, 92, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-green-deep);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-green-mid);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent-bright);
  border-color: rgba(110, 207, 140, 0.45);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--color-accent-bright);
  background: rgba(110, 207, 140, 0.1);
}

.hero-slide-inner .btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-slide-inner .btn-ghost-light:hover,
.hero-slide-inner .btn-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.cta-band-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band-link:hover {
  opacity: 0.92;
}

.btn-large {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.text-link {
  color: var(--color-green-mid);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 77, 50, 0.35);
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--color-green-mid);
}

/* Prominent pill CTA (logo green, white type) — tool cards & option grid */
.text-link.text-link--solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.75rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  border-bottom: none;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.text-link.text-link--solid:hover,
.text-link.text-link--solid:focus-visible {
  background: var(--color-green-mid);
  color: #fff;
  border-bottom: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61, 154, 92, 0.4);
}

.text-link.text-link--solid:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-accent-bright);
}

.mt-sm {
  margin-top: 1rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.04);
  border-block: 1px solid var(--color-border);
}

.trust-banner-section {
  padding-top: 1rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: #0a0a0a;
  border-top: 1px solid #2a2a2a;
}

.stats-section + .trust-banner-section {
  border-top: none;
  padding-top: 0.5rem;
}

.trust-banner-image {
  display: block;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.trust-copy {
  max-width: 1024px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  text-align: center;
}

.trust-copy-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.trust-copy-value {
  display: block;
  font-family: var(--font-display);
  color: #23345d;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.trust-copy-label {
  display: block;
  color: #3f8ac7;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
}

.trust-copy-title {
  margin: 0.2rem 0 0.5rem;
  color: #23345d;
}

.trust-copy-rule {
  width: 76px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #e9c871;
}

.trust-copy-text {
  max-width: 52rem;
  margin: 0 auto;
  color: #24364a;
}

/* Service center lookup — PM program photo marquee (single page) */
.pm-marquee-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
}

.pm-marquee-heading-wrap {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pm-marquee-heading {
  margin: 0;
  max-width: 56rem;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-heading);
}

.pm-marquee-outer {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.pm-marquee {
  outline: none;
}

.pm-marquee-track {
  display: flex;
  width: max-content;
  animation: pm-marquee-scroll 72s linear infinite;
  will-change: transform;
}

.pm-marquee:hover .pm-marquee-track {
  animation-play-state: paused;
}

.pm-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 1rem;
}

.pm-marquee-slide {
  flex: 0 0 auto;
  width: min(420px, 88vw);
  aspect-ratio: 16 / 10;
  min-height: 200px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: #111;
}

@media (min-width: 900px) {
  .pm-marquee-slide {
    width: min(460px, 32vw);
    min-height: 240px;
  }
}

.pm-marquee-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

@media (prefers-reduced-motion: reduce) {
  .pm-marquee-track {
    animation: none;
  }
}

/* Help Center — featured YouTube */
.help-video-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
}

.help-video-inner {
  max-width: 1100px;
  margin-inline: auto;
}

.help-video-heading {
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
}

.help-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: #111;
}

.help-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.help-video-link-out {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}

.help-video-link-out a {
  color: var(--color-accent-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.help-video-link-out a:hover {
  color: var(--color-accent);
}

.trust-video-banner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  min-height: clamp(180px, 28vw, 320px);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #060708;
}

.trust-video-banner--full {
  max-width: none;
  width: 100%;
  border-radius: 0;
  border-inline: none;
}

.trust-video-banner__media {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.trust-video-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.56) 100%);
}

.trust-video-banner__text {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: min(92%, 760px);
  text-align: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.8vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

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

.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1rem;
}

/* Home — Ezlogz-style pastel “flags” marquee */
.home-flags-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #050a12 0%, #0a1524 48%, #070f18 100%);
  padding: clamp(1.75rem, 4vw, 2.85rem) 0;
}

.home-flags-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 12vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.home-flags-marquee-outer {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.home-flags-marquee {
  outline: none;
}

.home-flags-track {
  display: flex;
  width: max-content;
  animation: home-flags-marquee-scroll 52s linear infinite;
  will-change: transform;
}

.home-flags-marquee:hover .home-flags-track {
  animation-play-state: paused;
}

.home-flags-group {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: 1rem;
  padding: 0.35rem 1rem 0.5rem;
  padding-right: calc(1rem + 0.35vw);
}

.home-flag-card {
  flex: 0 0 auto;
  width: min(300px, 82vw);
  border-radius: 14px;
  padding: 1.35rem 1.3rem 1.45rem;
  text-align: left;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.home-flag-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.home-flag-card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 400;
  color: #334155;
}

.home-flag-card a {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-flag-card a:hover {
  color: var(--color-green-deep);
}

.home-flag-card--cyan {
  background: #d4f2f8;
}

.home-flag-card--mint {
  background: #ccf3df;
}

.home-flag-card--peach {
  background: #fdebd6;
}

.home-flag-card--sky {
  background: #d8ecff;
}

.home-flag-card--lavender {
  background: #ebe4ff;
}

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

@media (prefers-reduced-motion: reduce) {
  .home-flags-track {
    animation: none;
  }
}

/* Stats */
.stats-section {
  padding-top: 0;
  padding-bottom: 1.25rem;
  background: #0a0a0a;
  border-top: 1px solid #2a2a2a;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-bright);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
}

.reviews-section {
  padding-top: 1.6rem;
}

.reviews-widget {
  background: #eef1f4;
  border: 1px solid #dfe5ea;
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
}

.reviews-widget--pending {
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-fallback-msg {
  margin: 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
  line-height: 1.45;
}

.reviews-fallback-msg a {
  color: #1a73e8;
}

.reviews-fallback-msg code {
  font-size: 0.88em;
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.reviews-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  color: #1f2b2a;
}

.google-logo-word {
  display: inline-flex;
  align-items: center;
}

.google-logo-word svg {
  height: 22px;
  width: auto;
  display: block;
}

.reviews-headline {
  font-size: 0.98rem;
}

.reviews-stars {
  color: #fbbc04;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.reviews-stars--aggregate {
  display: inline-flex;
  gap: 0.06rem;
  align-items: center;
  letter-spacing: 0;
}

.reviews-aggregate-star-cell {
  position: relative;
  display: inline-block;
  width: 1.05em;
  height: 1em;
  line-height: 1;
  flex: none;
}

.reviews-aggregate-star-ghost {
  color: #c8d0d2;
  opacity: 0.55;
}

.reviews-aggregate-star-fill {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #fbbc04;
  line-height: 1;
}

.reviews-widget--slides .reviews-aggregate-star-ghost {
  color: #5f6368;
  opacity: 0.5;
}

.reviews-widget--slides .reviews-aggregate-star-fill {
  color: #fdd663;
}

.reviews-meta {
  font-size: 0.95rem;
  color: #3c4548;
}

.reviews-btn {
  text-decoration: none;
  color: #172022;
  border: 1px solid #c8d0d2;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 600;
  background: #fff;
  white-space: nowrap;
}

.reviews-btn:hover,
.reviews-btn:focus-visible {
  border-color: #9aa7ad;
}

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

.section.reviews-section:has(.reviews-widget--rich) .container {
  max-width: 100%;
  width: 100%;
  padding-left: clamp(1rem, 4vw, 2.75rem);
  padding-right: clamp(1rem, 4vw, 2.75rem);
}

.reviews-rich-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin-top: 0.55rem;
}

@media (min-width: 720px) {
  .reviews-rich-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .reviews-rich-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* One visible row (3 cards); other reviews on horizontal slides */
.reviews-rich-carousel {
  margin-top: 0.55rem;
}

.reviews-rich-carousel-row {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
}

.reviews-rich-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 4px;
  outline: none;
}

.reviews-rich-carousel-viewport:focus-visible {
  box-shadow: 0 0 0 2px #8ab4f8;
}

.reviews-rich-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-rich-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}

.reviews-rich-slide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 720px) {
  .reviews-rich-slide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .reviews-rich-slide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.reviews-rich-carousel-btn {
  flex: 0 0 auto;
  align-self: center;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #5f6368;
  border-radius: 999px;
  background: #303134;
  color: #e8eaed;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.reviews-rich-carousel-btn:hover,
.reviews-rich-carousel-btn:focus-visible {
  background: #3c4043;
  border-color: #8ab4f8;
  outline: none;
}

.reviews-rich-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.reviews-rich-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #5f6368;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.reviews-rich-carousel-dot:hover,
.reviews-rich-carousel-dot:focus-visible {
  opacity: 0.95;
  outline: none;
}

.reviews-rich-carousel-dot--active {
  opacity: 1;
  background: #8ab4f8;
  transform: scale(1.15);
}

@media (max-width: 639px) {
  .reviews-rich-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .reviews-rich-carousel-row {
    gap: 0.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-rich-carousel-track {
    transition: none;
  }
}

.reviews-rich-card {
  position: relative;
  background: #111315;
  border: 1px solid #3c4043;
  border-radius: 8px;
  padding: 0.9rem 1rem 1rem 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.reviews-rich-menu {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9aa0a6;
  font-size: 1.25rem;
  line-height: 1;
  cursor: default;
}

.reviews-rich-top {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding-right: 1.9rem;
}

.reviews-rich-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #3c4043;
  border: 2px solid #5f6368;
  box-sizing: border-box;
}

.reviews-rich-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--avatar-pos, 15% 14%);
}

.reviews-rich-avatar-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f1f3f4;
  background: radial-gradient(circle at 30% 25%, #5f6368 0%, #3c4043 58%, #202124 100%);
}

.reviews-rich-avatar--fallback .reviews-rich-avatar-fallback {
  display: flex;
}

.reviews-rich-avatar--fallback img {
  display: none;
}

.reviews-rich-meta {
  min-width: 0;
  flex: 1;
}

.reviews-rich-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.reviews-rich-profile-meta {
  margin: 0.08rem 0 0;
  color: #9aa0a6;
  font-size: 0.95rem;
  line-height: 1.2;
}

.reviews-rich-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin-top: 0.5rem;
}

.reviews-rich-stars {
  display: inline-flex;
  gap: 0.15rem;
}

.reviews-rich-star--on {
  color: #fbbc04;
  font-size: 0.95rem;
  line-height: 1;
}

.reviews-rich-star--off {
  color: #5f6368;
  opacity: 0.55;
  font-size: 0.95rem;
  line-height: 1;
}

.reviews-rich-date {
  font-size: 0.95rem;
  color: #9aa0a6;
}

.reviews-rich-body {
  margin: 0.7rem 0 0;
  font-size: 1.15rem;
  line-height: 1.52;
  color: #e8eaed;
  letter-spacing: 0.004em;
}

.reviews-rich-media {
  margin-top: 0.9rem;
}

.reviews-rich-media img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #3c4043;
}

.reviews-widget--slides {
  font-family: Roboto, "Google Sans", "Segoe UI", system-ui, sans-serif;
  padding: 0.65rem 0.85rem 0.95rem;
  background: #121212;
  border-color: #2a2a2a;
  color: #e8eaed;
}

.reviews-widget--feed .reviews-head {
  display: none;
}

.reviews-widget--slides .reviews-head {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #3c4043;
  padding-bottom: 0.55rem;
}

.reviews-rich-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.reviews-widget--slides .reviews-title-row {
  color: #e8eaed;
}

.reviews-widget--slides .google-logo-word svg {
  height: 22px;
}

.reviews-widget--slides .reviews-headline {
  font-size: 1.08rem;
}

.reviews-widget--slides .reviews-headline strong {
  color: #e8eaed;
  font-weight: 600;
}

.reviews-widget--slides .reviews-meta,
.reviews-widget--slides .reviews-stars {
  font-size: 1rem;
}

.reviews-widget--slides .reviews-meta {
  color: #9aa0a6;
}

.reviews-widget--slides .reviews-stars {
  color: #fdd663;
}

.reviews-widget--slides .reviews-btn {
  padding: 0.42rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: #1a73e8;
  color: #fff;
  border-color: transparent;
}

.reviews-widget--slides .reviews-btn:hover,
.reviews-widget--slides .reviews-btn:focus-visible {
  background: #1967d2;
  border-color: transparent;
}

.review-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 0.85rem 0.95rem;
  border: 1px solid #e6eaee;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
}

.review-google-mark {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 22px;
  height: 22px;
}

.review-google-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.review-card-top {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding-right: 1.6rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e8eef1;
  color: #2f3a3d;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.review-who h3 {
  margin: 0;
  font-size: 0.98rem;
  color: #1f2b2a;
}

.review-date {
  margin: 0.12rem 0 0;
  color: #6c767c;
  font-size: 0.82rem;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.45rem 0 0.45rem;
}

.review-stars-row .review-stars {
  color: #fbbc04;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.review-verified {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #1a73e8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-verified svg {
  width: 11px;
  height: 11px;
  display: block;
}

.review-text {
  margin: 0;
  color: #1f2b2a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.review-media {
  margin-top: 0.55rem;
}

.review-media img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e6eaee;
}

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

@media (max-width: 640px) {
  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

.fine-print {
  font-size: 0.8rem;
  color: var(--color-ink-muted);
  margin-top: 1rem;
  opacity: 0.9;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 768px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 154, 92, 0.35);
}

.card p:last-child {
  margin-bottom: 0;
}

/* Two column */
.two-col {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .two-col {
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
  }
}

.aside-panel {
  background: linear-gradient(160deg, var(--color-green-deep), var(--color-green-mid));
  color: #e8f5ec;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.aside-panel h2,
.aside-panel h3 {
  color: #fff;
}

.aside-panel p,
.aside-panel li {
  color: rgba(232, 245, 236, 0.92);
}

.aside-panel a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aside-panel a:hover {
  color: var(--color-accent-bright);
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-ink-muted);
}

.steps li {
  margin-bottom: 0.65rem;
}

.steps strong {
  color: var(--color-ink);
}

.bullet-list {
  margin: 0;
  padding-left: 1.2rem;
  color: inherit;
}

.bullet-list li {
  margin-bottom: 0.5rem;
}

.narrow-text {
  max-width: 44rem;
}

/* FAQ */
.faq {
  max-width: 720px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  padding: 0 1rem;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-heading);
  padding: 1rem 0;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding-bottom: 1rem;
  margin: 0;
}

/* CTA band */
.cta-band {
  background: var(--color-green-deep);
  color: #e8f5ec;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(232, 245, 236, 0.88);
  margin-bottom: 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--color-green-deep);
}

.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus-visible {
  background: var(--color-accent-bright);
  color: var(--color-green-deep);
}

/* Services page */
.service-block {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 700px) {
  .service-block {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(61, 154, 92, 0.2), rgba(27, 77, 50, 0.12));
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-green-mid);
}

.kw-note {
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(61, 154, 92, 0.08);
  border-radius: 10px;
  border-left: 4px solid var(--color-accent);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-row.two {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.field span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-ink);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text-on-light);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-color: transparent;
}

.field.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.field.checkbox input {
  margin-top: 0.25rem;
  width: auto;
}

.form-note {
  font-size: 0.9rem;
  margin-top: 1rem;
  min-height: 1.5em;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 700;
}

.contact-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

/* Footer */
.site-footer {
  background: var(--color-green-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

.site-footer .logo {
  color: #fff;
}

.site-footer .logo-accent {
  color: var(--color-accent-bright);
}

.footer-tagline {
  margin: 0.75rem 0 0;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--color-accent-bright);
}

.footer-kw {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-phones {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.footer-phones a {
  color: #fff;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
}

.footer-phones a:hover,
.footer-phones a:focus-visible {
  color: var(--color-accent-bright);
  text-decoration: underline;
}

.footer-phones-sep {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.footer-copy {
  margin: 0;
}

/* —— Assets from greengrouplogistics.com (demo mirror) —— */
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

.logo-footer .logo-img {
  height: 52px;
}

.hero-carousel {
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 40, 24, 0.85) 0%, rgba(13, 40, 24, 0.45) 45%, rgba(13, 40, 24, 0.2) 100%);
  pointer-events: none;
}

.hero-slide-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.hero-slide-inner .container {
  max-width: 36rem;
}

.hero-slide-inner h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-slide-inner .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  max-width: 32rem;
}

.hero-video {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.hero-video-full {
  min-height: calc(100vh - var(--header-h));
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 21, 14, 0.72) 0%, rgba(8, 21, 14, 0.4) 45%, rgba(8, 21, 14, 0.22) 100%);
}

.hero-video-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(2.6rem, 5vw, 4.6rem) 0;
}

.hero-video-content .container {
  max-width: 42rem;
}

/* Home — truck photo hero: full image (no crop), full width */
.home-truck-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #0a1410;
}

.home-truck-hero__figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.home-truck-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.home-truck-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.home-truck-hero .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.home-truck-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(5, 22, 14, 0.78) 0%,
    rgba(5, 22, 14, 0.38) 40%,
    rgba(5, 22, 14, 0.1) 65%,
    transparent 88%
  );
}

.home-truck-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(52vh, 520px);
  padding: clamp(1.75rem, 5vw, 3.5rem) 0;
  pointer-events: auto;
}

@keyframes home-truck-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-truck-hero__title,
.home-truck-hero__lead,
.home-truck-hero__actions {
  opacity: 0;
  animation: home-truck-hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-truck-hero__title {
  animation-delay: 0.08s;
}

.home-truck-hero__lead {
  animation-delay: 0.22s;
}

.home-truck-hero__actions {
  animation-delay: 0.38s;
}

@media (prefers-reduced-motion: reduce) {
  .home-truck-hero__title,
  .home-truck-hero__lead,
  .home-truck-hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.home-truck-hero__copy {
  max-width: min(34rem, 94%);
  text-align: left;
}

.home-truck-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.home-truck-hero__lead {
  margin: 0 0 1.35rem;
  font-size: clamp(0.92rem, 1.55vw, 1.08rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.home-truck-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.home-truck-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.45rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.home-truck-hero__btn--solid {
  background: #1f8f3a;
  color: #fff;
  border: 2px solid #1f8f3a;
}

.home-truck-hero__btn--solid:hover,
.home-truck-hero__btn--solid:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.home-truck-hero__btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.home-truck-hero__btn--outline:hover,
.home-truck-hero__btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 520px) {
  .home-truck-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-truck-hero__btn {
    width: 100%;
    max-width: 16rem;
  }
}

/* Tablets & phones: keep copy on the photo (overlay), stronger bottom read legibility */
@media (max-width: 1024px) {
  .home-truck-hero__figure {
    position: relative;
    overflow: hidden;
  }

  .home-truck-hero__figure picture {
    display: block;
    line-height: 0;
  }

  .home-truck-hero__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .home-truck-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: none;
    box-shadow: none;
  }

  .home-truck-hero__scrim {
    display: block;
    background: linear-gradient(
      to top,
      rgba(5, 12, 10, 0.94) 0%,
      rgba(5, 18, 14, 0.72) 28%,
      rgba(5, 22, 14, 0.35) 55%,
      rgba(5, 22, 14, 0.08) 78%,
      transparent 100%
    );
  }

  .home-truck-hero__inner {
    min-height: min(42vh, 360px);
    align-items: flex-end;
    padding: clamp(1.1rem, 4vw, 1.75rem) 0 clamp(1.25rem, 5vw, 2rem);
  }

  .home-truck-hero__copy {
    max-width: none;
  }
}

/* Home — plexus / network hero (full viewport width) */
.hero-plexus-shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  /* No top margin/padding: shell is transparent — avoid a seam above the dark block */
  margin-top: 0;
  padding: 0 0 clamp(0.5rem, 1.5vw, 0.85rem);
  /* Solid top so no light seam if subpixel gap under the truck hero */
  background-color: #050a0f;
}

.hero-plexus {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-block: 0;
  min-height: clamp(420px, calc(100vh - var(--header-h) - 2rem), 720px);
  max-height: min(92vh, 900px);
  background: linear-gradient(155deg, #060d18 0%, #0c1a32 38%, #07121f 72%, #040a12 100%);
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 48px rgba(0, 0, 0, 0.35);
}

/* Homepage: hard-remove any top spacing seam between truck block and plexus */
.home-truck-hero + .hero-plexus-shell {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-plexus .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.hero-plexus-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.hero-plexus-bokeh {
  position: absolute;
  inset: -20%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 36% at 18% 28%, rgba(80, 160, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 82% 22%, rgba(100, 200, 255, 0.14), transparent 58%),
    radial-gradient(ellipse 36% 32% at 55% 88%, rgba(61, 154, 92, 0.12), transparent 50%);
  filter: blur(36px);
  opacity: 0.85;
}

.hero-plexus-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 45%, transparent 30%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-plexus-inner {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem);
}

.hero-plexus-content {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.hero-plexus-eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-plexus-content .company-home-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.hero-plexus-content .company-home-link:hover {
  color: #fff;
  text-decoration-color: var(--color-accent-bright);
}

.hero-plexus-content a.hero-plexus-brand {
  display: inline-block;
  margin: 0.2rem 0 0;
  padding: 0.55em 1.4em;
  font-size: clamp(1.1rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  color: #c8f542;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  text-decoration-color: transparent;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition: color 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.hero-plexus-content a.hero-plexus-brand:hover,
.hero-plexus-content a.hero-plexus-brand:focus-visible {
  color: #e8ff8a;
  text-decoration: none;
  border-color: #fff;
  filter: brightness(1.06);
}

.hero-plexus-title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.hero-plexus-sub {
  margin: 0 auto 1.75rem;
  max-width: 40rem;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.hero-plexus-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.hero-plexus-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #a8e85c 0%, #6bc02a 48%, #4a9a22 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(40, 120, 30, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.hero-plexus-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 36px rgba(40, 120, 30, 0.55);
}

.hero-plexus-cta:focus-visible {
  outline: 2px solid var(--color-accent-bright);
  outline-offset: 3px;
}

.hero-plexus-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hero-plexus-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .hero-plexus-canvas {
    display: none;
  }
}

.carousel-nav {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.carousel-nav button:hover,
.carousel-nav button:focus-visible {
  background: rgba(61, 154, 92, 0.6);
  outline: none;
}

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button[aria-selected="true"] {
  background: var(--color-accent-bright);
  transform: scale(1.15);
}

.trust-band {
  background: var(--color-green-deep);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(61, 154, 92, 0.15);
  color: var(--color-green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
  color: var(--color-warm);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  margin-top: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-row .stat-big {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-green-deep);
  display: block;
}

.stat-row .stat-small {
  font-size: 0.8rem;
  color: var(--color-ink-muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(61, 154, 92, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0;
  transition: background 0.15s ease;
}

.social-row a:hover {
  background: var(--color-accent);
}

.social-row a::before {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  background: currentColor;
}

.social-row a[title="Facebook"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 22v-8h2.7l.4-3h-3.1V9.2c0-.9.3-1.6 1.6-1.6h1.7V4.9c-.3 0-1.3-.1-2.4-.1-2.4 0-4.1 1.5-4.1 4.3V11H8v3h2.3v8h3.2z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 22v-8h2.7l.4-3h-3.1V9.2c0-.9.3-1.6 1.6-1.6h1.7V4.9c-.3 0-1.3-.1-2.4-.1-2.4 0-4.1 1.5-4.1 4.3V11H8v3h2.3v8h3.2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.social-row a[title="Instagram"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 3h8.4A4.8 4.8 0 0 1 21 7.8v8.4a4.8 4.8 0 0 1-4.8 4.8H7.8A4.8 4.8 0 0 1 3 16.2V7.8A4.8 4.8 0 0 1 7.8 3Zm0 1.8A3 3 0 0 0 4.8 7.8v8.4a3 3 0 0 0 3 3h8.4a3 3 0 0 0 3-3V7.8a3 3 0 0 0-3-3H7.8Zm8.9 1.3a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2ZM12 7.6a4.4 4.4 0 1 1 0 8.8 4.4 4.4 0 0 1 0-8.8Zm0 1.8a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 3h8.4A4.8 4.8 0 0 1 21 7.8v8.4a4.8 4.8 0 0 1-4.8 4.8H7.8A4.8 4.8 0 0 1 3 16.2V7.8A4.8 4.8 0 0 1 7.8 3Zm0 1.8A3 3 0 0 0 4.8 7.8v8.4a3 3 0 0 0 3 3h8.4a3 3 0 0 0 3-3V7.8a3 3 0 0 0-3-3H7.8Zm8.9 1.3a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2ZM12 7.6a4.4 4.4 0 1 1 0 8.8 4.4 4.4 0 0 1 0-8.8Zm0 1.8a2.6 2.6 0 1 0 0 5.2 2.6 2.6 0 0 0 0-5.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.social-row a[title="LinkedIn"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.2 8.8a1.7 1.7 0 1 1 0-3.4 1.7 1.7 0 0 1 0 3.4ZM4.7 10h3v9.3h-3V10Zm5 0h2.8v1.3h.1c.4-.8 1.4-1.6 3-1.6 3.2 0 3.8 2.1 3.8 4.8v4.8h-3v-4.3c0-1 0-2.3-1.4-2.3s-1.6 1.1-1.6 2.2v4.4h-3V10Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.2 8.8a1.7 1.7 0 1 1 0-3.4 1.7 1.7 0 0 1 0 3.4ZM4.7 10h3v9.3h-3V10Zm5 0h2.8v1.3h.1c.4-.8 1.4-1.6 3-1.6 3.2 0 3.8 2.1 3.8 4.8v4.8h-3v-4.3c0-1 0-2.3-1.4-2.3s-1.6 1.1-1.6 2.2v4.4h-3V10Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.social-row a[title="WhatsApp"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 11.8A8.8 8.8 0 0 1 7 19.6L3 21l1.5-3.8A8.8 8.8 0 1 1 20 11.8Zm-8.8-7.1a7.1 7.1 0 0 0-6.2 10.6l.2.4-.9 2.2 2.3-.8.4.2A7.1 7.1 0 1 0 11.2 4.7Zm4.2 9c-.2-.1-1.2-.6-1.4-.6s-.3-.1-.4.1l-.6.7c-.1.2-.2.2-.4.1a5.8 5.8 0 0 1-1.7-1.1 6.4 6.4 0 0 1-1.2-1.5c-.1-.2 0-.3.1-.4l.3-.3.2-.3.1-.3c0-.1 0-.2-.1-.3l-.6-1.4c-.2-.4-.3-.4-.4-.4h-.4c-.1 0-.3.1-.4.2-.2.2-.7.7-.7 1.6 0 .9.7 1.9.8 2 .1.1 1.4 2.1 3.3 2.9.5.2.8.4 1.1.5.5.2 1 .2 1.3.1.4-.1 1.2-.5 1.4-.9.2-.4.2-.8.1-.9 0 0-.1-.1-.3-.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 11.8A8.8 8.8 0 0 1 7 19.6L3 21l1.5-3.8A8.8 8.8 0 1 1 20 11.8Zm-8.8-7.1a7.1 7.1 0 0 0-6.2 10.6l.2.4-.9 2.2 2.3-.8.4.2A7.1 7.1 0 1 0 11.2 4.7Zm4.2 9c-.2-.1-1.2-.6-1.4-.6s-.3-.1-.4.1l-.6.7c-.1.2-.2.2-.4.1a5.8 5.8 0 0 1-1.7-1.1 6.4 6.4 0 0 1-1.2-1.5c-.1-.2 0-.3.1-.4l.3-.3.2-.3.1-.3c0-.1 0-.2-.1-.3l-.6-1.4c-.2-.4-.3-.4-.4-.4h-.4c-.1 0-.3.1-.4.2-.2.2-.7.7-.7 1.6 0 .9.7 1.9.8 2 .1.1 1.4 2.1 3.3 2.9.5.2.8.4 1.1.5.5.2 1 .2 1.3.1.4-.1 1.2-.5 1.4-.9.2-.4.2-.8.1-.9 0 0-.1-.1-.3-.2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list li {
  margin-bottom: 0.65rem;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--color-accent-bright);
}

.service-visual {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-visual--gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 3px;
  aspect-ratio: 16 / 10;
  margin-bottom: 0;
}

.service-visual--gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.service-visual--gallery--freight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  aspect-ratio: 16 / 9;
}

@media (max-width: 720px) {
  .service-visual--gallery--freight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .service-visual--gallery {
    aspect-ratio: 4 / 5;
  }

  .service-visual--gallery--freight {
    aspect-ratio: 1 / 1;
  }
}

.region-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.region-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.region-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.region-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About — Gary + team roster */
.team-lead-section {
  margin-top: 2rem;
}

.team-lead-section--secondary {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--color-border);
}

.team-roster__placeholder {
  margin: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.team-roster--empty .team-roster-marquee {
  display: none;
}

.team-lead-section .team-card--lead {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.team-card--lead__trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}

.team-card--lead__trigger:hover,
.team-card--lead__trigger:focus-visible {
  background: rgba(110, 207, 140, 0.08);
  outline: none;
}

.team-card--lead__photo {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card--lead__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.team-card--lead__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
}

.team-card--lead__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-ink);
}

.team-card--lead__hint {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-bright);
  letter-spacing: 0.02em;
}

.team-card--lead.is-expanded .team-card--lead__hint::after {
  content: " (hide)";
}

.team-card--lead__bio {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.75rem;
}

.team-card--lead__bio[hidden] {
  display: none !important;
}

.team-card--lead__bio p {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--color-ink-muted);
}

.team-card--lead__bio p:last-child {
  margin-bottom: 0;
}

.team-lead-section .team-roster {
  margin-top: 1.25rem;
}

.team-roster__lead-in {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-bright);
  letter-spacing: 0.02em;
}

.team-roster__heading {
  margin: 0;
}

.team-roster-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.team-roster-marquee__track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  animation: team-roster-scroll 48s linear infinite;
}

.team-roster-marquee__track:hover {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .team-roster-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .team-roster-card[aria-hidden="true"] {
    display: none;
  }
}

.team-roster-card {
  flex: 0 0 168px;
  width: 168px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.team-roster-card__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 168px;
  aspect-ratio: 1 / 1;
  background: rgba(61, 154, 92, 0.18);
}

.team-roster-card__media::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--color-accent-bright);
}

.team-roster-card__media:has(img.is-missing)::after {
  display: flex;
}

.team-roster-card img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-roster-card img.is-missing {
  display: none;
}

.team-roster-card__body {
  flex: 0 0 auto;
  padding: 0.55rem 0.5rem 0.65rem;
  text-align: center;
}

.team-roster-card__body h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.25;
}

.team-roster-card__body p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-bright);
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.team-card .body {
  padding: 1.25rem;
}

.team-card .body p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-ink-muted);
}

.team-card .body p:last-child {
  margin-bottom: 0;
}

.team-card .body h3 + p {
  color: var(--color-ink);
}

/* Home — Google reviews strip (full-width white rail) */
.home-reviews-section {
  background: #0a0a0a;
  border-top: 1px solid #2a2a2a;
}

.home-reviews-section > .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.home-reviews-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 1.25rem;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.home-reviews-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0;
}

.google-g-mark {
  flex-shrink: 0;
}

.google-g-mark--small {
  opacity: 0.95;
}

.home-reviews-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin: 0;
  color: #fff;
}

.home-reviews-heading-link {
  color: inherit;
  text-decoration: none;
}

.home-reviews-heading-link:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.15em;
}

.home-reviews-window {
  max-width: none;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.55rem 0 0.65rem;
  background: var(--color-surface);
  border: solid var(--color-border);
  border-width: 1px 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.home-reviews-marquee-outer {
  width: 100%;
  overflow: hidden;
}

.home-reviews-marquee {
  outline: none;
}

.home-reviews-marquee-track {
  display: flex;
  width: max-content;
  animation: home-reviews-marquee-scroll 90s linear infinite;
  will-change: transform;
}

.home-reviews-marquee:hover .home-reviews-marquee-track {
  animation-play-state: paused;
}

.home-reviews-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  gap: 0.85rem;
  padding: 0.25rem 0.85rem 0.65rem;
  padding-right: calc(0.85rem + 0.5vw);
}

.review-card--slide {
  flex: 0 0 auto;
  width: min(320px, 86vw);
  height: auto;
  min-height: 11rem;
}

@media (prefers-reduced-motion: reduce) {
  .home-reviews-marquee-track {
    animation: none;
  }
}

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

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 0.8rem 0.85rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card--compact {
  padding: 0.65rem 0.7rem 0.75rem;
}

.review-card-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.review-card .review-stars {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--color-warm);
  line-height: 1;
}

.review-card blockquote {
  margin: 0 0 0.55rem;
  padding: 0;
  border: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-ink);
  flex: 1;
  min-height: 0;
  max-height: 9.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.review-card blockquote p {
  margin: 0 0 0.45rem;
}

.review-card blockquote p:last-child {
  margin-bottom: 0;
}

.review-card figcaption {
  margin-top: auto;
  padding-top: 0.35rem;
  border-top: 1px solid var(--color-border);
}

.review-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.25;
}

.review-meta {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  margin-top: 0.15rem;
  line-height: 1.3;
}

/* Register modal (header REGISTER — customer / carrier) */
.register-modal {
  width: min(100vw - 1.5rem, 440px);
  max-height: min(92vh, 640px);
  padding: 0;
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.register-modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.register-modal__panel {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  background: var(--color-surface);
  color: var(--color-ink);
  overflow-y: auto;
  max-height: min(92vh, 640px);
}

.register-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(27, 77, 50, 0.08);
  color: var(--color-ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.register-modal__close:hover {
  background: rgba(27, 77, 50, 0.14);
}

.register-modal__title {
  margin: 0 2.25rem 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.register-modal__hint {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-ink-muted);
}

.register-modal__choices {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.register-modal__choice {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--color-green-mid);
  background: #1f8f3a;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: inherit;
}

.register-modal__choice--secondary {
  background: #fff;
  color: var(--color-green-mid);
}

.register-modal__choice:hover {
  filter: brightness(1.05);
}

.register-modal__back {
  margin-bottom: 0.85rem;
  padding: 0.35rem 0;
  border: none;
  background: none;
  color: var(--color-green-mid);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.register-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.register-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.88rem;
}

.register-modal__hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.register-modal__label {
  font-weight: 600;
}

.register-modal__opt {
  font-weight: 500;
  color: var(--color-ink-muted);
}

.register-modal__field input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  font: inherit;
  box-sizing: border-box;
}

.register-modal__mailnote {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-ink-muted);
}

.register-modal__status {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #1f8f3a;
  font-weight: 600;
}

.register-modal__status.is-error {
  color: #b53a3a;
}

.register-modal__submit {
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: #1f8f3a;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.register-modal__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.register-modal__submit:hover {
  background: #166f2e;
}

