/* ============================================
   THE MOVERS COMPANY — STYLESHEET v3
   Brand: #2112CD blue | Barlow Condensed display
   ============================================ */

:root {
  --blue: #2112CD;
  --blue-dark: #1a0fa8;
  --blue-light: #3d2fe0;
  --black: #0a0a0a;
  --dark: #111318;
  --mid: #2a2d35;
  --grey: #6b7280;
  --light-grey: #f4f5f7;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Arial', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.2s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; text-transform: uppercase; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--dark); color: var(--white); }

.section-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.section-label.light { color: rgba(255,255,255,0.5); }
.section-heading { font-size: clamp(36px, 5vw, 60px); margin-bottom: 20px; color: var(--black); }
.section-dark .section-heading, .section-heading.light { color: var(--white); }
.section-sub { font-size: 18px; color: var(--grey); max-width: 600px; line-height: 1.7; margin-bottom: 56px; }

/* ============ NAV ============ */
.nav { position: sticky; top: 0; z-index: 100; background: var(--blue); border-bottom: none; padding: 0 24px; }
.nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo-img { height: 58px; width: auto; }
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.logo-text { font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); }
.logo-accent { color: rgba(255,255,255,0.7); margin-left: 6px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); opacity: 1; }
.nav-cta { background: var(--white) !important; color: var(--blue) !important; padding: 10px 20px; border-radius: var(--radius); transition: background var(--transition) !important; }
.nav-cta:hover { background: var(--light-grey) !important; color: var(--blue) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); }

/* ============ BUTTONS ============ */
.btn { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-large { padding: 18px 36px; font-size: 16px; }

/* ============ HERO ============ */
.hero { min-height: calc(100vh - 68px); background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(33,18,205,0.25) 0%, transparent 70%), linear-gradient(135deg, var(--dark) 0%, #0d1020 100%); z-index: 0; }
.hero::before { content: ''; position: absolute; top: 0; right: 42%; width: 2px; height: 100%; background: var(--blue); opacity: 0.2; z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 80px 24px 80px 48px; max-width: 620px; margin-left: auto; animation: fadeUp 0.7s ease both; }
.hero-badge { display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(33,18,205,0.5); padding: 6px 14px; border-radius: 2px; margin-bottom: 28px; background: rgba(33,18,205,0.1); }
.hero-heading { font-size: clamp(52px, 7vw, 88px); color: var(--white); margin-bottom: 24px; line-height: 0.95; }
.hero-heading-accent { color: var(--blue); display: block; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; }
.trust-icon { color: var(--blue); font-weight: 700; }
.hero-image { position: relative; z-index: 2; height: 100%; min-height: 500px; display: flex; align-items: stretch; padding: 0; overflow: hidden; }
.hero-photo { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: center top; display: block; }

/* ============ RATING STRIP ============ */
.rating-strip { background: var(--black); padding: 20px 24px; }
.rating-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.rating-item { display: flex; align-items: center; gap: 10px; }
.rating-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.rating-num { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--blue); }
.rating-text { font-size: 14px; color: rgba(255,255,255,0.6); }
.rating-text strong { color: var(--white); }
.rating-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* ============ WHY US ============ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--black); border: 2px solid var(--black); }
.why-card { background: var(--white); padding: 40px 32px; transition: background var(--transition); }
.why-card:hover { background: var(--blue); color: var(--white); }
.why-card:hover h3, .why-card:hover p { color: var(--white); }
.why-card:hover .why-number { color: rgba(255,255,255,0.15); }
.why-number { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--light-grey); line-height: 1; margin-bottom: 20px; transition: color var(--transition); }
.why-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--black); transition: color var(--transition); }
.why-card p { font-size: 15px; color: var(--grey); line-height: 1.65; transition: color var(--transition); }

