/* === Signature Shifters — Main Stylesheet === */
/* Design: Clean, professional, trust-building. Navy + Orange palette. */

/* --- CSS Reset & Base --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  color:#1a1a1a;
  background:#fafaf8;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

/* --- CSS Variables --- */
:root{
  --navy:#1a1f2e;
  --navy-light:#2a3146;
  --orange:#f6851f;
  --orange-dark:#d97015;
  --orange-light:#fff3e6;
  --white:#ffffff;
  --offwhite:#fafaf8;
  --gray-50:#f5f5f4;
  --gray-100:#e8e8e5;
  --gray-200:#d4d4d0;
  --gray-300:#a8a8a2;
  --gray-500:#6b6b64;
  --gray-700:#3d3d38;
  --gray-900:#1a1a1a;
  --green:#16a34a;
  --green-light:#dcfce7;
  --red:#dc2626;
  --red-light:#fee2e2;
  --shadow-sm:0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:0 12px 40px rgba(0,0,0,0.12);
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:20px;
  --radius-xl:28px;
  --max-width:1200px;
}

/* --- Utility Classes --- */
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;border-radius:9999px;
  font-weight:600;font-size:1rem;
  cursor:pointer;border:none;
  transition:all 0.2s ease;
  text-align:center;justify-content:center;
}
.btn-primary{
  background:var(--orange);color:var(--white);
  box-shadow:0 4px 14px rgba(246,133,31,0.35);
}
.btn-primary:hover{background:var(--orange-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(246,133,31,0.45)}
.btn-secondary{
  background:var(--white);color:var(--navy);
  border:2px solid var(--navy);
}
.btn-secondary:hover{background:var(--navy);color:var(--white)}
.btn-white{background:var(--white);color:var(--navy)}
.btn-white:hover{background:var(--gray-50)}
.btn-large{padding:18px 36px;font-size:1.1rem}

/* --- Navigation --- */
.nav{
  position:sticky;top:0;z-index:100;
  background:var(--white);
  border-bottom:1px solid var(--gray-100);
  padding:0 24px;
}
.nav-inner{
  max-width:var(--max-width);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  height:72px;
}
.nav-logo{
  font-size:1.35rem;font-weight:700;color:var(--navy);
  display:flex;align-items:center;gap:10px;
}
.nav-logo-icon{
  width:40px;height:40px;background:var(--navy);border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:1.2rem;
}
.nav-links{display:flex;align-items:center;gap:32px;list-style:none}
.nav-links a{font-weight:500;font-size:0.95rem;color:var(--gray-700);transition:color 0.15s}
.nav-links a:hover{color:var(--navy)}
.nav-cta{margin-left:8px}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--navy);margin:5px 0;transition:0.2s}

/* --- Hero --- */
.hero{
  background:var(--navy);color:var(--white);
  padding:100px 0 80px;
  position:relative;overflow:hidden;
}
.hero::after{
  content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;
  background:radial-gradient(circle,rgba(246,133,31,0.15),transparent 70%);
  border-radius:50%;pointer-events:none;
}
.hero .container{position:relative;z-index:1}
.hero-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.15);
  border-radius:9999px;padding:8px 18px;font-size:0.9rem;margin-bottom:24px;
}
.hero-badge-dot{width:8px;height:8px;background:var(--green);border-radius:50%}
.hero h1{
  font-size:3.2rem;font-weight:800;line-height:1.15;
  margin-bottom:20px;letter-spacing:-0.02em;
}
.hero h1 span{color:var(--orange)}
.hero-subtitle{
  font-size:1.2rem;color:rgba(255,255,255,0.75);line-height:1.6;
  margin-bottom:32px;max-width:480px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-trust{
  display:flex;gap:24px;margin-top:32px;padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.1);
  flex-wrap:wrap;
}
.hero-trust-item{display:flex;align-items:center;gap:8px;font-size:0.9rem;color:rgba(255,255,255,0.7)}
.hero-trust-item svg{width:20px;height:20px;color:var(--green)}
.hero-image{
  background:linear-gradient(135deg,var(--navy-light),#1a2540);
  border-radius:var(--radius-xl);
  padding:40px;text-align:center;
  border:1px solid rgba(255,255,255,0.08);
}
.hero-van-emoji{font-size:8rem;line-height:1}
.hero-image-label{color:rgba(255,255,255,0.5);font-size:0.9rem;margin-top:12px}

/* --- Section Headers --- */
.section{padding:80px 0}
.section-label{
  display:inline-block;font-weight:600;font-size:0.85rem;
  color:var(--orange);text-transform:uppercase;letter-spacing:0.08em;
  margin-bottom:12px;
}
.section h2{
  font-size:2.5rem;font-weight:800;line-height:1.2;
  color:var(--navy);margin-bottom:16px;letter-spacing:-0.02em;
}
.section-subtitle{
  font-size:1.15rem;color:var(--gray-500);max-width:600px;line-height:1.6;
}

/* --- Service Cards --- */
.services-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;margin-top:48px;
}
.service-card{
  background:var(--white);border-radius:var(--radius-lg);
  padding:32px 28px;border:1px solid var(--gray-100);
  transition:all 0.25s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);border-color:transparent;
}
.service-icon{
  width:56px;height:56px;border-radius:var(--radius-md);
  background:var(--orange-light);display:flex;align-items:center;
  justify-content:center;font-size:1.6rem;margin-bottom:20px;
}
.service-card h3{font-size:1.15rem;font-weight:700;color:var(--navy);margin-bottom:8px}
.service-card p{font-size:0.95rem;color:var(--gray-500);line-height:1.5;margin-bottom:16px}
.service-link{font-weight:600;font-size:0.9rem;color:var(--orange);display:inline-flex;align-items:center;gap:6px}
.service-link:hover{color:var(--orange-dark)}

