/* ============================================================
   OCTAVO AUTOCARE — Shared Stylesheet
   Display: Barlow 600/700/800 | Body: Figtree 400/500/600
   ============================================================ */

:root {
  --navy-deep:    #0a1628;
  --navy:         #102040;
  --navy-mid:     #1c3d6e;
  --silver:       #8aaec9;
  --silver-light: #ccdae8;
  --white:        #ffffff;
  --off-white:    #f3f6f9;
  --surface:      #edf1f6;
  --text:         #0a1628;
  --text-muted:   #5a6b7d;
  --accent:       #2e7fc0;
  --accent-dark:  #1e63a0;
  --accent-glow:  rgba(46,127,192,.15);
  --font-display: 'Barlow', sans-serif;
  --font-body:    'Figtree', sans-serif;
  --max-w:        1200px;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(10,22,40,.07);
  --shadow-md:    0 6px 24px rgba(10,22,40,.12);
  --shadow-lg:    0 16px 48px rgba(10,22,40,.18);
  --shadow-xl:    0 24px 64px rgba(10,22,40,.22);
  --trans:        .25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* LAYOUT */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* TYPOGRAPHY */
h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 6vw, 4.2rem); line-height: 1.05; letter-spacing: -.02em; }
h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.12; letter-spacing: -.01em; }
h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.3; }
h4 { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 560px; margin: 14px auto 0; font-size: 1.05rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  letter-spacing: .04em; transition: var(--trans); white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--off-white); color: var(--navy); border-color: var(--surface); }
.btn-ghost:hover { background: var(--surface); transform: translateY(-1px); }
.btn-lg { padding: 17px 40px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-full { width: 100%; justify-content: center; }

/* HEADER */
#header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--surface);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img { height: 50px; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; color: var(--navy); line-height: 1.1; }
.logo-text span { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
nav.desktop-nav { display: flex; align-items: center; gap: 2px; }
nav.desktop-nav a {
  font-family: var(--font-display); font-size: .84rem; font-weight: 600;
  letter-spacing: .03em; color: var(--text-muted);
  padding: 8px 14px; border-radius: var(--radius); transition: var(--trans);
}
nav.desktop-nav a:hover, nav.desktop-nav a.active { color: var(--navy); background: var(--off-white); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; border-radius: var(--radius) !important; margin-left: 8px; padding: 9px 20px !important; }
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius); transition: var(--trans); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }
.hamburger:hover { background: var(--off-white); }

/* MOBILE NAV */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(10,22,40,.5); z-index: 198; }
.nav-overlay.active { display: block; }
#mobileNav {
  position: fixed; inset: 0 0 0 30%; background: var(--white);
  padding: 80px 28px 40px; display: flex; flex-direction: column; gap: 4px;
  box-shadow: -10px 0 48px rgba(10,22,40,.2); z-index: 199;
  transform: translateX(100%); transition: transform .3s ease;
}
#mobileNav.open { transform: translateX(0); }
#mobileNav a { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--surface); transition: color var(--trans); }
#mobileNav a:hover { color: var(--accent); }
#mobileNav .nav-cta-mobile { margin-top: 16px; background: var(--accent); color: var(--white) !important; text-align: center; padding: 14px; border-radius: var(--radius); border-bottom: none; }

/* HERO */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; background: var(--navy-deep); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../img/hero.jpg') center center / cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(130deg, rgba(7,16,31,.92) 0%, rgba(14,32,64,.84) 55%, rgba(10,28,56,.76) 100%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(138,174,201,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(138,174,201,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-watermark { position: absolute; right: -4%; top: 50%; transform: translateY(-50%); width: 52vw; max-width: 700px; opacity: .055; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 660px; padding: 80px 0; opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.hero-content.visible { opacity: 1; transform: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(138,174,201,.1); border: 1px solid rgba(138,174,201,.2); color: var(--silver); font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px; border-radius: 99px; margin-bottom: 24px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--silver); border-radius: 50%; flex-shrink: 0; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--silver); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.62); margin-bottom: 40px; max-width: 500px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.5); font-size: .82rem; }
.trust-pill::before { content: '✓'; color: var(--silver); font-weight: 700; }

