/* ============ TOKENS ============ */
/* Reskin of the approved "logistic" sample theme for SpeedUp Trucking LLC.
   Layout, spacing, type scale and component structure are unchanged from
   the approved sample — only the palette, logo and copy are brand-specific. */
:root {
  --ink: #303E47;           /* Dark Grayish Blue — headings, nav, secondary text */
  --ink-soft: #56646D;
  --ink-faint: #8C979D;
  --paper: #FFFFFF;
  --paper-alt: #FFFFFF;      /* kept pure white per brand brief — no gray section tint */
  --surface: #FFFFFF;
  --line: #E1E6E9;
  --accent: #FF7A35;        /* Orange — CTAs, highlights, icons, accents */
  --accent-bright: #FF9A60;
  --accent-contrast: #FFFFFF;
  --accent-pastel: #FFEEE3;
  --accent-pastel-strong: #FFD6BC;
  --navy: #303E47;
  --navy-soft: #EDF1F2;
  --danger: #D64545;
  --shadow: rgba(48, 62, 71, 0.1);
  --shadow-strong: rgba(48, 62, 71, 0.22);

  /* Fixed-dark panel — brand-dark, for the contact side panel. */
  --panel-dark: #303E47;
  --panel-dark-line: rgba(255, 255, 255, 0.13);
  --panel-dark-text: #F5F7F8;
  --panel-dark-text-soft: rgba(245, 247, 248, 0.72);
  --panel-dark-text-faint: rgba(245, 247, 248, 0.5);

  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --container: 1200px;
}

/* ============ BASE ============ */
* { box-sizing: border-box; }
/* Flex/grid items default to min-width/min-height:auto, which lets a long
   unwrapped line of text (or any content) refuse to shrink below its own
   natural width and force the flex/grid track — and everything alongside
   it — wider than the viewport on mobile. This is the single most common
   cause of "text cut off at the right edge on mobile" bugs; resetting it
   is safe (regular non-flex/grid boxes already default to min-width:0). */