/* ============ SERVICES SNAP ============ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.service-tile { border: 1px solid rgba(255,255,255,0.1); padding: 36px 24px; border-radius: var(--radius-lg); transition: all var(--transition); display: block; }
.service-tile:hover { border-color: var(--blue); background: rgba(33,18,205,0.15); transform: translateY(-4px); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-tile h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
.service-tile p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: normal; }
.services-snap-cta { text-align: center; }

/* ============ TEAM FEATURE ============ */
.team-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.team-feature-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.team-feature-img img { width: 100%; height: 520px; object-fit: cover; object-position: center top; display: block; }
.team-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--blue); color: var(--white); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 16px; border-radius: 2px; }
.team-feature-content h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 20px; }
.team-feature-content p { font-size: 16px; color: var(--grey); line-height: 1.75; margin-bottom: 16px; }
.team-bios { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
.bio-card { background: var(--light-grey); padding: 20px; border-radius: var(--radius-lg); border-left: 3px solid var(--blue); }
.bio-name { font-family: var(--font-display); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.bio-detail { font-size: 13px; color: var(--grey); line-height: 1.6; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: normal; }

/* ============ BIOS FULL ============ */
.bios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.bio-full-card { background: var(--white); border: 2px solid var(--light-grey); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition); }
.bio-full-card:hover { border-color: var(--blue); }
.bio-full-img { height: 280px; background: var(--light-grey); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bio-full-img img { width: 100%; height: 100%; object-fit: cover; }
.bio-img-placeholder { text-align: center; color: var(--grey); font-size: 14px; }
.bio-full-content { padding: 32px; }
.bio-full-name { font-family: var(--font-display); font-size: 28px; font-weight: 900; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.bio-full-role { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.bio-full-content p { font-size: 15px; color: var(--grey); line-height: 1.75; margin-bottom: 12px; }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.review-card { background: var(--white); padding: 36px 32px; border-radius: var(--radius-lg); border-left: 4px solid var(--blue); box-shadow: var(--shadow); }
.review-stars { color: #f5a623; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 16px; color: var(--black); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.reviews-cta { text-align: center; }

/* ============ CTA BAND ============ */
.cta-band { background: var(--blue); padding: 64px 24px; }
.cta-band-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: 40px; color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 18px; }
.cta-band .btn-primary { background: var(--white); color: var(--blue); border-color: var(--white); }
.cta-band .btn-primary:hover { background: var(--light-grey); border-color: var(--light-grey); }

/* ============ FOOTER ============ */
.footer { background: var(--black); color: var(--white); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-social a:hover { color: var(--blue); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--blue); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ============ PAGE HERO ============ */
.page-hero { background: var(--dark); padding: 96px 24px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(33,18,205,0.2) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(48px, 6vw, 80px); color: var(--white); margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ============ SERVICES PAGE ============ */
.services-list { padding: 96px 0; }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--light-grey); }
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) .service-block-img { order: -1; }
.service-block-content h2 { font-size: 40px; margin-bottom: 16px; }
.service-block-content p { font-size: 16px; color: var(--grey); line-height: 1.75; margin-bottom: 24px; }
.service-block-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-block-content ul li { font-size: 15px; color: var(--black); padding-left: 24px; position: relative; }
.service-block-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.service-block-img { background: var(--light-grey); border-radius: var(--radius-lg); min-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.service-block-img img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.service-img-placeholder { text-align: center; color: var(--grey); font-size: 14px; }
.service-img-placeholder span { font-size: 48px; display: block; margin-bottom: 12px; }

/* ============ ABOUT PAGE ============ */
.about-intro { padding: 96px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-content h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 24px; }
.about-intro-content p { font-size: 17px; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; min-height: 480px; position: relative; }
.about-intro-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--blue); }
.about-stats { background: var(--dark); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.05); }
.stat-block { background: var(--dark); padding: 48px 32px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 64px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.about-values { padding: 96px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.value-card { padding: 40px 32px; border: 2px solid var(--light-grey); border-radius: var(--radius-lg); transition: border-color var(--transition); }
.value-card:hover { border-color: var(--blue); }
.value-icon { font-size: 32px; margin-bottom: 20px; }
.value-card h3 { font-size: 22px; margin-bottom: 12px; }
.value-card p { font-size: 15px; color: var(--grey); line-height: 1.65; }

/* ============ GALLERY PAGE ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 64px 0; }
.gallery-item { aspect-ratio: 4/3; background: var(--light-grey); border-radius: var(--radius); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--grey); font-size: 13px; text-align: center; flex-direction: column; gap: 8px; }
.gallery-placeholder span { font-size: 32px; }

/* ============ AREAS PAGE ============ */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 0 0 96px; }
.area-group h3 { font-size: 20px; color: var(--blue); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--blue); }
.area-group ul { display: flex; flex-direction: column; gap: 8px; }
.area-group ul li { font-size: 15px; color: var(--grey); padding-left: 16px; position: relative; }
.area-group ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 12px; top: 2px; }
.interstate-band { background: var(--blue); padding: 80px 24px; text-align: center; }
.interstate-band h2 { font-size: 52px; color: var(--white); margin-bottom: 16px; }
.interstate-band p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.interstate-band .btn-primary { background: var(--white); color: var(--blue); border-color: var(--white); }