/* NO SHAME STRIP */
.shame-strip { background: var(--navy); padding: 64px 0; }
.shame-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.shame-headline { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); letter-spacing: -.02em; line-height: 1.08; margin-bottom: 16px; }
.shame-headline em { color: var(--silver); font-style: normal; }
.shame-sub { color: rgba(255,255,255,.55); font-size: 1rem; margin-bottom: 28px; line-height: 1.65; }
.shame-examples { display: flex; flex-direction: column; gap: 10px; }
.shame-examples li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.5; }
.shame-check { width: 22px; height: 22px; background: rgba(138,174,201,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--silver); font-size: .75rem; font-weight: 700; margin-top: 1px; }

/* STATS STRIP */
.stats-strip { background: var(--navy-deep); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 8px 12px; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,.1); }
.stat-num { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { display: block; font-size: .72rem; font-weight: 600; color: var(--silver); letter-spacing: .1em; text-transform: uppercase; }

/* MARQUEE */
.marquee-strip { background: var(--accent); overflow: hidden; padding: 13px 0; user-select: none; }
.marquee-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 20px; padding-right: 20px; font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.9); white-space: nowrap; }
.marquee-sep { color: rgba(255,255,255,.3); font-size: 1rem; flex-shrink: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--surface); border-top: 3px solid var(--accent); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); transition: var(--trans); display: block; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); border-top-color: var(--accent); }
.service-icon { width: 54px; height: 54px; background: var(--accent-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background var(--trans); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-icon svg { width: 26px; height: 26px; color: var(--accent); transition: color var(--trans); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .9rem; margin-bottom: 20px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--accent); }
.card-link svg { width: 15px; height: 15px; transition: transform var(--trans); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* USP GRID */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.usp-card { background: var(--white); border: 1px solid var(--surface); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--trans); }
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--silver-light); }
.usp-icon { width: 56px; height: 56px; background: var(--accent); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.usp-icon svg { width: 26px; height: 26px; color: var(--white); }
.usp-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.usp-card p { font-size: .855rem; }

/* PRICING TEASER */
.pricing-tease-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: start; }
.price-card { background: var(--white); border: 1px solid var(--surface); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow-sm); position: relative; transition: var(--trans); }
.price-card.featured { background: var(--navy); border-color: var(--navy); box-shadow: var(--shadow-xl); transform: scale(1.03); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; white-space: nowrap; }
.price-card h3 { color: var(--navy); margin-bottom: 4px; }
.price-card.featured h3 { color: var(--white); }
.price-from { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.price-card.featured .price-from { color: rgba(255,255,255,.5); }
.price-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-card.featured .price-amount { color: var(--white); }
.price-amount sup { font-size: 1.2rem; font-weight: 600; vertical-align: super; }
.price-card > p { font-size: .865rem; margin-bottom: 24px; }
.price-card.featured > p { color: rgba(255,255,255,.6); }
.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .87rem; color: var(--text-muted); }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-features li { color: rgba(255,255,255,.7); }
.price-card.featured .price-features li::before { color: var(--silver); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.step h3 { color: var(--navy); margin-bottom: 8px; }
.step p { font-size: .9rem; }

/* REVIEWS */
.reviews-section { background: var(--navy-deep) !important; }
.reviews-section .section-header .eyebrow { color: var(--silver); }
.reviews-section .section-header h2 { color: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.review-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--trans); }
.review-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.review-stars { color: #f59e0b; font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: .93rem; color: rgba(255,255,255,.75); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--white); }
.reviewer-meta { font-size: .78rem; color: var(--silver); }

/* GALLERY TEASER */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--surface); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.7) 0%, transparent 60%); opacity: 0; transition: opacity .3s ease; display: flex; align-items: flex-end; padding: 12px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--white); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--surface) 0%, var(--silver-light) 100%); }
.gallery-placeholder svg { width: 28px; height: 28px; color: var(--silver); opacity: .7; }
.gallery-placeholder span { font-size: .72rem; font-weight: 500; color: var(--text-muted); }

/* COVERAGE */
.coverage-section { background: var(--off-white); }
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; justify-content: center; }
.area-pill { background: var(--white); border: 1px solid var(--surface); border-radius: 99px; padding: 7px 18px; font-size: .85rem; font-weight: 500; color: var(--navy); box-shadow: var(--shadow-sm); transition: var(--trans); }
.area-pill:hover { border-color: var(--accent); color: var(--accent); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(130deg, var(--navy-deep) 0%, var(--navy-mid) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(138,174,201,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(138,174,201,.05) 1px, transparent 1px); background-size: 40px 40px; }
.cta-banner h2 { color: var(--white); position: relative; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.6); position: relative; margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--surface); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; background: var(--white); font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: var(--navy); text-align: left; cursor: pointer; transition: background var(--trans); }
.faq-q:hover { background: var(--off-white); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform var(--trans); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 400px; }
.faq-a-inner { padding: 18px 22px; font-size: .92rem; color: var(--text-muted); line-height: 1.7; background: var(--off-white); border-top: 1px solid var(--surface); }

