:root {
  --ink: #0c1f17;
  --muted: #5a6f64;
  --line: rgba(15, 159, 110, 0.14);
  --surface: #ffffff;
  --soft: #f0faf4;
  --accent: #0f9f6e;
  --accent-dark: #08794f;
  --yellow: #f5c518;
  --yellow-soft: #fff4c4;
  --navy: #0a3d2c;
  --green: #0f9f6e;
  --panel: #ffffff;
  --panel-2: #fff9e6;
  --shadow: 0 24px 60px rgba(12, 48, 32, 0.12);
  --shadow-sm: 0 8px 24px rgba(12, 48, 32, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-h: 78px;
  --glass: rgba(255, 255, 255, 0.88);
  --hero-overlay: linear-gradient(125deg, rgba(6, 40, 28, 0.94) 0%, rgba(10, 72, 52, 0.82) 45%, rgba(15, 159, 110, 0.35) 100%);
}

body.theme-deep {
  --ink: #061a12;
  --muted: #5a7268;
  --line: rgba(6, 78, 59, 0.18);
  --soft: #f4fff8;
  --accent: #064e3b;
  --accent-dark: #032e22;
  --yellow: #facc15;
  --yellow-soft: #fff7c2;
  --navy: #064e3b;
  --green: #047857;
  --panel-2: #fff7c2;
  --hero-overlay: linear-gradient(125deg, rgba(4, 30, 22, 0.96) 0%, rgba(6, 78, 59, 0.88) 50%, rgba(250, 204, 21, 0.2) 100%);
}

body.theme-lime {
  --ink: #1a2608;
  --muted: #66724d;
  --line: rgba(101, 163, 13, 0.18);
  --soft: #f8fff0;
  --accent: #65a30d;
  --accent-dark: #4d7c0f;
  --yellow: #fde047;
  --yellow-soft: #fffce0;
  --navy: #3f6212;
  --green: #65a30d;
  --panel-2: #fff9cc;
  --hero-overlay: linear-gradient(125deg, rgba(40, 60, 10, 0.92) 0%, rgba(101, 163, 13, 0.75) 55%, rgba(253, 224, 71, 0.25) 100%);
}

body.theme-ocean {
  --ink: #0c2340;
  --muted: #5a7088;
  --line: rgba(2, 132, 199, 0.18);
  --soft: #f0f9ff;
  --accent: #0284c7;
  --accent-dark: #0369a1;
  --yellow: #38bdf8;
  --yellow-soft: #e0f2fe;
  --navy: #0c4a6e;
  --green: #0284c7;
  --panel-2: #e0f2fe;
  --hero-overlay: linear-gradient(125deg, rgba(12, 74, 110, 0.94) 0%, rgba(2, 132, 199, 0.82) 50%, rgba(56, 189, 248, 0.3) 100%);
}

body.theme-sunset {
  --ink: #431407;
  --muted: #9a6b4a;
  --line: rgba(234, 88, 12, 0.18);
  --soft: #fff7ed;
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --yellow: #fb923c;
  --yellow-soft: #ffedd5;
  --navy: #9a3412;
  --green: #ea580c;
  --panel-2: #ffedd5;
  --hero-overlay: linear-gradient(125deg, rgba(124, 45, 18, 0.94) 0%, rgba(234, 88, 12, 0.82) 50%, rgba(251, 146, 60, 0.35) 100%);
}

body.theme-royal {
  --ink: #2e1065;
  --muted: #7c6b9e;
  --line: rgba(109, 40, 217, 0.18);
  --soft: #faf5ff;
  --accent: #6d28d9;
  --accent-dark: #5b21b6;
  --yellow: #a78bfa;
  --yellow-soft: #ede9fe;
  --navy: #4c1d95;
  --green: #6d28d9;
  --panel-2: #ede9fe;
  --hero-overlay: linear-gradient(125deg, rgba(46, 16, 101, 0.94) 0%, rgba(109, 40, 217, 0.82) 50%, rgba(167, 139, 250, 0.3) 100%);
}

body.theme-slate {
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(51, 65, 85, 0.18);
  --soft: #f8fafc;
  --accent: #475569;
  --accent-dark: #334155;
  --yellow: #94a3b8;
  --yellow-soft: #e2e8f0;
  --navy: #1e293b;
  --green: #475569;
  --panel-2: #e2e8f0;
  --hero-overlay: linear-gradient(125deg, rgba(15, 23, 42, 0.94) 0%, rgba(51, 65, 85, 0.88) 50%, rgba(148, 163, 184, 0.25) 100%);
}

body.theme-coral {
  --ink: #4c0519;
  --muted: #9f7080;
  --line: rgba(225, 29, 72, 0.18);
  --soft: #fff1f2;
  --accent: #e11d48;
  --accent-dark: #be123c;
  --yellow: #fb7185;
  --yellow-soft: #ffe4e6;
  --navy: #9f1239;
  --green: #e11d48;
  --panel-2: #ffe4e6;
  --hero-overlay: linear-gradient(125deg, rgba(76, 5, 25, 0.94) 0%, rgba(225, 29, 72, 0.82) 50%, rgba(251, 113, 133, 0.3) 100%);
}

.icon-wa {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

*,
*::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 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#site-chrome-header {
  flex-shrink: 0;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

.site-bottom {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
}

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

/* ── Theme panel ── */
.theme-panel {
  position: fixed;
  top: 180px;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0;
  transform: translateX(252px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-panel.open {
  transform: translateX(0);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.theme-toggle:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow);
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  transition: transform 0.6s ease;
}

.theme-toggle:hover svg {
  transform: rotate(90deg);
}

.theme-toggle.spin svg {
  animation: theme-toggle-spin 0.6s ease;
}

@keyframes theme-toggle-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(180deg); }
}

.theme-card {
  width: 252px;
  padding: 22px 20px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 28px 0 0 28px;
  box-shadow: var(--shadow);
}

.theme-card h2 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
}