/* ============ QUOTE FORM ============ */
.quote-section { padding: 96px 0; }
.quote-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }
.form-heading { font-size: 42px; margin-bottom: 8px; }
.form-sub { font-size: 16px; color: var(--grey); margin-bottom: 40px; }
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.form-group input, .form-group select, .form-group textarea { font-family: var(--font-body); font-size: 15px; padding: 12px 16px; border: 2px solid var(--light-grey); border-radius: var(--radius); background: var(--white); color: var(--black); transition: border-color var(--transition); outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; padding: 18px; font-size: 16px; }
.form-note { font-size: 13px; color: var(--grey); text-align: center; margin-top: 12px; }
.quote-sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--light-grey); padding: 40px 32px; border-radius: var(--radius-lg); margin-bottom: 24px; }
.sidebar-card h3 { font-size: 22px; margin-bottom: 20px; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 12px; }
.sidebar-card ul li { font-size: 15px; color: var(--grey); padding-left: 24px; position: relative; }
.sidebar-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.sidebar-contact { background: var(--blue); padding: 40px 32px; border-radius: var(--radius-lg); text-align: center; }
.sidebar-contact h3 { font-size: 24px; color: var(--white); margin-bottom: 8px; }
.sidebar-contact p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.sidebar-contact a { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); display: block; margin-bottom: 8px; letter-spacing: 0.05em; }

/* ============ CHECKLIST PAGE ============ */
.checklist-page { background: var(--white); }
.checklist-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.checklist-intro { background: var(--light-grey); padding: 32px; border-radius: var(--radius-lg); margin-bottom: 40px; border-left: 4px solid var(--blue); }
.checklist-intro p { font-size: 17px; color: var(--grey); line-height: 1.75; }
.checklist-section { margin-bottom: 56px; }
.checklist-section-header { margin-bottom: 28px; }
.checklist-timeline { display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: var(--blue); color: var(--white); padding: 5px 12px; border-radius: 2px; margin-bottom: 10px; }
.checklist-section-header h2 { font-size: 32px; color: var(--black); }
.checklist-items { display: flex; flex-direction: column; gap: 16px; }
.checklist-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 2px solid var(--light-grey); border-radius: var(--radius-lg); padding: 20px 24px; transition: border-color var(--transition); }
.checklist-item:hover { border-color: rgba(33,18,205,0.2); }
.check-box { width: 24px; height: 24px; border: 2px solid var(--grey); border-radius: 4px; flex-shrink: 0; cursor: pointer; transition: all var(--transition); margin-top: 2px; position: relative; }
.check-box.checked { background: var(--blue); border-color: var(--blue); }
.check-box.checked::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 14px; font-weight: 700; }
.check-content strong { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--black); margin-bottom: 4px; }
.check-content p { font-size: 14px; color: var(--grey); line-height: 1.65; }
.check-content a { color: var(--blue); font-weight: 600; }
.checklist-tips { background: var(--dark); border-radius: var(--radius-lg); padding: 40px; margin-top: 16px; }
.checklist-tips h3 { font-size: 26px; color: var(--white); margin-bottom: 24px; }
.tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tip-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; }
.tip-card strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; letter-spacing: 0.03em; }
.tip-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.checklist-sidebar .sidebar-card ul li { font-family: var(--font-body); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { display: none; }
  .hero-content { padding: 80px 24px 48px; margin: 0 auto; max-width: 100%; }
  .hero-image { min-height: 380px; }
  .hero-photo { min-height: 380px; }
  .team-feature-grid, .about-intro-grid, .service-block, .quote-grid, .checklist-layout, .bios-grid { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-img { order: 0; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .team-bios { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--blue); padding: 24px; gap: 20px; border-bottom: 2px solid rgba(255,255,255,0.15); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .why-grid, .services-grid, .reviews-grid, .stats-grid, .values-grid, .areas-grid, .gallery-grid, .bios-grid, .tips-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .rating-inner { gap: 20px; }
  .rating-divider { display: none; }
  .hero-trust { gap: 12px; }
  .hero-photo { min-height: 280px; }
}

/* ============ LOGO FIX ============ */
.logo-img {
  height: 58px;
  width: auto;
  border-radius: 0;
}

/* ============ SCROLLING REVIEWS MARQUEE ============ */
.reviews-marquee-section {
  background: var(--light-grey);
  padding: 80px 0;
  overflow: hidden;
}

.reviews-marquee-header {
  margin-bottom: 48px;
}

.reviews-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--light-grey), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--light-grey), transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

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

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  width: 340px;
  flex-shrink: 0;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow);
}