*, *::before, *::after { min-width: 0; }
img, svg, video { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

html { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; text-wrap: balance; font-weight: 600; }
p { margin: 0; }
a { color: inherit; }
button { font-family: inherit; }
ul { padding: 0; }

.wrap { max-width: var(--container); margin: 0 auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.icon-svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; flex-shrink: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

section { padding-block: clamp(2.25rem, 4vw, 4.25rem); scroll-margin-top: 120px; }

:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; border-radius: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn i { font-size: 17px; flex-shrink: 0; }
@media (max-width: 480px) { .hero-ctas .btn, .cta-side .btn { width: 100%; justify-content: center; } }
.btn-primary { background: var(--accent); color: var(--accent-contrast); }
.btn-primary:hover { background: var(--accent-bright); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ TOPBAR ============ */
.topbar { background: var(--navy); color: var(--panel-dark-text-soft); font-size: 0.82rem; }
.topbar-row { display: flex; align-items: center; justify-content: space-between; padding-block: 0.5rem; gap: 1rem; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left a, .topbar-dispatch { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--panel-dark-text-soft); text-decoration: none; }
.topbar-left a:hover { color: #fff; }
.topbar-left i { font-size: 14px; color: var(--accent-bright); flex-shrink: 0; }
.topbar-right { display: flex; gap: 1.25rem; }
.topbar-right a { color: var(--panel-dark-text-soft); text-decoration: none; }
.topbar-right a:hover { color: #fff; }
@media (max-width: 780px) { .topbar-right { display: none; } }
@media (max-width: 560px) { .topbar-dispatch { display: none; } }

/* ============ HEADER ============ */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding-block: 0.7rem; gap: 0.75rem 1.5rem; position: relative; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; display: block; }

nav.primary { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
nav.primary > a { text-decoration: none; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); transition: color 0.15s ease; }
nav.primary > a:hover { color: var(--accent); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn { all: unset; box-sizing: border-box; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.nav-dropdown-btn:hover, .nav-dropdown.open .nav-dropdown-btn { color: var(--accent); }
.nav-dropdown-btn i { font-size: 13px; transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-btn i { transform: rotate(180deg); }
.nav-dropdown-panel {
  display: none; position: absolute; top: calc(100% + 0.9rem); left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -20px var(--shadow-strong); padding: 0.6rem; min-width: 280px; z-index: 60;
}
.nav-dropdown.open .nav-dropdown-panel { display: block; }
.nav-dropdown-panel a { display: flex; align-items: center; gap: 0.7rem; padding: 0.65rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; }
.nav-dropdown-panel a:hover { background: var(--paper-alt); color: var(--accent); }
.nav-dropdown-panel a i { font-size: 17px; color: var(--accent); flex-shrink: 0; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

.burger { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger i { font-size: 18px; }

@media (max-width: 940px) {
  nav.primary { display: none; }
  .burger { display: flex; }
}
@media (max-width: 420px) {
  .nav-actions .btn-sm { padding: 0.5rem 0.85rem; font-size: 0.72rem; }
}

/* mobile nav panel (JS toggles a class, not inline styles) */
nav.primary.mobile-open {
  display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
  align-items: flex-start; background: var(--surface); padding: 1.25rem; border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -20px var(--shadow-strong); gap: 1rem;
}
nav.primary.mobile-open .nav-dropdown { width: 100%; }
nav.primary.mobile-open .nav-dropdown-btn { width: 100%; justify-content: space-between; }
nav.primary.mobile-open .nav-dropdown-panel { display: none; position: static; transform: none; box-shadow: none; border: none; padding: 0.25rem 0 0 1rem; width: 100%; }
nav.primary.mobile-open .nav-dropdown.open .nav-dropdown-panel { display: flex; flex-direction: column; }

/* ============ HERO ============ */
.hero {
  position: relative; padding-block: clamp(2.5rem, 6vw, 4rem); background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3.15rem); line-height: 1.14; letter-spacing: -0.01em; margin-block: 1rem 1.1rem; color: var(--ink); font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: var(--ink-soft); font-weight: 400; margin-bottom: 1.75rem; max-width: 50ch; line-height: 1.55; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero-trust span { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }

/* Hero quote widget — plain bordered panel, no floating shadow */
.quote-card { background: var(--paper-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.75rem; }
.quote-card-head { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.quote-card-head .label { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.quote-card-badge { display: block; font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.3rem; }

.quote-mini-form { display: flex; flex-direction: column; gap: 0.9rem; }
.qf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.qf-field span { font-size: 0.75rem; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.qf-field input, .qf-field select {
  font-family: inherit; font-size: 0.92rem; padding: 0 0.9rem; height: 44px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); width: 100%;
}
.qf-field select { appearance: none; background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C979D' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  padding-right: 2.25rem; }
.qf-field input:focus, .qf-field select:focus { outline: 2px solid var(--accent-bright); outline-offset: 1px; border-color: var(--accent); }
.quote-mini-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ============ STATS (plain rule-divided row) ============ */
.stats-section { border-bottom: 1px solid var(--line); background: var(--paper); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
@media (max-width: 780px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-cell { padding: 1.75rem 1.5rem; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
@media (max-width: 780px) { .stat-cell:nth-child(2n) { border-right: none; } .stat-cell { border-bottom: 1px solid var(--line); } .stat-cell:nth-last-child(-n+2) { border-bottom: none; } }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 1.5rem + 1.8vw, 2.75rem); font-weight: 600; color: var(--ink); }
.stat-label { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ============ SECTION HEAD ============ */
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.75rem, 1.4rem + 1.3vw, 2.4rem); letter-spacing: -0.005em; margin-block: 0.6rem 0.85rem; font-weight: 600; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; max-width: 58ch; }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center p { margin-inline: auto; }
.section-head-lg h2 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); }

/* ============ SERVICES (rule-divided list, not icon cards) ============ */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 3.5rem 1fr auto; align-items: baseline; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit;
}
@media (max-width: 700px) { .service-row { grid-template-columns: 2.5rem 1fr; } .service-row-link { grid-column: 2; margin-top: 0.5rem; } }
.service-row-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-faint); }
.service-row-body h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4rem; }
.service-row-body p { color: var(--ink-soft); font-size: 0.95rem; max-width: 62ch; }
.service-row-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; font-weight: 600; color: var(--accent); white-space: nowrap; }
.service-row-link i { font-size: 13px; transition: transform 0.2s ease; }
.service-row:hover .service-row-link i { transform: translateX(3px); }
.service-row:hover .service-row-body h3 { color: var(--accent); }

/* ============ WHY US (plain 2-col list) ============ */
.why-section { background: var(--paper-alt); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (max-width: 940px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.75rem 2rem; background: var(--paper); }
.why-card i { font-size: 22px; color: var(--accent); margin-bottom: 0.85rem; display: block; }
.why-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ============ PROCESS STEPS (connected route line) ============ */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .process-steps, .process-steps-4 { grid-template-columns: 1fr; } }
@media (min-width: 861px) and (max-width: 1080px) { .process-steps-4 { grid-template-columns: repeat(2, 1fr); } }
.process-step { padding: 0 1.5rem 0 0; position: relative; }
@media (max-width: 860px) { .process-step { padding: 0 0 2rem 2rem; } }
.process-step .num {
  display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem;
  border: 1.5px solid var(--accent); border-radius: 50%; font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 600; color: var(--accent); background: var(--paper); margin-bottom: 1rem; position: relative; z-index: 1;
}
.process-steps::before {
  content: ""; position: absolute; top: 1.125rem; left: calc(100% / 6); right: calc(100% / 6);
  height: 1px; background: var(--line);
}
.process-steps-4::before { left: calc(100% / 8); right: calc(100% / 8); }
@media (max-width: 860px) {
  .process-steps::before, .process-steps-4::before { top: 0; bottom: 0; left: 1.125rem; right: auto; width: 1px; height: auto; }
}
.process-step h3 { font-size: 1.08rem; margin-block: 0 0.5rem; font-weight: 600; }
.process-step p { color: var(--ink-soft); font-size: 0.9rem; }

/* ============ CARGO / INDUSTRIES (plain text list) ============ */
.industries-section { background: var(--paper); }
.industry-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0; font-size: 1.05rem; }
.industry-list span { padding-inline: 1rem; color: var(--ink-soft); }
.industry-list span:not(:last-child) { border-right: 1px solid var(--line); }
@media (max-width: 640px) { .industry-list { flex-direction: column; align-items: center; gap: 0.6rem; } .industry-list span { border-right: none !important; padding-inline: 0; } }

/* ============ TESTIMONIALS (plain quote, no card chrome) ============ */
.testi-carousel { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.testi-track-viewport { overflow: hidden; }
.testi-track { display: flex; transition: transform 0.45s cubic-bezier(.16,1,.3,1); }
.testi-slide { flex: 0 0 100%; padding: 0 1rem; }
.testi-card { display: flex; flex-direction: column; gap: 1.25rem; align-items: center; }
.testi-stars { color: var(--accent); letter-spacing: 0.15em; font-size: 0.95rem; }
.testi-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; color: var(--accent); }
.testi-quote { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; line-height: 1.5; color: var(--ink); max-width: 46ch; }
.testi-person { font-size: 0.9rem; font-weight: 600; }
.testi-person span { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.82rem; margin-top: 0.2rem; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 2rem; }
.testi-arrow { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: none; background: none; color: var(--ink-faint); cursor: pointer; flex-shrink: 0; }
.testi-arrow:hover { color: var(--accent); }
.testi-arrow i { font-size: 18px; }
.testi-dots { display: flex; gap: 0.4rem; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line); border: none; padding: 0; cursor: pointer; }
.testi-dot.active { background: var(--accent); }

/* ============ VERIFIED (Every carrier / every load — two-column) ============ */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 780px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card { padding: clamp(1.75rem, 3vw, 2.5rem); border-right: 1px solid var(--line); }
@media (max-width: 780px) { .audience-card { border-right: none; border-bottom: 1px solid var(--line); } .audience-card:last-child { border-bottom: none; } }
.audience-card:last-child { border-right: none; }
.audience-card .eyebrow { display: block; margin-bottom: 0.75rem; }
.audience-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; font-weight: 600; }
.audience-card p { color: var(--ink-soft); margin-bottom: 1.25rem; max-width: 44ch; }
.audience-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.audience-list li { padding-left: 1.1rem; position: relative; font-size: 0.9rem; color: var(--ink-soft); }
.audience-list li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent); }

/* ============ QUICK ACTION STRIP ============ */
.quick-action-section { padding-block: 0; }
.quick-action-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 780px) { .quick-action-grid { grid-template-columns: 1fr; } }
.quick-action-card { padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; border-right: 1px solid var(--line); }
@media (max-width: 780px) { .quick-action-card { border-right: none; border-bottom: 1px solid var(--line); } .quick-action-card:last-child { border-bottom: none; } }
.quick-action-card:last-child { border-right: none; }
.quick-action-card h4 { font-size: 1rem; margin-bottom: 0.3rem; font-weight: 600; }
.quick-action-card p { font-size: 0.85rem; color: var(--ink-soft); }
.quick-action-card .qa-text { flex: 1; min-width: 180px; }