.theme-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.theme-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  justify-items: center;
}

.swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.swatch:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-sm);
}

.swatch.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 159, 110, 0.15);
}

.swatch .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* ── Login panel ── */
.top-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--yellow);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
}

.top-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Top-bar logged-in user area ── */
/* ── Logged-in user area: [⏻ Logout] button only ── */
.top-user-area {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logout pill — yellow, same style as Login button */
.top-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  flex-shrink: 0;
  transition: transform 0.18s, box-shadow 0.18s;
}
.top-logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}

/* ═══════════════════════════════════════════════
   Logged-in site-header skin (dark navy)
   ═══════════════════════════════════════════════ */
.site-header.is-logged-in {
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.site-header.is-logged-in .brand strong {
  color: #ffffff;
}

.site-header.is-logged-in .brand small {
  color: rgba(255, 255, 255, 0.55);
}

.site-header.is-logged-in .main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.is-logged-in .main-nav a:hover,
.site-header.is-logged-in .main-nav a.active {
  color: var(--yellow);
}

.site-header.is-logged-in .main-nav a::after {
  background: var(--yellow);
}

.site-header.is-logged-in .menu-toggle span {
  background: #ffffff;
}

.site-header.is-logged-in .language-toggle {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Main-header user area (avatar + name + logout) ── */
.header-user-area {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.header-user-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.header-user-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.header-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}

.header-logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.45);
  color: var(--navy);
}

.login-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 70;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.login-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.login-panel::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.login-panel.open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.login-card {
  width: min(360px, calc(100vw - 36px));
  padding: 22px 20px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.login-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.login-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: var(--soft);
  border-radius: 999px;
}

.login-tab {
  padding: 6px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s, color 0.2s;
}

.login-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.login-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--yellow);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.login-close:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-sm);
}

.login-form {
  display: none;
  gap: 12px;
}

.login-form.is-active {
  display: grid;
}

.login-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
}

.login-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.login-submit {
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 8px 24px rgba(15, 159, 110, 0.35);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
}

.login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 159, 110, 0.4);
}

.login-message {
  min-height: 20px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
}

/* ── Scroll jump (direction-based show/hide) ── */
.scroll-jump {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s;
}

.scroll-jump.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-jump:hover {
  transform: translateY(-3px) scale(1.05);
}

.scroll-jump.scroll-down {
  background: linear-gradient(145deg, var(--yellow), #e6a800);
  color: var(--accent-dark);
}

.contact-actions {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 45;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-actions .icon-wa {
  width: 24px;
  height: 24px;
}

.whatsapp-button {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-button .wa-label {
  font-weight: 700;
}

.top-socials .social-wa {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--accent-dark);
  background: #25d366;
}

.top-socials .social-wa .icon-wa {
  width: 16px;
  height: 16px;
  color: #fff;
}

.contact-actions .call-button span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.call-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.contact-actions a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ── Top bar ── */
.top-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 6px clamp(16px, 5vw, 72px);
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden; /* prevent bar from growing taller */
}

.top-contact-left,
.top-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap; /* NEVER wrap — keep everything on one line */
  flex-shrink: 0;
}

.top-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.top-contact-bar a:hover {
  color: var(--yellow);
}