/* --- Location Strip --- */
.locations-strip{
  background:var(--white);border-top:1px solid var(--gray-100);border-bottom:1px solid var(--gray-100);
  padding:48px 0;text-align:center;
}
.locations-strip h3{font-size:1rem;color:var(--gray-500);font-weight:500;margin-bottom:20px}
.location-pills{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.location-pill{
  padding:10px 22px;border-radius:9999px;font-weight:600;font-size:0.9rem;
  background:var(--gray-50);color:var(--navy);
  transition:all 0.2s ease;border:1px solid transparent;
}
.location-pill:hover{background:var(--navy);color:var(--white);border-color:var(--navy)}

/* --- How It Works --- */
.steps-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:48px;
}
.step-card{text-align:center;position:relative}
.step-number{
  width:52px;height:52px;border-radius:50%;background:var(--navy);
  color:var(--white);display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;font-weight:800;margin:0 auto 20px;
}
.step-card h3{font-size:1.1rem;font-weight:700;color:var(--navy);margin-bottom:8px}
.step-card p{font-size:0.95rem;color:var(--gray-500)}

/* --- Trust Bar --- */
.trust-section{background:var(--white);padding:64px 0}
.trust-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:32px;text-align:center;
}
.trust-icon{
  width:48px;height:48px;border-radius:50%;background:var(--green-light);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;font-size:1.4rem;
}
.trust-grid h4{font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:6px}
.trust-grid p{font-size:0.9rem;color:var(--gray-500)}

/* --- CTA Section --- */
.cta-section{
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  color:var(--white);padding:80px 0;text-align:center;
}
.cta-section h2{color:var(--white);font-size:2.5rem;margin-bottom:16px}
.cta-section p{color:rgba(255,255,255,0.75);font-size:1.15rem;margin-bottom:32px}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* --- Footer --- */
.footer{
  background:var(--navy);color:rgba(255,255,255,0.6);
  padding:64px 0 32px;
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;
  margin-bottom:48px;
}
.footer h4{color:var(--white);font-weight:700;font-size:1rem;margin-bottom:16px}
.footer a{color:rgba(255,255,255,0.6);font-size:0.9rem;display:block;margin-bottom:10px;transition:color 0.15s}
.footer a:hover{color:var(--white)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:24px;display:flex;justify-content:space-between;
  font-size:0.85rem;flex-wrap:wrap;gap:16px;
}
.footer-brand{font-weight:700;color:var(--white);font-size:1.1rem;margin-bottom:12px}

/* --- Page Header (inner pages) --- */
.page-header{
  background:var(--navy);color:var(--white);
  padding:64px 0;text-align:center;
}
.page-header h1{font-size:2.8rem;font-weight:800;line-height:1.15;margin-bottom:12px}
.page-header p{font-size:1.1rem;color:rgba(255,255,255,0.7);max-width:600px;margin:0 auto}
.breadcrumbs{font-size:0.85rem;color:rgba(255,255,255,0.5);margin-bottom:16px}
.breadcrumbs a{color:var(--orange);text-decoration:none}
.breadcrumbs a:hover{text-decoration:underline}

/* --- Content Section (inner pages) --- */
.content-section{padding:64px 0}
.content-grid{display:grid;grid-template-columns:1fr 380px;gap:48px}
.content-body h2{font-size:1.8rem;font-weight:700;color:var(--navy);margin:40px 0 16px}
.content-body h2:first-child{margin-top:0}
.content-body p{font-size:1.05rem;color:var(--gray-700);line-height:1.7;margin-bottom:20px}
.content-body ul,.content-body ol{margin:0 0 20px 20px}
.content-body li{font-size:1.05rem;color:var(--gray-700);line-height:1.7;margin-bottom:8px}

/* --- Sidebar --- */
.sidebar-card{
  background:var(--white);border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);padding:28px;
  margin-bottom:24px;position:sticky;top:96px;
}
.sidebar-card h4{font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:12px}
.sidebar-card .btn{width:100%;margin-top:16px}
.sidebar-price{font-size:2rem;font-weight:800;color:var(--navy);margin-bottom:4px}
.sidebar-price span{font-size:1rem;font-weight:500;color:var(--gray-500)}
.sidebar-features{list-style:none;margin:16px 0}
.sidebar-features li{padding:8px 0;border-bottom:1px solid var(--gray-50);font-size:0.95rem;color:var(--gray-700);display:flex;align-items:center;gap:8px}
.sidebar-features li:last-child{border-bottom:none}
.sidebar-features li svg{width:18px;height:18px;color:var(--green);flex-shrink:0}