/* ============ TRUST STRIP (plain text, middot-divided) ============ */
.badge-ribbon { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 1.25rem; }
.badge-ribbon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0; }
.badge-item { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); padding-inline: 1.25rem; }
.badge-item:not(:last-child) { border-right: 1px solid var(--line); }
@media (max-width: 780px) { .badge-item { padding-inline: 0.75rem; } }

/* ============ CTA (plain bordered section, no filled block) ============ */
.cta-banner { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.75rem; align-items: center; }
@media (max-width: 820px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 { font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.25rem); margin-top: 0.5rem; font-weight: 600; }
.cta-banner p { color: var(--ink-soft); margin-top: 0.7rem; max-width: 46ch; }
.cta-benefits { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; }
.cta-benefits li { padding-left: 1.1rem; position: relative; font-size: 0.88rem; color: var(--ink-soft); }
.cta-benefits li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent); }
.cta-side { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }

/* ============ FOOTER ============ */
footer.site { border-top: 1px solid var(--line); background: var(--navy); padding-block: 2.75rem 1.5rem; color: var(--panel-dark-text-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; margin-bottom: 1.75rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 38px; width: auto; }
.footer-brand p { color: var(--panel-dark-text-soft); font-size: 0.9rem; margin-top: 0.9rem; max-width: 32ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--panel-dark-line); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--panel-dark-text-soft); transition: all 0.15s ease; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social i { font-size: 15px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--panel-dark-text-faint); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { text-decoration: none; color: var(--panel-dark-text-soft); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-col li { font-size: 0.9rem; color: var(--panel-dark-text-soft); line-height: 1.5; }
.footer-compliance { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; padding: 1.25rem 0; border-top: 1px solid var(--panel-dark-line); font-size: 0.78rem; font-weight: 700; color: var(--panel-dark-text-faint); letter-spacing: 0.03em; text-transform: uppercase; }
.footer-membership-note { font-size: 0.82rem; font-weight: 400; text-transform: none; letter-spacing: normal; color: var(--panel-dark-text-faint); max-width: 62ch; margin: -0.5rem 0 1.25rem; }
.footer-bottom { border-top: 1px solid var(--panel-dark-line); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.82rem; color: var(--panel-dark-text-faint); }
.footer-bottom a { text-decoration: none; color: var(--panel-dark-text-faint); }
.footer-bottom a:hover { color: var(--accent-bright); }

/* ============ CONTACT / QUOTE FORM ============ */
.contact-section { background: var(--paper-alt); padding-block: clamp(2.25rem, 4.5vw, 4.5rem); }
.contact-outer { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px) {
  .contact-outer { grid-template-columns: 1fr; }
  .contact-form-col { order: -1; }
}

.contact-panel { background: var(--panel-dark); color: var(--panel-dark-text); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column; gap: 1.5rem; }
.contact-panel-title { color: var(--panel-dark-text); font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem); line-height: 1.28; margin-top: 0.5rem; }
.contact-panel-lead { font-size: 0.92rem; line-height: 1.6; color: var(--panel-dark-text-faint); }
.contact-panel-lead a { color: var(--accent-bright); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }
.contact-info-row { display: flex; gap: 0.75rem; align-items: flex-start; }
.contact-info-row i { font-size: 18px; color: var(--accent-bright); margin-top: 0.15rem; flex-shrink: 0; }
.contact-info-row .label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--panel-dark-text-faint); font-weight: 700; }
.contact-info-row .value { font-size: 0.95rem; margin-top: 0.2rem; word-break: break-word; }
.contact-info-row a { color: var(--panel-dark-text); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }

.contact-form-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.75rem); }
.contact-title { font-size: clamp(1.7rem, 1.4rem + 1.3vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.contact-lead { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 2rem; max-width: 52ch; }

.gform-style { display: flex; flex-direction: column; gap: 1.1rem; }
.gfield-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gfield-row-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 860px) { .gfield-row-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .gfield-row, .gfield-row-3 { grid-template-columns: 1fr; } }
.gfield { display: flex; flex-direction: column; min-width: 0; }
.gfield label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.5rem; }
.gfield .required-marker { color: var(--danger); font-weight: 600; }
.gfield input, .gfield select, .gfield textarea {
  font-family: inherit; font-size: 0.9rem; padding: 0 0.9rem; height: 48px;
  border: 1px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); width: 100%;
}
.gfield textarea { height: auto; min-height: 120px; padding: 0.85rem 0.9rem; resize: vertical; }
.gfield select { appearance: none; background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C979D' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  padding-right: 2.25rem; }
.gfield input::placeholder, .gfield textarea::placeholder { color: var(--ink-faint); }
.gfield input:focus, .gfield select:focus, .gfield textarea:focus { outline: 2px solid var(--accent-bright); outline-offset: 1px; border-color: var(--accent); }
.gfield.has-error input, .gfield.has-error select, .gfield.has-error textarea { border-color: var(--danger); }

.gfield-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.gform-submit {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: #fff; border: none; padding: 0.95rem 1.85rem;
  border-radius: 8px; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.03em; cursor: pointer; margin-top: 0.25rem;
  transition: background 0.18s ease, transform 0.18s ease;
}
.gform-submit i { font-size: 16px; transition: transform 0.2s ease; }
.gform-submit:hover { background: var(--accent-bright); }
.gform-submit:hover i { transform: translate(2px, -2px); }
.gform-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
@media (max-width: 480px) { .gform-submit { width: 100%; justify-content: center; } }

.gform-status { font-size: 0.85rem; min-height: 1.2em; }
.gform-status.is-success { color: #1E7B4D; }
.gform-status.is-error { color: var(--danger); }

/* ============ BLOG (plain bordered cards, matches why-card language) ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (max-width: 940px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.75rem 2rem; background: var(--paper); text-decoration: none; display: flex; flex-direction: column; }
.blog-card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem; }
.blog-card h3 { font-size: 1.1rem; line-height: 1.35; font-weight: 600; margin-bottom: 0.6rem; color: var(--ink); }
.blog-card p { color: var(--ink-soft); font-size: 0.9rem; flex-grow: 1; }
.blog-card-read { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--accent); margin-top: 1.1rem; }
.blog-card-read i { font-size: 12px; transition: transform 0.2s ease; }
.blog-card:hover .blog-card-read i { transform: translateX(3px); }
.blog-card:hover h3 { color: var(--accent); }
.blog-note { text-align: center; font-size: 0.85rem; color: var(--ink-faint); margin-top: 1.5rem; }

/* ============ FAQ (light accordion — same grid-rows mechanic as the sample) ============ */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-list { border-top: 1px solid var(--line); }
.faq-row { border-bottom: 1px solid var(--line); }
.faq-row button { all: unset; box-sizing: border-box; display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%; padding: 1.25rem 0; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-plus { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; position: relative; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--accent); left: 50%; top: 50%; transform: translate(-50%, -50%); transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-plus::before { width: 11px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 11px; }
.faq-row.open .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s cubic-bezier(.16,1,.3,1); }
.faq-row.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel-inner { overflow: hidden; }
.faq-content { padding: 0 1.5rem 1.25rem 0; color: var(--ink-soft); font-size: 0.94rem; max-width: 65ch; }

/* ============ FAQ (Elementor accordion widget, homepage) ============ */
/* Elementor's own default +/- icon (genuine inline SVG, e-font-icon-svg) is
   used as-is here — only removing our earlier custom icon override was
   needed to fix it. This block is just layout/spacing polish on top. */
.elementor-accordion { border: none; }
.elementor-accordion-item { border: 1px solid var(--line) !important; border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.elementor-accordion-item:last-child { margin-bottom: 0; }
.elementor-tab-title { display: flex !important; align-items: center; justify-content: space-between; gap: 16px; padding: 1.15rem 1.4rem !important; border: none !important; cursor: pointer; transition: background-color .15s ease; }
.elementor-tab-title:hover { background: var(--bg-light, #F7F8FA); }
.elementor-accordion-icon svg { width: 16px; height: 16px; }
.elementor-tab-content { padding: 0 1.4rem 1.3rem !important; color: var(--ink-soft); border: none !important; }

/* ============ RESPONSIVE TWEAKS ============ */
@media (max-width: 480px) {
  section { padding-block: 2rem; }
  .cta-benefits { grid-template-columns: 1fr; }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 6px 20px -4px rgba(0,0,0,0.35); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 24px -4px rgba(0,0,0,0.45); }
@media (max-width: 480px) {
  .whatsapp-float { right: 1rem; bottom: 1rem; width: 50px; height: 50px; font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { transition: none; }
}

/* ============ CONTACT FORM (Contact Form 7) ============ */
.wpcf7-form { font-family: var(--font-body); }
.wpcf7-form p { margin: 0 0 18px; }
.wpcf7-form label { display: block; font-weight: 600; font-size: .85rem; color: var(--ink); margin-bottom: 8px; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7-form-control {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: #FFFFFF; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease;
}
.wpcf7-form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-pastel); }
.wpcf7-form textarea.wpcf7-form-control { min-height: 130px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .92rem;
  border: none; border-radius: 10px; padding: 13px 34px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.wpcf7-form .wpcf7-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(255,122,53,.55); }
.wpcf7-form .wpcf7-submit:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }
.wpcf7-form .wpcf7-spinner { margin-left: 10px; }
.wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: .8rem; color: var(--danger); }
.wpcf7-response-output { margin-top: 16px; padding: 12px 14px; border-radius: 10px; font-size: .88rem; border: 1px solid var(--line); }
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output { border-color: #f2b8b8; background: #fdf3f3; color: #b23b3b; }
.wpcf7-form.sent .wpcf7-response-output { border-color: #bfe6c8; background: #f2fbf4; color: #1f9d55; }