/* BREADCRUMB */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--surface); padding: 11px 0; }
.breadcrumb ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text-muted); }
.breadcrumb li a { color: var(--accent); }
.breadcrumb li + li::before { content: '/'; }

/* PAGE HERO */
.page-hero { background: linear-gradient(130deg, var(--navy-deep) 0%, var(--navy) 100%); padding: 68px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(138,174,201,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(138,174,201,.04) 1px, transparent 1px); background-size: 48px 48px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 540px; }

/* SERVICE DETAIL CARDS */
.service-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-detail-card { background: var(--white); border: 1px solid var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.service-detail-img { height: 200px; background: linear-gradient(135deg, var(--surface) 0%, var(--silver-light) 100%); display: flex; align-items: center; justify-content: center; }
.service-detail-img svg { width: 64px; height: 64px; color: var(--silver); }
.service-detail-body { padding: 32px; }
.service-detail-body h3 { color: var(--navy); margin-bottom: 10px; }
.service-detail-body > p { margin-bottom: 20px; }
.service-includes { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.service-includes li { display: flex; align-items: flex-start; gap: 9px; font-size: .875rem; color: var(--text-muted); }
.service-includes li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* BASIC VS DEEP TABLE */
.tier-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--surface); box-shadow: var(--shadow-sm); }
.tier-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.tier-table th { padding: 14px 20px; font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-align: left; }
.tier-table th:first-child { background: var(--navy-deep); color: var(--white); }
.tier-table th.basic { background: var(--navy); color: var(--white); }
.tier-table th.deep { background: var(--accent); color: var(--white); }
.tier-table td { padding: 13px 20px; font-size: .875rem; border-top: 1px solid var(--surface); }
.tier-table td:first-child { font-weight: 600; color: var(--navy); background: var(--off-white); }
.tier-table .yes { color: #16a34a; font-weight: 700; }
.tier-table .no  { color: var(--text-muted); }

/* MAINTENANCE PLAN */
.maintenance-box { background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-lg); padding: 48px 44px; position: relative; overflow: hidden; }
.maintenance-box::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(138,174,201,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(138,174,201,.06) 1px, transparent 1px); background-size: 40px 40px; }
.maintenance-box > * { position: relative; }
.maintenance-box h2 { color: var(--white); margin-bottom: 10px; }
.maintenance-box > p { color: rgba(255,255,255,.65); margin-bottom: 32px; font-size: 1.02rem; }
.m-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 36px; }
.m-step { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px 18px; }
.m-step-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--silver); margin-bottom: 6px; }
.m-step p { color: rgba(255,255,255,.65); font-size: .85rem; margin: 0; }

/* ADD-ONS */
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.addon-card { background: var(--white); border: 1px solid var(--surface); border-radius: var(--radius); padding: 24px 18px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--trans); }
.addon-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.addon-emoji { font-size: 1.9rem; margin-bottom: 10px; }
.addon-card h4 { font-size: .9rem; color: var(--navy); margin-bottom: 5px; }
.addon-card p { font-size: .78rem; }
.addon-price { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--accent); margin-top: 8px; }