.marquee-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.marquee-review p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}

.marquee-review span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============ CHECKBOX GRID ============ */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--black);
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-item:hover {
  border-color: var(--blue);
  background: rgba(33,18,205,0.04);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
  padding: 0;
  border: none;
}

.checkbox-item input[type="checkbox"]:checked + * {
  color: var(--blue);
  font-weight: 600;
}

.checkbox-item:has(input:checked) {
  border-color: var(--blue);
  background: rgba(33,18,205,0.06);
}

@media (max-width: 768px) {
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-header-inner { flex-direction: column; align-items: flex-start; }
}

/* ============ FAQ PAGE ============ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.faq-group {
  margin-bottom: 56px;
}

.faq-group-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  text-align: left;
  transition: color var(--transition);
}

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

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-family: var(--font-body);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.75;
}

.faq-sidebar .sidebar-card ul li {
  color: rgba(255,255,255,0.6);
}

/* ============ THANK YOU PAGE ============ */
.thankyou-section {
  padding: 96px 0;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}

.thankyou-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon {
  font-size: 72px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
}

.thankyou-inner h1 {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.1s ease both;
  opacity: 0;
}

.thankyou-inner p {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.5s 0.2s ease both;
  opacity: 0;
}

.thankyou-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin: 24px 0 56px;
  animation: fadeUp 0.5s 0.3s ease both;
  opacity: 0;
}

.thankyou-next {
  border-top: 1px solid var(--light-grey);
  padding-top: 56px;
}

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

.thankyou-card {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  display: block;
  border: 2px solid transparent;
}

.thankyou-card:hover {
  border-color: var(--blue);
  background: var(--white);
  transform: translateY(-3px);
}

.thankyou-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.thankyou-card h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
}

.thankyou-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
  animation: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; }
  .thankyou-cards { grid-template-columns: 1fr; }
}

/* ============ QUOTE TABS ============ */
.quote-tabs-section { padding: 64px 0 96px; }

.quote-tab-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 700px;
}

.quote-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 24px 28px;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}

.quote-tab-btn:hover { border-color: var(--blue); }

.quote-tab-btn.active {
  border-color: var(--blue);
  background: var(--blue);
}

.tab-icon { font-size: 24px; margin-bottom: 4px; }

.tab-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
}

.tab-desc {
  font-size: 13px;
  color: var(--grey);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.quote-tab-btn.active .tab-label { color: var(--white); }
.quote-tab-btn.active .tab-desc { color: rgba(255,255,255,0.7); }

.quote-forms-wrapper { animation: fadeUp 0.3s ease both; }

.form-intro { margin-bottom: 36px; }
.form-intro h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 10px; }
.form-intro p { font-size: 16px; color: var(--grey); line-height: 1.65; }

.comp-section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 20px;
  margin-top: 8px;
}