.top-contact-left span,
.top-socials span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 800;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding: 12px clamp(20px, 5vw, 72px);
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(1.4);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(15, 159, 110, 0.35);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  transition: color 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a:hover::after {
  width: 100%;
}

.language-menu {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--accent-dark);
  background: var(--yellow-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s;
}

.language-toggle:hover {
  background: var(--yellow);
}

.language-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 128px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.language-list.open {
  display: grid;
  gap: 4px;
}

.language-list button {
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.language-list button:hover {
  background: var(--panel-2);
}

.btn.nav-cta {
  display: none;
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--accent-dark);
  border-radius: 2px;
}

/* ── Shared UI ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(15, 159, 110, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-mini {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(15, 159, 110, 0.25);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.btn,
.quote-form > .btn,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn.primary,
.quote-form > .btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 8px 24px rgba(15, 159, 110, 0.35);
}

.btn.primary:hover,
.quote-form > .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 159, 110, 0.4);
}

.btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

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

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--surface);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 159, 110, 0.12);
}

/* ── Hero slider ── */
.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 40px);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px) clamp(72px, 8vw, 100px);
  color: #fff;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.is-active.is-kenburns {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.orb-1 {
  top: -10%;
  right: 10%;
  width: 320px;
  height: 320px;
  background: var(--yellow);
}

.orb-2 {
  bottom: 10%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: var(--accent);
}

.orb-3 {
  top: 40%;
  right: 35%;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: end;
}

.hero-content-stack {
  position: relative;
  min-height: 380px;
}

.hero-text {
  position: absolute;
  inset: 0;
  max-width: 680px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
  pointer-events: none;
}

.hero-text.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-slider .eyebrow {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.25);
}

.hero-slider .ai-mini {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.3);
}

.hero-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--yellow);
  transform: scale(1.06);
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, width 0.25s;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--yellow);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--yellow));
  transition: width 0.1s linear;
}

.hero-counter {
  position: absolute;
  top: clamp(48px, 7vw, 88px);
  right: clamp(20px, 5vw, 72px);
  z-index: 4;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-counter #heroCurrent {
  color: var(--yellow);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badges strong {
  display: block;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

/* ── AI strip ── */
.ai-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: -48px clamp(20px, 5vw, 72px) 32px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.ai-strip article {
  padding: 28px 26px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  transition: background 0.25s;
}

.ai-strip article:last-child {
  border-right: 0;
}

.ai-strip article:hover {
  background: var(--panel-2);
}

.strip-num,
.ai-strip span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(15, 159, 110, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.ai-strip strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 17px;
  font-weight: 800;
}

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

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 clamp(20px, 5vw, 72px) 48px;
}

.stats article {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.stats article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stats-featured {
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  border-color: transparent;
  color: #fff;
}

.stats-featured strong {
  color: var(--yellow) !important;
}

.stats-featured span {
  color: rgba(255, 255, 255, 0.8) !important;
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Packers and movers highlight */
.movers-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  min-height: 560px;
  margin: 0 0 48px;
  overflow: hidden;
  background: var(--surface);
}

.movers-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: clamp(32px, 5vw, 56px);
  background: #e8ece9;
}

.movers-visual img {
  width: min(90%, 460px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
  animation: moversFloat 4s ease-in-out infinite;
}

.movers-visual .movers-truck-large {
  animation-delay: 1s;
}

.movers-content {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(48px, 7vw, 88px);
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  overflow: hidden;
}

.movers-content::before,
.movers-content::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.movers-content::before {
  top: -160px;
  right: -110px;
  width: 520px;
  height: 520px;
}

.movers-content::after {
  bottom: -130px;
  left: -100px;
  width: 320px;
  height: 320px;
}

.movers-content > * {
  position: relative;
  z-index: 1;
}

.movers-content .eyebrow {
  width: fit-content;
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.16);
  border: 1px solid rgba(245, 197, 24, 0.24);
}

.movers-content h2 {
  max-width: 680px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.18;
}

.movers-content p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.movers-content .btn.primary {
  width: fit-content;
  color: var(--accent-dark);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

@keyframes moversFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ── Sections ── */
.section,
.process,
.fleet,
.quote {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
}

.section-heading .eyebrow {
  background: rgba(15, 159, 110, 0.08);
}

/* ── Services ── */
.service-logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.service-logo-row figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-logo-row figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-logo-row img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-logo-row figure:hover img {
  transform: scale(1.05);
}

.service-logo-row figcaption {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.service-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 159, 110, 0.35);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-card p,
.timeline p,
.fleet > div:first-child p:last-child,
.site-footer p {
  color: var(--muted);
  font-size: 14px;
}

/* ── Process ── */
.process {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.timeline article {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}

.timeline article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--accent);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}

/* ── Fleet ── */
.fleet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
  color: #fff;
  background:
    var(--hero-overlay),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.02) 40px,
      rgba(255, 255, 255, 0.02) 41px
    );
}