/* PRICING TABLE */
.pricing-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--surface); box-shadow: var(--shadow-sm); }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.pricing-table thead tr:first-child th { background: var(--navy-deep); color: var(--white); font-family: var(--font-display); font-size: .78rem; letter-spacing: .06em; padding: 10px 14px; }
.pricing-table thead tr:last-child th { background: var(--navy); color: rgba(255,255,255,.8); font-family: var(--font-display); font-size: .75rem; letter-spacing: .04em; padding: 11px 14px; }
.pricing-table thead .deep-col { background: var(--navy-mid); }
.pricing-table tbody td { padding: 13px 14px; font-size: .875rem; text-align: center; border-right: 1px solid var(--surface); color: var(--text-muted); }
.pricing-table tbody tr:nth-child(odd) td { background: var(--white); }
.pricing-table tbody tr:nth-child(even) td { background: var(--off-white); }
.pricing-table tbody tr:hover td { background: var(--silver-light); }
.pricing-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); padding-left: 20px; min-width: 180px; }
.vehicle-eg { display: block; font-size: .72rem; font-weight: 400; color: var(--text-muted); margin-top: 2px; }
.price-val { font-weight: 600; color: var(--navy); }
.price-val.deep-val { color: var(--accent-dark); }
.upcharge-note { background: #fef9e7; border: 1px solid #fde68a; border-left: 4px solid #f59e0b; border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; font-size: .875rem; color: #78350f; margin-top: 16px; }
.upcharge-note strong { color: #92400e; }

/* BOOK FORM */
.book-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.form-progress { display: flex; align-items: flex-start; gap: 0; margin-bottom: 40px; }
.progress-step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.progress-step + .progress-step::before { content: ''; position: absolute; top: 19px; right: 50%; left: -50%; height: 2px; background: var(--surface); z-index: 0; }
.progress-step.done + .progress-step::before { background: var(--accent); }
.p-circle { width: 38px; height: 38px; border-radius: 50%; background: var(--surface); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .9rem; position: relative; z-index: 1; border: 2px solid var(--surface); transition: var(--trans); }
.progress-step.active .p-circle { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
.progress-step.done .p-circle { background: var(--navy); color: var(--white); border-color: var(--navy); }
.p-label { font-size: .68rem; font-weight: 600; color: var(--text-muted); margin-top: 6px; text-align: center; letter-spacing: .04em; text-transform: uppercase; }
.progress-step.active .p-label { color: var(--accent); }
.progress-step.done .p-label { color: var(--navy); }

.form-step { display: none; }
.form-step.active { display: block; }
.step-heading { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; }

.intent-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.intent-card { position: relative; }
.intent-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.intent-card label { display: flex; flex-direction: column; align-items: center; text-align: center; border: 2px solid var(--silver-light); border-radius: var(--radius); padding: 22px 16px 18px; cursor: pointer; transition: var(--trans); background: var(--white); gap: 6px; box-shadow: var(--shadow-sm); }
.intent-card label:hover { border-color: var(--silver); }
.intent-card input:checked + label { border-color: var(--accent); background: rgba(46,127,192,.05); }
.ic-icon { font-size: 2rem; line-height: 1; }
.ic-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); }
.intent-card input:checked + label .ic-title { color: var(--accent); }
.ic-sub { font-size: .76rem; color: var(--text-muted); line-height: 1.4; }

.radio-cards { display: grid; gap: 10px; }
.radio-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.radio-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.radio-card { position: relative; }
.radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-card label { display: flex; flex-direction: column; border: 2px solid var(--surface); border-radius: var(--radius); padding: 16px 14px; cursor: pointer; transition: var(--trans); background: var(--white); }
.radio-card label:hover { border-color: var(--silver); }
.radio-card input:checked + label { border-color: var(--accent); background: rgba(46,127,192,.05); }
.rc-emoji { font-size: 1.5rem; margin-bottom: 7px; }
.rc-title { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 3px; }
.rc-sub { font-size: .75rem; color: var(--text-muted); }
.rc-price { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: .85rem; margin-top: 7px; }

.service-radio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--surface); border-radius: var(--radius); background: var(--white); font-size: .93rem; color: var(--text); transition: border-color var(--trans); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-optional { font-size: .72rem; font-weight: 400; color: var(--text-muted); margin-left: 4px; }

.form-error { display: flex; align-items: center; gap: 8px; background: #fff1f2; border: 1.5px solid #fca5a5; border-radius: var(--radius); padding: 10px 14px; font-size: .875rem; color: #b91c1c; font-weight: 600; margin-bottom: 16px; animation: shake .3s ease; }
.form-error::before { content: '⚠'; font-size: 1rem; flex-shrink: 0; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.checkbox-item-text strong { display: block; font-size: .875rem; color: var(--navy); font-weight: 600; }
.checkbox-item-text span { font-size: .78rem; color: var(--text-muted); }

.file-drop { border: 2px dashed var(--surface); border-radius: var(--radius); padding: 28px 20px; text-align: center; background: var(--off-white); cursor: pointer; transition: border-color var(--trans); }
.file-drop:hover { border-color: var(--accent); }
.file-drop svg { width: 28px; height: 28px; color: var(--silver); margin: 0 auto 8px; }
.file-drop p { font-size: .84rem; color: var(--text-muted); margin: 0; }
.file-drop strong { color: var(--accent); }
.file-drop input { display: none; }

.photo-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 12px; }
.photo-preview-item { position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); }
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-preview-remove { position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; border: none; cursor: pointer; font-size: 12px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background var(--trans); }
.photo-preview-remove:hover { background: rgba(239,68,68,.9); }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }

/* Summary sidebar */
.form-summary-box { background: var(--white); border: 1px solid var(--surface); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 96px; box-shadow: var(--shadow-sm); }
.summary-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--surface); }
.summary-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--off-white); }
.summary-row:last-of-type { border-bottom: none; }
.summary-label { font-size: .76rem; color: var(--text-muted); font-weight: 500; }
.summary-val { font-size: .84rem; color: var(--navy); font-weight: 600; text-align: right; max-width: 160px; }
.summary-note { font-size: .74rem; color: var(--text-muted); margin-top: 14px; line-height: 1.55; }
.summary-trust { display: flex; flex-direction: column; gap: 7px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--surface); }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .77rem; color: var(--text-muted); }
.trust-item::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.form-success { display: none; text-align: center; padding: 48px 20px; }
.form-success.show { display: block; }
.success-circle { width: 72px; height: 72px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-circle svg { width: 36px; height: 36px; color: #16a34a; }
.form-success h2 { color: var(--navy); margin-bottom: 12px; }
.form-success p { max-width: 380px; margin: 0 auto; }

/* Quote display */
.quote-total-display { font-size: 2.8rem; font-weight: 800; color: var(--navy); margin: 8px 0 4px; letter-spacing: -.02em; line-height: 1; }
.quote-poa-note { font-size: .875rem; color: var(--text-muted); margin: 4px 0 12px !important; }
.quote-breakdown { margin: 12px auto 8px; max-width: 420px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-align: left; }
.qb-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 10px 16px; font-size: .875rem; background: #fff; }
.qb-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.qb-row > span:first-child { color: var(--text-muted); flex: 1; }
.qb-row > span:last-child { font-weight: 700; color: var(--navy); white-space: nowrap; }
.qb-total-row { background: var(--off-white); }
.qb-total-row > span:first-child { font-weight: 700; color: var(--navy); }
.quote-confirm-note, .quote-sub-note { color: var(--text-muted); font-size: .875rem; margin-top: 8px !important; max-width: 360px; }
.quote-email-note { font-size: .8rem; color: var(--text-muted); margin-top: 8px !important; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(5,10,20,.95); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.5rem; line-height: 1; transition: background var(--trans); }
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.3rem; transition: background var(--trans); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }

/* GALLERY PAGE */
.gallery-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.gallery-full-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; background: var(--surface); cursor: pointer; }
.gallery-full-item .gallery-placeholder { width: 100%; height: 100%; }
.before-after-badge { position: absolute; top: 10px; left: 10px; background: var(--navy); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 99px; z-index: 2; }

/* ABOUT */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { background: linear-gradient(135deg, var(--surface) 0%, var(--silver-light) 100%); border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img svg { width: 80px; height: 80px; color: var(--silver); }
.values-list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { width: 42px; height: 42px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-icon svg { width: 20px; height: 20px; color: var(--accent); }
.value-item h4 { color: var(--navy); margin-bottom: 3px; }
.value-item p { font-size: .865rem; margin: 0; }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.area-card { background: var(--white); border: 1px solid var(--surface); border-radius: var(--radius-lg); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: var(--trans); }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--silver-light); }
.area-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.area-card p { font-size: .845rem; }

/* FOOTER */
footer { background: var(--navy-deep); color: rgba(255,255,255,.55); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { height: 54px; width: auto; margin-bottom: 14px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: .845rem; line-height: 1.65; max-width: 270px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: var(--trans); }
.social-btn:hover { background: var(--accent); color: var(--white); }
.social-btn svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .845rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; font-size: .845rem; margin-bottom: 10px; }
.footer-contact li svg { width: 15px; height: 15px; color: var(--silver); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 18px 0; font-size: .775rem; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .form-summary-box { position: static; }
  .about-split { grid-template-columns: 1fr; }
  .shame-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  nav.desktop-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .radio-cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-watermark { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .radio-cards.cols-2, .radio-cards.cols-3 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .service-radio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat + .stat:nth-child(odd)::before { display: none; }
}