/* ============ CALCULATOR PAGE ============ */
.calculator-section { padding: 64px 0 96px; }

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.calc-progress-bar {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 32px;
}

.calc-progress-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.calc-volume-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 100px;
}

.calc-volume-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.calc-volume-unit {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-progress-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  position: relative;
  min-width: 120px;
}

.calc-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}

.calc-progress-marker {
  position: absolute;
  top: -20px;
  transform: translateX(-50%);
}

.calc-progress-marker span {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* ROOMS */
.calc-rooms { display: flex; flex-direction: column; gap: 12px; }

.calc-room {
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.calc-room.open { border-color: var(--blue); }

.calc-room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}

.calc-room-header:hover { background: var(--light-grey); }
.calc-room.open .calc-room-header { background: var(--light-grey); }

.calc-room-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-room-icon { font-size: 22px; }

.calc-room-title h3 {
  font-size: 20px;
  color: var(--black);
  text-transform: uppercase;
}

.calc-room-count {
  font-size: 12px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(33,18,205,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}

.calc-room-toggle {
  font-size: 24px;
  color: var(--blue);
  font-weight: 300;
  transition: transform var(--transition);
  font-family: var(--font-body);
}

.calc-room-items {
  display: none;
  padding: 20px 24px 24px;
  background: var(--white);
}

.calc-room.open .calc-room-items { display: block; }

.calc-room-note {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 16px;
  font-style: italic;
}

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

.calc-item {
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.calc-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  text-align: center;
  gap: 6px;
}

.calc-item:hover { border-color: var(--blue); background: rgba(33,18,205,0.03); }

.calc-item:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue);
}

.calc-item-icon { font-size: 24px; }

.calc-item-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  font-family: var(--font-body);
}

