:root{
  /* 70% blue, 20% black, 10% white */
  --blue-700:#0b3a66;
  --blue-650:#0f4a7e;
  --blue-600:#13639f;
  --blue-500:#1f7cc6;
  --blue-300:#6fb6ff;
  --blue-200:#a9d6ff;

  --black-900:#0b0f14;
  --black-800:#111827;

  --white:#ffffff;
  --white-90:rgba(255,255,255,0.9);
  --white-10:rgba(255,255,255,0.1);
  --white-14:rgba(255,255,255,0.14);

  --radius:16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.18);

  /* Max content width on very wide screens; below that, use full available width */
  --container-max: 1180px;
  --container-pad: clamp(14px, 3vw, 28px);
  --focus: 0 0 0 3px rgba(31,124,198,0.35);
}

*{ box-sizing: border-box; }

html{
  overflow-x: clip;
}

body{
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--white-90);
  background:
    radial-gradient(900px 520px at 18% -12%, rgba(169,214,255,0.50) 0%, rgba(111,182,255,0.22) 30%, rgba(0,0,0,0) 60%),
    radial-gradient(900px 520px at 92% 10%, rgba(111,182,255,0.22) 0%, rgba(31,124,198,0.12) 35%, rgba(0,0,0,0) 62%),
    linear-gradient(180deg, #145a92, var(--blue-700));
}

header.site-header{
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(15,74,126,0.66);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.container{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: max(var(--container-pad), env(safe-area-inset-left, 0px));
  padding-right: max(var(--container-pad), env(safe-area-inset-right, 0px));
  min-width: 0;
}

.header-inner{
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
  flex: 1 1 auto;
}

.brand-copy{
  min-width: 0;
}

.brand-logo{
  display: block;
  height: 64px;
  width: auto;
  max-width: min(260px, 52vw);
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.brand-tagline{
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
  margin-top: 0;
  line-height: 1.3;
}

.tabs{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  flex: 1 1 auto;
}

.tab-button{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: var(--white-90);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.tab-button:hover{
  transform: translateY(-1px);
  border-color: rgba(31,124,198,0.6);
}
.tab-button:focus-visible{
  outline: none;
  box-shadow: var(--focus);
}
.tab-button.is-active{
  background: rgba(169,214,255,0.18);
  border-color: rgba(111,182,255,0.75);
}

.tab-panel{
  display: none;
  padding: 22px 0 18px;
}
.tab-panel.is-active{
  display: block;
}

.panel-card{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(16px, 3vw, 22px);
  min-width: 0;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.hero{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  min-width: 0;
}
@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }
}

.hero-copy h1{
  margin: 6px 0 10px;
}
.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.10);
}

.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(111,182,255,0.55);
  background: rgba(169,214,255,0.12);
  color: rgba(255,255,255,0.90);
  font-weight: 750;
  font-size: 13px;
}

.hero-gallery{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  min-width: 0;
}
.hero-gallery .shot:nth-child(1){
  grid-column: 1 / -1;
}
.shot{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.10);
  min-width: 0;
  max-width: 100%;
}
.shot img{
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  filter: saturate(1.05) contrast(1.03);
}

.panel-card h1,
.panel-card h2{
  margin: 0 0 10px;
  color: var(--white);
}

.panel-card p{
  margin: 10px 0;
  color: rgba(255,255,255,0.88);
}

.lead{
  margin-top: 14px;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}
.muted{
  color: rgba(255,255,255,0.78);
}

/* Pricing illustration: PNG with real alpha (no mix-blend; keeps car/arrow colors accurate) */
.pricing-illustration-wrap{
  margin: 20px 0;
  text-align: center;
  max-width: 100%;
}
.pricing-illustration{
  display: block;
  margin: 0 auto;
  max-width: min(100%, 540px);
  width: 100%;
  height: auto;
}
.grid-2{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  min-width: 0;
}
@media (max-width: 920px){
  .grid-2{ grid-template-columns: 1fr; }
}

.form{
  margin-top: 14px;
}

.form-grid{
  display: grid;
  gap: 12px;
  min-width: 0;
}

.form-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.form-status{
  min-height: 18px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.btn{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(31,124,198,0.7);
  background: rgba(31,124,198,0.18);
}
.btn:focus-visible{
  outline: none;
  box-shadow: var(--focus);
}
.btn.btn-primary{
  border-color: rgba(111,182,255,0.80);
  background: linear-gradient(135deg, rgba(169,214,255,0.26), rgba(31,124,198,0.14));
}

.field{
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px;
}
.field-full{
  grid-column: 1 / -1;
}

.field-label{
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 8px;
  font-weight: 650;
}

.field-hint{
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.35;
}

/* Native date picker: clearer tap target + calendar affordance */
input[type="date"]{
  min-height: 44px;
  cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator{
  cursor: pointer;
  opacity: 0.9;
}

input, textarea, select, input.phone-us-input{
  width: 100%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  color: var(--black-900);
}
select{
  min-height: 44px;
  cursor: pointer;
}
input.phone-us-input{
  min-height: 44px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
textarea{ resize: vertical; }
input:focus, textarea:focus, select:focus, input.phone-us-input:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(31,124,198,0.28);
}

input[type="time"]{
  min-height: 44px;
  cursor: pointer;
}

.rating{
  position: relative;
  display: grid;
  grid-auto-flow: column;
  gap: 6px;
  justify-content: start;
  align-items: center;
}

.rating input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-star{
  user-select: none;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: rgba(17,24,39,0.35);
}

.rating-star.is-active{
  color: #0ea5e9;
}

.reviews-list{
  display: grid;
  gap: 10px;
}

.review-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px;
}
.review-meta{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.review-name{
  font-weight: 800;
  color: var(--white);
}
.review-rating{
  color: #0ea5e9;
  font-weight: 750;
}
.review-text{
  margin-top: 8px;
  color: rgba(255,255,255,0.88);
  white-space: pre-wrap;
}

.site-footer{
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
}
.footer-inner{
  padding-top: 6px;
}