.fleet .eyebrow {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.fleet > div:first-child p:last-child {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.fleet-list {
  display: grid;
  gap: 10px;
}

.fleet-option {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.fleet-option:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.fleet-option.active {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.fleet-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--yellow);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

/* ── Quote ── */
.quote {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(15, 159, 110, 0.08), transparent 50%),
    var(--soft);
}

.quote-form {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

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

/* ── Footer ── */
.site-footer {
  padding: 48px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, var(--accent-dark) 0%, var(--navy) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.85fr 1fr;
  gap: 32px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col > strong {
  font-size: 18px;
  font-weight: 800;
}

.footer-col h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--yellow);
}

.newsletter-form label {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--accent-dark);
  background: var(--yellow);
  font-weight: 800;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.newsletter-form span {
  min-height: 20px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

address {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.copyright-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #041f14;
  font-size: 13px;
  font-weight: 600;
}

.copyright-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Subpages ── */
.page-hero {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    var(--hero-overlay),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero--compact {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.page-hero .eyebrow {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.25);
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4.5vw, 52px);
}

.page-hero > p {
  max-width: 600px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.page-hero .btn.primary {
  margin-top: 8px;
}

.main-nav a.active {
  color: var(--accent);
  font-weight: 800;
}

.main-nav a.active::after {
  width: 100%;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.hub-card {
  display: block;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.hub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 159, 110, 0.35);
  box-shadow: var(--shadow);
}

.hub-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dark));
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.hub-card h3 {
  margin-bottom: 8px;
}

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

.track-page {
  padding-top: 0;
}

.tracking-panel--large {
  max-width: 640px;
  margin: 0 auto;
}

.track-tips {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.track-tips code {
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--soft);
  font-size: 13px;
}

.contact-page {
  padding-top: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

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

.contact-card a {
  color: var(--accent);
  font-weight: 700;
}

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

.about-card {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.page-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.page-cta-row .btn.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
}

.process .page-cta-row {
  padding: 0 clamp(20px, 5vw, 72px) clamp(48px, 6vw, 72px);
}

.process .page-cta-row .btn.secondary {
  color: var(--ink);
}

/* ── Responsive ── */
@media (min-width: 900px) {
  .btn.nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content-stack {
    min-height: 320px;
  }

  .hero-counter {
    top: auto;
    bottom: 88px;
    right: 20px;
  }

  .stats,
  .ai-strip,
  .service-logo-row,
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-strip article:nth-child(2) {
    border-right: 0;
  }

  .ai-strip article:nth-child(1),
  .ai-strip article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .movers-section {
    grid-template-columns: 1fr;
  }

  .movers-visual {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .top-contact-bar {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    overflow: hidden;
  }

  .top-contact-left {
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  /* hide email on mobile, keep phone only */
  .top-contact-left a:last-child {
    display: none;
  }

  .top-socials {
    gap: 7px;
    flex-shrink: 0;
  }

  /* hide FB/IG/LinkedIn on mobile, keep WA + user area */
  .top-socials > a:not(.social-wa) {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    background: var(--soft);
  }

  .header-actions {
    margin-left: auto;
  }

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

  .language-list {
    right: auto;
    left: 0;
  }

  .stats,
  .ai-strip,
  .service-logo-row,
  .service-grid,
  .timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .ai-strip {
    margin-top: 24px;
  }

  .ai-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ai-strip article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding-bottom: 24px;
  }

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

  .copyright-bar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 96px;
  }

  .contact-actions {
    right: 72px;
    left: 12px;
    bottom: 14px;
  }

  .contact-actions a {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-badges {
    flex-direction: column;
  }

  .hero-slider {
    padding-bottom: 130px;
  }

  .hero-controls {
    bottom: 16px;
    gap: 10px;
  }

  .hub-grid,
  .contact-cards,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .movers-section {
    min-height: auto;
    margin-bottom: 24px;
  }

  .movers-visual {
    min-height: auto;
    gap: 22px;
    padding: 32px 20px;
  }

  .movers-visual img {
    width: min(100%, 360px);
  }

  .movers-content {
    padding: 44px 24px 52px;
  }

  .movers-content p:not(.eyebrow) {
    font-size: 16px;
  }

}