.calc-item-vol {
  font-size: 11px;
  color: var(--grey);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.calc-item:has(input:checked) .calc-item-name,
.calc-item:has(input:checked) .calc-item-vol { color: rgba(255,255,255,0.9); }

/* RESULT */
.calc-result {
  margin-top: 48px;
  border: 3px solid var(--blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeUp 0.4s ease both;
}

.calc-result-inner { padding: 48px; }

.calc-result-header { margin-bottom: 40px; text-align: center; }
.calc-result-header h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 8px; }
.calc-result-header p { font-size: 16px; color: var(--grey); }

.truck-cards { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.truck-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  border: 2px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.truck-card-recommended {
  border-color: var(--blue);
  background: rgba(33,18,205,0.03);
}

.truck-card-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.truck-card-info h3 { font-size: 28px; margin-bottom: 16px; }

.truck-specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.truck-spec { display: flex; justify-content: space-between; align-items: center; }

.spec-label {
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.spec-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
}

.truck-card-info p { font-size: 14px; color: var(--grey); line-height: 1.65; }

.calc-result-cta { text-align: center; border-top: 1px solid var(--light-grey); padding-top: 32px; }
.calc-result-cta p { font-size: 14px; color: var(--grey); max-width: 500px; margin: 0 auto; }

/* SIDEBAR */
.calculator-sidebar { position: sticky; top: 88px; }

.calc-sidebar-sticky { display: flex; flex-direction: column; gap: 16px; }

.calc-live-summary {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.calc-summary-header { margin-bottom: 16px; }

.calc-big-volume {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.calc-truck-indicator {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.truck-indicator-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.truck-indicator-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.calc-volume-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.calc-volume-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0%;
}

.calc-volume-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.sidebar-truck-list { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }

.sidebar-truck {
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
}

.sidebar-truck-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.sidebar-truck-detail { font-size: 12px; color: var(--grey); }

@media (max-width: 1024px) {
  .calculator-layout { grid-template-columns: 1fr; }
  .calculator-sidebar { position: static; }
  .calc-items-grid { grid-template-columns: repeat(2, 1fr); }
  .truck-card { grid-template-columns: 1fr; }
  .quote-tab-switcher { max-width: 100%; }
}

@media (max-width: 768px) {
  .calc-items-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-progress-inner { flex-direction: column; align-items: stretch; }
  .quote-tab-switcher { grid-template-columns: 1fr; }
}

/* ============ HOW IT WORKS ============ */
.how-it-works { background: var(--white); }

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.hiw-step {
  padding: 0 32px 0 0;
  position: relative;
}

.hiw-step:last-child { padding-right: 0; }

.hiw-step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.hiw-connector {
  position: absolute;
  top: 36px;
  left: 52px;
  right: -16px;
  height: 2px;
  background: var(--light-grey);
  z-index: 0;
}

.hiw-connector.last,
.hiw-step:last-child .hiw-connector { display: none; }

.hiw-icon {
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.hiw-step:hover .hiw-icon {
  background: var(--blue);
}

.hiw-step h3 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 12px;
  margin-top: 16px;
}

.hiw-step p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hiw-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  transition: letter-spacing var(--transition);
}

.hiw-link:hover { letter-spacing: 0.14em; }

@media (max-width: 1024px) {
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hiw-connector { display: none; }
}

@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ SVG ICONS ============ */
.icon-svg {
  width: 28px;
  height: 28px;
  fill: var(--blue);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.why-card .icon-svg,
.value-card .icon-svg {
  width: 36px;
  height: 36px;
  fill: var(--blue);
  display: block;
  margin-bottom: 16px;
}

.why-card:hover .icon-svg { fill: var(--white); }

.service-tile .icon-svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hiw-icon .icon-svg {
  width: 32px;
  height: 32px;
  fill: var(--blue);
}

.hiw-step:hover .hiw-icon .icon-svg { fill: var(--white); }

.calc-item-icon .icon-svg,
.calc-room-icon .icon-svg {
  width: 22px;
  height: 22px;
  fill: var(--blue);
}

.calc-item:has(input:checked) .icon-svg { fill: var(--white); }

.thankyou-card-icon .icon-svg {
  width: 40px;
  height: 40px;
  fill: var(--blue);
}

.checklist-timeline + h2 .icon-svg,
.tip-card .icon-svg {
  width: 18px;
  height: 18px;
  fill: var(--blue);
}

/* Checklist item icons */
.checklist-tips .icon-svg { fill: var(--blue); }

/* ============ CALCULATOR QTY STEPPER ============ */
.calc-item {
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.calc-item.has-qty {
  border-color: var(--blue);
  background: rgba(33,18,205,0.04);
}

.calc-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px 8px;
  text-align: center;
  gap: 4px;
  flex: 1;
}

.calc-qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--light-grey);
  overflow: hidden;
}

.calc-item.has-qty .calc-qty-control { border-top-color: rgba(33,18,205,0.15); }

.qty-btn {
  width: 32px;
  height: 32px;
  background: var(--light-grey);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.qty-btn:hover { background: var(--blue); color: var(--white); }

.qty-input {
  width: 36px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--light-grey);
  border-right: 1px solid var(--light-grey);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  background: var(--white);
  -moz-appearance: textfield;
  padding: 0;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.calc-item.has-qty .qty-input { color: var(--blue); }

/* Boxes row inside room */
.calc-boxes-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--light-grey);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.calc-boxes-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 4px;
}

.calc-box-item {
  flex: 1;
  min-width: 100px;
}

.calc-box-item .calc-item-inner {
  flex-direction: row;
  padding: 10px 12px 8px;
  gap: 8px;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
  flex-direction: column;
}

/* ============ COMPREHENSIVE FORM ROOM ITEMS ============ */
.comp-room {
  margin-bottom: 24px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comp-room-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 10px 16px;
}

.comp-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 12px;
  gap: 8px;
}

.comp-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.comp-check:hover { border-color: var(--blue); background: rgba(33,18,205,0.03); }

.comp-check:has(input:checked) {
  border-color: var(--blue);
  background: rgba(33,18,205,0.07);
  color: var(--blue);
  font-weight: 600;
}

.comp-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
  flex-shrink: 0;
  padding: 0;
  border: none;
}

.comp-has-qty { flex-wrap: wrap; }

.comp-qty-input {
  width: 56px;
  padding: 4px 8px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--black);
  margin-left: auto;
}

@media (max-width: 768px) {
  .comp-items-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-boxes-row { flex-direction: column; align-items: stretch; }
}