/* --- FAQ --- */
.faq-list{margin-top:40px}
.faq-item{
  background:var(--white);border:1px solid var(--gray-100);
  border-radius:var(--radius-md);margin-bottom:12px;overflow:hidden;
}
.faq-q{
  width:100%;padding:20px 24px;background:none;border:none;
  text-align:left;font-size:1.05rem;font-weight:600;color:var(--navy);
  cursor:pointer;display:flex;justify-content:space-between;align-items:center;
  gap:16px;
}
.faq-q:hover{background:var(--gray-50)}
.faq-arrow{font-size:1.2rem;transition:transform 0.2s;color:var(--gray-300)}
.faq-item[open] .faq-arrow{transform:rotate(45deg)}
.faq-a{padding:0 24px 20px;font-size:1rem;color:var(--gray-700);line-height:1.7}

/* --- Booking Demo --- */
.booking-steps{display:flex;gap:0;margin-bottom:40px;justify-content:center}
.booking-step{
  display:flex;align-items:center;gap:8px;
  padding:10px 20px;font-weight:600;font-size:0.9rem;
  color:var(--gray-300);border-bottom:3px solid var(--gray-100);
  transition:all 0.2s;
}
.booking-step.active{color:var(--navy);border-bottom-color:var(--orange)}
.booking-step-num{
  width:28px;height:28px;border-radius:50%;
  background:var(--gray-100);display:flex;align-items:center;
  justify-content:center;font-size:0.8rem;font-weight:700;
}
.booking-step.active .booking-step-num{background:var(--orange);color:var(--white)}
.booking-panel{
  background:var(--white);border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);padding:40px;max-width:700px;margin:0 auto;
}
.booking-panel h3{font-size:1.3rem;font-weight:700;color:var(--navy);margin-bottom:24px}
.form-group{margin-bottom:20px}
.form-label{display:block;font-weight:600;font-size:0.9rem;color:var(--navy);margin-bottom:6px}
.form-input,.form-select{
  width:100%;padding:12px 16px;border:2px solid var(--gray-200);
  border-radius:var(--radius-sm);font-size:1rem;font-family:inherit;
  transition:border-color 0.2s;background:var(--white);
}
.form-input:focus,.form-select:focus{outline:none;border-color:var(--orange)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}

/* --- Calendar Mock --- */
.calendar-mock{
  display:grid;grid-template-columns:repeat(7,1fr);gap:4px;text-align:center;
  margin:24px 0;
}
.calendar-day-header{font-size:0.8rem;font-weight:600;color:var(--gray-500);padding:8px 0}
.calendar-day{
  padding:12px 4px;border-radius:var(--radius-sm);font-size:0.9rem;
  font-weight:500;cursor:pointer;transition:all 0.15s;
  background:var(--gray-50);
}
.calendar-day:hover:not(.unavailable):not(.empty){background:var(--orange);color:var(--white)}
.calendar-day.selected{background:var(--navy);color:var(--white)}
.calendar-day.unavailable{background:var(--gray-100);color:var(--gray-300);cursor:not-allowed}
.calendar-day.empty{background:transparent}

/* --- Stripe Mock --- */
.stripe-mock{
  border:2px solid var(--gray-200);border-radius:var(--radius-md);
  padding:20px;background:var(--gray-50);
}
.stripe-mock-row{display:flex;justify-content:space-between;padding:8px 0;font-size:0.95rem}
.stripe-mock-row.total{font-weight:700;border-top:1px solid var(--gray-200);margin-top:8px;padding-top:12px}

/* --- Responsive --- */
@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr;text-align:center}
  .hero h1{font-size:2.5rem}
  .hero-subtitle{margin:0 auto 32px}
  .hero-actions{justify-content:center}
  .hero-trust{justify-content:center}
  .hero-image{max-width:400px;margin:0 auto}
  .content-grid{grid-template-columns:1fr}
  .sidebar-card{position:static}
  .steps-grid{grid-template-columns:1fr;max-width:400px;margin:48px auto 0}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links{display:none}
  .nav-toggle{display:block}
  .nav-links.open{
    display:flex;flex-direction:column;position:absolute;top:72px;left:0;right:0;
    background:var(--white);padding:24px;border-bottom:1px solid var(--gray-100);
    gap:16px;
  }
  .hero{padding:64px 0 48px}
  .hero h1{font-size:2rem}
  .hero-van-emoji{font-size:5rem}
  .section{padding:56px 0}
  .section h2{font-size:1.8rem}
  .services-grid{grid-template-columns:1fr}
  .booking-panel{padding:24px}
  .form-row{grid-template-columns:1fr}
  .page-header h1{font-size:2rem}
  .trust-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .booking-steps{flex-wrap:wrap}
}
@media(max-width:480px){
  .hero h1{font-size:1.7rem}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .cta-actions{flex-direction:column}
  .cta-actions .btn{width:100%}
}

/* --- Print --- */
@media print{
  .nav,.footer,.cta-section{display:none}
}
