/* ============================================
   RIVERSIDE AUTO RENTAL — Main Stylesheet
   Brand Color: PMS 534 C / #304B78
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #304B78;
  --navy-dark: #1E3050;
  --navy-light: #4A6A9A;
  --navy-wash: #E8EDF4;
  --accent-red: #C41E3A;
  --accent-red-dark: #9E1830;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --light-gray: #EEF1F6;
  --mid-gray: #9BA4B0;
  --dark-gray: #4A5568;
  --charcoal: #2D3142;
  --text: #333B4A;
  --text-light: #6B7687;
  --shadow-sm: 0 1px 3px rgba(45, 49, 66, 0.08);
  --shadow-md: 0 4px 12px rgba(45, 49, 66, 0.1);
  --shadow-lg: 0 8px 30px rgba(45, 49, 66, 0.12);
  --shadow-xl: 0 16px 48px rgba(45, 49, 66, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-red);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

.section-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.6;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy .section-label {
  color: rgba(255,255,255,0.6);
}

.section--navy .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--off-white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
}

.header__logo {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 150px;
  width: auto;
  margin: -20px 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover {
  color: var(--navy);
}

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

.header__phone {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__phone svg {
  width: 18px;
  height: 18px;
  color: var(--accent-red);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(30, 48, 80, 0.3), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero__label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
}

.hero h1 span {
  color: var(--accent-red);
  display: inline;
}

.hero__text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__plate {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__plate img {
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: plateFloat 4s ease-in-out infinite;
}

@keyframes plateFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
}

/* Trust bar below hero */
.trust-bar {
  background: var(--navy-dark);
  padding: 20px 0;
  border-bottom: 3px solid var(--accent-red);
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* --- Vehicle Cards --- */
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--light-gray);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-wash);
}

.vehicle-card__image {
  height: 200px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.vehicle-card__image-placeholder {
  font-family: 'Archivo', sans-serif;
  font-size: 3rem;
  opacity: 0.15;
  color: var(--navy);
}

.vehicle-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-red);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.vehicle-card__body {
  padding: 24px;
}

.vehicle-card__title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.vehicle-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.vehicle-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.vehicle-card__spec svg {
  width: 16px;
  height: 16px;
  color: var(--navy-light);
  flex-shrink: 0;
}

.vehicle-card__price {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}

.vehicle-card__price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

/* --- Audience Blocks --- */
.audience-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.audience-block:hover::before {
  transform: scaleX(1);
}

.audience-block:hover {
  box-shadow: var(--shadow-md);
}

.audience-block__icon {
  width: 52px;
  height: 52px;
  background: var(--navy-wash);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.audience-block__icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.audience-block h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.audience-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- What You Need Section --- */
.need-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.need-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
}

.need-card__icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.need-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

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

.need-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Van Spotlight --- */
.van-spotlight {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.van-spotlight::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,30,58,0.2), transparent 70%);
  border-radius: 50%;
}

.van-spotlight h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.van-spotlight p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.van-spotlight__uses {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.van-spotlight__uses li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.van-spotlight__uses li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-red);
  flex-shrink: 0;
}

.van-spotlight__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.van-spotlight__visual-inner {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.van-spotlight__capacity {
  font-family: 'Archivo', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.van-spotlight__capacity-label {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child {
  border-top: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--navy);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--navy);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Rate Table --- */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.rate-table thead {
  background: var(--navy);
  color: var(--white);
}

.rate-table th {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 20px;
  text-align: left;
}

.rate-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--light-gray);
}

.rate-table tbody tr:hover {
  background: var(--off-white);
}

.rate-table .price {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.rate-table .call-quote {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  color: var(--accent-red);
  font-size: 0.85rem;
}

/* --- Insurance Referral Section --- */
.insurance-section {
  background: linear-gradient(135deg, var(--off-white), var(--navy-wash));
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--light-gray);
}

.insurance-section h2 {
  margin-bottom: 16px;
}

.insurance-section__benefits {
  list-style: none;
  margin-bottom: 24px;
}

.insurance-section__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.insurance-section__benefits li svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Contact Form --- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(48, 75, 120, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Location / Map --- */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.location-card__map {
  width: 100%;
  height: 300px;
  background: var(--light-gray);
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-card__info {
  padding: 32px;
}

.location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.location-card__detail svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-card__detail strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.location-card__detail span,
.location-card__detail a {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Hours Table --- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--charcoal);
  width: 120px;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand img {
  height: auto;
  width: 180px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- Call Banner (sticky mobile) --- */
.call-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--accent-red);
  padding: 14px 24px;
  text-align: center;
}

.call-banner a {
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.call-banner a:hover {
  color: var(--white);
}

.call-banner svg {
  width: 20px;
  height: 20px;
}

/* --- About Heritage --- */
.heritage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.heritage__badge {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: var(--white);
}

.heritage__year {
  font-family: 'Archivo', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.heritage__since {
  font-family: 'Archivo', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

/* --- Page Header (interior pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-3,
  .audience-blocks,
  .need-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__text {
    margin: 0 auto 32px;
  }

  .hero__actions {
    justify-content: center;
  }

  .van-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px;
  }

  .van-spotlight__uses {
    justify-content: center;
  }

  .insurance-section {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .heritage {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .header__inner {
    height: 76px;
  }

  .header__logo img {
    height: 80px;
    margin: -10px 0;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-lg);
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 10;
  }

  .header__cta .btn {
    display: none;
  }

  .header__phone {
    display: none;
  }

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

  .grid-3,
  .audience-blocks,
  .need-cards {
    grid-template-columns: 1fr;
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: 12px;
  }

  .call-banner {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .rate-table {
    font-size: 0.75rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rate-table thead,
  .rate-table tbody,
  .rate-table tr {
    display: table;
    width: 100%;
    table-layout: auto;
  }

  .rate-table th,
  .rate-table td {
    padding: 10px 6px;
  }

  .rate-table th:not(:first-child),
  .rate-table td:not(:first-child) {
    white-space: nowrap;
  }

  .rate-table th {
    font-size: 0.7rem;
  }

  .van-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
    gap: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .van-spotlight::after {
    display: none;
  }

  .van-spotlight h2 {
    font-size: 1.4rem;
  }

  .van-spotlight p {
    font-size: 0.9rem;
  }

  .van-spotlight__uses {
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
  }

  .van-spotlight__visual-inner {
    padding: 24px;
  }

  .van-spotlight__capacity {
    font-size: 3.5rem;
  }

  .van-spotlight .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 14px 16px;
  }

  .insurance-section {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .insurance-section__benefits li {
    padding-right: 4px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero__plate img {
    max-width: 260px;
  }

  .van-spotlight__capacity {
    font-size: 3.5rem;
  }

  .heritage__year {
    font-size: 3.5rem;
  }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
