/* ============================================================
   RENT A DUMPSTER KC — custom.css
   Single consolidated stylesheet — no duplicates
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth; hanging-punctuation: first last; scroll-padding-top: 5rem;
}
body { min-height: 100dvh; line-height: 1.6; font-family: var(--font-body, sans-serif); font-size: var(--text-base); color: var(--color-text); background-color: var(--color-bg); }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
::selection { background: oklch(from var(--color-primary) l c h / 0.25); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }
a, button, [role="button"], input, textarea, select { transition: color var(--transition-interactive), background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive), opacity var(--transition-interactive); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --space-1:0.25rem; --space-2:0.5rem; --space-3:0.75rem; --space-4:1rem; --space-5:1.25rem;
  --space-6:1.5rem; --space-8:2rem; --space-10:2.5rem; --space-12:3rem; --space-16:4rem;
  --space-20:5rem; --space-24:6rem; --space-32:8rem;
  --color-bg: #faf9f7; --color-surface: #ffffff; --color-surface-2: #f5f3ef;
  --color-surface-offset: #ede9e3; --color-surface-dark: #1c1b19;
  --color-divider: rgba(40,35,25,0.10); --color-border: rgba(40,35,25,0.15);
  --color-text: #1e1c18; --color-text-muted: #6b6660; --color-text-faint: #b0aca6; --color-text-inverse: #faf9f7;
  --color-primary: #d4600a; --color-primary-hover: #b84e06; --color-primary-active: #943d04;
  --color-primary-light: #fff3eb; --color-primary-highlight: #fde5cc;
  --color-secondary: #1c2b3a; --color-secondary-hover: #14202d;
  --color-success: #2d7a3a; --color-success-bg: #e8f5eb;
  --color-error: #c0392b; --color-error-bg: #fdf0ee;
  --radius-sm:0.25rem; --radius-md:0.5rem; --radius-lg:0.75rem; --radius-xl:1rem; --radius-full:9999px;
  --transition-interactive: 180ms cubic-bezier(0.16,1,0.3,1);
  --shadow-sm:0 1px 3px rgba(30,28,24,0.07); --shadow-md:0 4px 14px rgba(30,28,24,0.09);
  --shadow-lg:0 12px 36px rgba(30,28,24,0.12); --shadow-xl:0 24px 60px rgba(30,28,24,0.15);
  --content-narrow:640px; --content-default:960px; --content-wide:1200px;
  --font-display:'Cabinet Grotesk','Arial Black',sans-serif;
  --font-body:'Satoshi','Helvetica Neue',sans-serif;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width:100%; max-width:var(--content-wide); margin-inline:auto; padding-inline:clamp(var(--space-4),4vw,var(--space-12)); }
.container--narrow { max-width:var(--content-default); }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link { position:absolute; top:-100%; left:var(--space-4); z-index:9999; padding:var(--space-2) var(--space-4); background:var(--color-primary); color:var(--color-text-inverse); font-size:var(--text-sm); font-weight:600; border-radius:var(--radius-md); text-decoration:none; transition:top 0.2s; }
.skip-link:focus { top:var(--space-4); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position:sticky; top:0; z-index:200; max-height:75px; overflow:visible; background:rgba(250,249,247,0.97); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border-bottom:1px solid var(--color-divider); transition:box-shadow var(--transition-interactive); }
.site-header.scrolled { box-shadow:var(--shadow-sm); }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:var(--space-6); height:75px; min-height:75px; max-height:75px; padding-block:0; overflow:visible; }

/* LOGO PENDANT */
.logo-pendant-wrap { position:relative; z-index:300; display:flex; align-items:center; gap:var(--space-3); flex-shrink:0; overflow:visible; }
.logo-pendant { display:flex; align-items:center; justify-content:center; width:135px; height:125px; background:#ffffff; border-radius:0 0 var(--radius-xl) var(--radius-xl); box-shadow:0 8px 24px rgba(30,28,24,0.16),0 2px 6px rgba(30,28,24,0.08); border:1px solid rgba(30,28,24,0.07); border-top:none; position:absolute; top:-19px; left:0; text-decoration:none; transition:width 0.35s cubic-bezier(0.16,1,0.3,1),height 0.35s cubic-bezier(0.16,1,0.3,1),box-shadow 0.35s cubic-bezier(0.16,1,0.3,1); flex-shrink:0; }
.logo-img--header { width:auto; height:135px; object-fit:contain; display:block; transition:height 0.35s cubic-bezier(0.16,1,0.3,1); pointer-events:none; }
.logo-brand-text { display:flex; flex-direction:column; line-height:1.15; text-decoration:none; color:var(--color-text); margin-left:145px; transition:margin-left 0.35s cubic-bezier(0.16,1,0.3,1); }
.logo-brand-text:hover .logo-name { color:var(--color-primary); }
.logo-name { font-family:var(--font-display); font-size:var(--text-base); font-weight:800; color:var(--color-text); letter-spacing:-0.02em; white-space:nowrap; }
.logo-tagline { font-size:var(--text-xs); color:var(--color-text-muted); font-weight:500; letter-spacing:0.04em; text-transform:uppercase; }
/* Scrolled pendant */
.site-header.scrolled .logo-pendant { width:60px; height:60px; top:0; position:relative; border-radius:var(--radius-md); border:1px solid var(--color-border); box-shadow:var(--shadow-sm); }
.site-header.scrolled .logo-img--header { height:44px; }
.site-header.scrolled .logo-brand-text { margin-left:0; }
.site-header.scrolled .logo-pendant-wrap { align-items:center; }

/* NAV */
.site-nav { display:flex; align-items:center; gap:var(--space-6); }
.nav-links { display:flex; align-items:center; gap:var(--space-6); list-style:none; }
.nav-links a { font-size:var(--text-sm); font-weight:500; color:var(--color-text-muted); text-decoration:none; }
.nav-links a:hover { color:var(--color-primary); }
.nav-phone { display:inline-flex; align-items:center; gap:var(--space-2); font-size:var(--text-sm); font-weight:700; color:var(--color-primary); text-decoration:none; white-space:nowrap; transition:color var(--transition-interactive); }
.nav-phone:hover { color:var(--color-primary-hover); }

/* MOBILE MENU */
.mobile-menu-btn { display:none; flex-direction:column; gap:5px; padding:var(--space-2); background:none; border:none; cursor:pointer; color:var(--color-text); }
.mobile-menu-btn span { display:block; width:24px; height:2px; background:currentColor; transition:all 0.3s; border-radius:2px; }
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  /* Float right so it doesn't sit under the pendant */
  margin-left: auto;
  width: calc(100% - 160px); /* leave room for pendant on left */
  max-width: 420px;
  background: #ffffff;
  border-top: 2px solid var(--color-primary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  /* Add top padding to clear pendant overhang on small screens */
  padding: var(--space-2) var(--space-4) var(--space-4);
  position: relative;
  z-index: 50;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 600; color: var(--color-text); text-decoration: none; padding: var(--space-3) 0; border-bottom: 1px solid var(--color-divider); display: block; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-primary); }
.mobile-nav .btn-primary { color: #ffffff; border-bottom: none; margin-top: var(--space-3); text-align: center; border-radius: var(--radius-md); }

/* BUTTONS */
.btn-primary { display:inline-flex; align-items:center; justify-content:center; gap:var(--space-2); padding:var(--space-3) var(--space-6); background:var(--color-primary); color:var(--color-text-inverse); font-family:var(--font-display); font-size:var(--text-sm); font-weight:700; letter-spacing:0.02em; text-decoration:none; border-radius:var(--radius-md); border:none; cursor:pointer; white-space:nowrap; transition:background var(--transition-interactive),transform var(--transition-interactive),box-shadow var(--transition-interactive); }
.btn-primary:hover { background:var(--color-primary-hover); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-primary:active { background:var(--color-primary-active); transform:translateY(0); }
.btn-secondary { display:inline-flex; align-items:center; justify-content:center; gap:var(--space-2); padding:var(--space-3) var(--space-6); background:transparent; color:var(--color-text); font-family:var(--font-display); font-size:var(--text-sm); font-weight:700; letter-spacing:0.02em; text-decoration:none; border-radius:var(--radius-md); border:2px solid var(--color-border); cursor:pointer; white-space:nowrap; transition:all var(--transition-interactive); }
.btn-secondary:hover { border-color:var(--color-primary); color:var(--color-primary); }
.btn-large { padding:var(--space-4) var(--space-10); font-size:var(--text-base); }

/* ============================================================
   HERO
   ============================================================ */
.hero { display:flex; flex-direction:column; position:relative; overflow:hidden; background:#1c2b3a; min-height:clamp(480px,68vh,760px); padding-top:90px; }
.hero-body { position:relative; flex:1; display:flex; align-items:center; }
.hero-overlay { display:none !important; }
.hero-content { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:clamp(var(--space-6),4vw,var(--space-12)); align-items:center; padding-block:clamp(var(--space-8),5vw,var(--space-14)); width:100%; }
.hero-left { display:flex; flex-direction:column; gap:0; }
.hero-right { display:flex; align-items:center; justify-content:center; }
.hero-badge { display:inline-flex; align-items:center; gap:var(--space-2); padding:var(--space-2) var(--space-4); background:rgba(212,96,10,0.2); border:1px solid rgba(212,96,10,0.4); border-radius:var(--radius-full); color:#ffb47a; font-size:var(--text-xs); font-weight:600; letter-spacing:0.06em; text-transform:uppercase; margin-bottom:var(--space-5); }
.hero h1 { font-family:var(--font-display); font-size:clamp(2.2rem,4.5vw,4rem); font-weight:900; color:#ffffff; letter-spacing:-0.03em; line-height:1.05; margin-bottom:var(--space-4); }
.hero h1 em { font-style:normal; color:#ff8c38; }
.hero-description { font-size:var(--text-base); color:rgba(255,255,255,0.8); line-height:1.65; margin-bottom:var(--space-8); max-width:100%; }
.hero-dba { font-size:var(--text-sm); color:rgba(255,255,255,0.65); margin-top:var(--space-3); margin-bottom:0; }
.hero-actions { display:flex; flex-direction:row; flex-wrap:wrap; align-items:center; gap:var(--space-4); margin-bottom:var(--space-10); }
.btn-hero { padding:var(--space-4) var(--space-10); font-size:var(--text-base); font-weight:800; }
.hero-phone-link { display:inline-flex; align-items:center; gap:var(--space-2); color:rgba(255,255,255,0.85); font-size:var(--text-base); font-weight:700; text-decoration:none; white-space:nowrap; }
.hero-phone-link:hover { color:#ff8c38; }
.hero-dumpster-img { width:100%; max-width:500px; height:auto; display:block; object-fit:contain; filter:drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
.hero-dumpster-wrap { display:flex; align-items:center; justify-content:center; width:100%; }
.hero-description a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

.hero-description a:hover {
  color: #d4600a;
  text-decoration: none;
}

/* TRUST STRIP — below hero body */
.hero-trust-strip { width:100%; background:rgba(0,0,0,0.35); border-top:1px solid rgba(255,255,255,0.15); padding:var(--space-4) 0; position:relative; z-index:10; flex-shrink:0; display:block !important; overflow:hidden; }
.trust-strip-scroll { display:flex !important; flex-wrap:nowrap; align-items:center; justify-content:center; gap:clamp(var(--space-6),4vw,var(--space-10)); padding-inline:clamp(var(--space-6),4vw,var(--space-12)); overflow-x:auto; scrollbar-width:none; -ms-overflow-style:none; }
.trust-strip-scroll::-webkit-scrollbar { display:none; }
.hero-trust-strip .trust-item { display:flex !important; align-items:center; gap:6px; color:rgba(255,255,255,0.92) !important; font-size:0.82rem !important; font-weight:600 !important; white-space:nowrap; flex-shrink:0; }
.hero-trust-strip .trust-item svg { color:#ff8c38 !important; flex-shrink:0; }

/* SAVINGS BANNER */
.savings-banner { background:linear-gradient(90deg,#1c2b3a 0%,#d4600a 100%); padding-block:var(--space-4); }
.savings-banner-inner { display:flex; align-items:center; gap:var(--space-5); flex-wrap:wrap; }
.savings-banner-icon { color:#ffb47a; flex-shrink:0; }
.savings-banner-text { flex:1; min-width:200px; display:flex; flex-wrap:wrap; gap:var(--space-2); align-items:center; color:#fff; font-size:var(--text-sm); }
.savings-banner-text strong { font-family:var(--font-display); font-size:var(--text-base); font-weight:800; color:#fff; }
.savings-banner-text span { color:rgba(255,255,255,0.75); }
.savings-banner-cta { display:inline-flex; align-items:center; gap:var(--space-2); padding:var(--space-2) var(--space-5); background:rgba(255,255,255,0.15); border:1.5px solid rgba(255,255,255,0.35); border-radius:var(--radius-full); color:#fff; font-size:var(--text-sm); font-weight:700; text-decoration:none; white-space:nowrap; transition:all var(--transition-interactive); }
.savings-banner-cta:hover { background:rgba(255,255,255,0.25); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block:clamp(var(--space-12),7vw,var(--space-24)); }
.section--alt { background:var(--color-surface-2); }
.section--dark { background:var(--color-secondary); color:var(--color-text-inverse); }
.section-label { display:inline-block; font-size:var(--text-xs); font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--color-primary); margin-bottom:var(--space-3); }
.section-title { font-family:var(--font-display); font-size:var(--text-2xl); font-weight:900; color:var(--color-text); letter-spacing:-0.03em; line-height:1.1; margin-bottom:var(--space-4); }
.section--dark .section-title { color:#ffffff; }
.section-subtitle { font-size:var(--text-base); color:var(--color-text-muted); max-width:60ch; line-height:1.65; margin-bottom:clamp(var(--space-8),4vw,var(--space-8)); }
.section--dark .section-subtitle { color:rgba(255,255,255,0.65); }

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section { background:var(--color-surface); padding-block:clamp(var(--space-16),8vw,var(--space-24)); }
.booking-header { text-align:center; margin-bottom:clamp(var(--space-10),5vw,var(--space-16)); }
.booking-steps { display:flex; align-items:flex-start; justify-content:center; gap:0; margin-bottom:var(--space-10); flex-wrap:nowrap; overflow-x:auto; padding-bottom:var(--space-2); background:none; border:none; }
.step-item { display:flex; flex-direction:column; align-items:center; gap:var(--space-2); flex:1; min-width:80px; max-width:140px; position:relative; cursor:pointer; background:none; border:none; padding:0; font-family:var(--font-body); }
.step-item:disabled { cursor:default; opacity:0.5; }
.step-item:not(:last-child)::after { content:''; position:absolute; top:18px; left:calc(50% + 18px); right:calc(-50% + 18px); height:2px; background:var(--color-border); z-index:0; transition:background var(--transition-interactive); }
.step-item.done:not(:last-child)::after,
.step-item.active:not(:last-child)::after { background:var(--color-primary); }
.step-num { width:36px; height:36px; border-radius:var(--radius-full); border:2px solid var(--color-border); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:var(--text-sm); font-weight:700; color:var(--color-text-muted); background:var(--color-surface); position:relative; z-index:1; transition:all var(--transition-interactive); }
.step-item.active .step-num { border-color:var(--color-primary); background:var(--color-primary); color:white; }
.step-item.done .step-num { border-color:var(--color-success); background:var(--color-success); color:white; }
.step-label { font-size:var(--text-xs); font-weight:600; color:var(--color-text-faint); text-align:center; letter-spacing:0.02em; white-space:nowrap; }
.step-item.active .step-label { color:var(--color-primary); }
.step-item.done .step-label { color:var(--color-success); }
.step-item:not(:disabled):hover .step-num { border-color:var(--color-primary); color:var(--color-primary); }
.step-item.active:hover .step-num,
.step-item.done:hover .step-num { opacity:0.85; }
.booking-panel { display:none; animation:fadeSlideUp 0.35s cubic-bezier(0.16,1,0.3,1); }
.booking-panel.active { display:block; }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.booking-layout { display:grid; grid-template-columns:1fr 320px; gap:clamp(var(--space-8),4vw,var(--space-12)); align-items:start; }
.panel-title { font-family:var(--font-display); font-size:var(--text-lg); font-weight:800; color:var(--color-text); margin-bottom:var(--space-2); }
.panel-subtitle { font-size:var(--text-sm); color:var(--color-text-muted); margin-bottom:var(--space-6); line-height:1.55; }
.panel-nav { display:flex; justify-content:space-between; align-items:center; margin-top:var(--space-8); padding-top:var(--space-6); border-top:1.5px solid var(--color-divider); }
.btn-back { display:inline-flex; align-items:center; gap:var(--space-2); font-size:var(--text-sm); font-weight:600; color:var(--color-text-muted); background:none; border:none; cursor:pointer; padding:var(--space-2) 0; }
.btn-back:hover { color:var(--color-text); }

/* SIZE CARDS */
.size-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:var(--space-4); margin-bottom:var(--space-8); }
.size-card { position:relative; border:2px solid var(--color-border); border-radius:var(--radius-lg); padding:var(--space-4); background:var(--color-surface); display:flex; flex-direction:column; gap:var(--space-1); transition:all var(--transition-interactive); }
.size-card:hover { border-color:rgba(212,96,10,0.4); box-shadow:var(--shadow-md); }
.size-card.selected { border-color:var(--color-primary); background:var(--color-primary-light); box-shadow:0 0 0 3px rgba(212,96,10,0.12); }
.size-card.size-featured { border-color:var(--color-primary); }
.size-radio { position:absolute; opacity:0; pointer-events:none; }
.size-card-check { position:absolute; top:var(--space-3); right:var(--space-3); width:22px; height:22px; border-radius:var(--radius-full); border:2px solid var(--color-border); display:flex; align-items:center; justify-content:center; transition:all var(--transition-interactive); }
.size-card.selected .size-card-check { border-color:var(--color-primary); background:var(--color-primary); color:white; }
.size-yards { font-family:var(--font-display); font-size:var(--text-2xl); font-weight:900; color:var(--color-primary); letter-spacing:-0.04em; line-height:1; margin-bottom:0; display:flex; align-items:baseline; gap:2px; }
.size-yards-unit { font-size:55%; font-weight:800; letter-spacing:0.01em; color:var(--color-primary); line-height:1; }
.size-label-text { font-size:var(--text-sm); font-weight:700; color:var(--color-text); margin-top:-14px; margin-bottom:var(--space-2); }
.size-trucks { font-size:var(--text-xs); color:var(--color-text-muted); font-style:italic; margin-bottom:var(--space-1); }
.size-dims { font-size:var(--text-xs); color:var(--color-text-muted); line-height:1.5; margin-bottom:var(--space-2); }
.size-best { position:absolute; top:-10px; left:var(--space-4); background:var(--color-primary); color:white; font-size:var(--text-xs); font-weight:700; padding:2px var(--space-3); border-radius:var(--radius-full); letter-spacing:0.04em; text-transform:uppercase; }
.size-price-wrap { margin-top:var(--space-2); }
.size-price { font-family:var(--font-display); font-size:var(--text-xl); font-weight:900; color:var(--color-text); letter-spacing:-0.02em; line-height:1.1; }
.size-price-note { font-size:var(--text-xs); color:var(--color-text-muted); font-weight:500; }
.size-overage { font-size:var(--text-xs); color:var(--color-text-faint); margin-top:2px; }
.day-toggle { display:flex; gap:var(--space-2); background:var(--color-surface-2); border-radius:var(--radius-md); padding:3px; margin-top:var(--space-1); margin-bottom:var(--space-1); }
.day-btn { flex:1; padding:var(--space-1) var(--space-2); border-radius:calc(var(--radius-md) - 2px); border:none; background:transparent; color:var(--color-text-muted); font-size:0.68rem; font-weight:700; cursor:pointer; transition:all var(--transition-interactive); white-space:nowrap; letter-spacing:0.01em; }
.day-btn:hover { color:var(--color-text); background:rgba(212,96,10,0.08); }
.day-btn.active { background:var(--color-primary); color:#fff; box-shadow:var(--shadow-sm); }
.btn-add-to-cart { width:100%; padding:var(--space-3); background:var(--color-secondary); color:#fff; border:none; border-radius:var(--radius-md); font-family:var(--font-display); font-size:var(--text-sm); font-weight:700; cursor:pointer; transition:all var(--transition-interactive); margin-top:var(--space-2); }
.btn-add-to-cart:hover { background:var(--color-primary); transform:translateY(-1px); }
.size-card.selected .btn-add-to-cart { background:var(--color-primary); }
.overage-note { font-size:var(--text-xs); color:var(--color-text-muted); margin-bottom:var(--space-4); }

/* FORM FIELDS */
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-5); margin-bottom:var(--space-6); }
.form-col-full { grid-column:1 / -1; }
.form-group { display:flex; flex-direction:column; gap:var(--space-2); }
.form-label { font-size:var(--text-sm); font-weight:600; color:var(--color-text); }
.form-label span.req { color:var(--color-error); margin-left:2px; }
.form-input, .form-select, .form-textarea { width:100%; padding:var(--space-3) var(--space-4); border:1.5px solid var(--color-border); border-radius:var(--radius-md); font-size:var(--text-base); color:var(--color-text); background:var(--color-surface); transition:border-color var(--transition-interactive),box-shadow var(--transition-interactive); -webkit-appearance:none; appearance:none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline:none; border-color:var(--color-primary); box-shadow:0 0 0 3px rgba(212,96,10,0.12); }
.form-select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6660' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right var(--space-3) center; padding-right:var(--space-10); cursor:pointer; }
.form-hint { font-size:var(--text-xs); color:var(--color-text-muted); }
.time-surcharge-note { display:none !important; }
.time-surcharge-note.visible { display:block !important; }
input[type="date"] { cursor:pointer; }
input[type="date"]::-webkit-calendar-picker-indicator { width:100%; height:100%; position:absolute; top:0; left:0; opacity:0; cursor:pointer; }
.form-group:has(input[type="date"]) { position:relative; }

/* ADDRESS ROW */
.address-row { display:grid; grid-template-columns:3fr 2fr 1fr 0.9fr; gap:var(--space-3); align-items:start; }
.address-field { display:flex; flex-direction:column; gap:var(--space-1); }
.address-sublabel { font-size:0.68rem; font-weight:600; color:var(--color-text-muted); letter-spacing:0.05em; text-transform:uppercase; padding-left:2px; }
/* Billing address columns */
.payment-card .address-row { grid-template-columns:2.5fr 1.8fr 1fr 0.9fr !important; }

/* ADDONS */
.addon-section { margin-bottom:var(--space-8); }
.addon-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:var(--space-3); }
.addon-group-label { font-family:var(--font-display); font-size:var(--text-sm); font-weight:800; color:var(--color-text); margin-bottom:var(--space-3); padding-bottom:var(--space-2); border-bottom:2px solid var(--color-divider); text-transform:uppercase; letter-spacing:0.05em; }
.addon-card { display:flex; align-items:flex-start; gap:var(--space-3); padding:var(--space-4); border:1.5px solid var(--color-border); border-radius:var(--radius-md); cursor:pointer; background:var(--color-surface); transition:all var(--transition-interactive); }
.addon-card:hover, .addon-card.checked { border-color:var(--color-primary); background:var(--color-primary-light); }
.addon-card input[type="checkbox"] { flex-shrink:0; width:18px; height:18px; margin-top:2px; accent-color:var(--color-primary); cursor:pointer; }
.addon-card-text { flex:1; }
.addon-card-name { font-size:var(--text-sm); font-weight:700; color:var(--color-text); margin-bottom:2px; }
.addon-card-desc { font-size:var(--text-xs); color:var(--color-text-muted); line-height:1.45; }
.addon-card-price { font-size:var(--text-sm); font-weight:800; color:var(--color-primary); white-space:nowrap; margin-left:auto; flex-shrink:0; padding-left:var(--space-2); }

/* PAYMENT */
.payment-card { background:var(--color-surface); border:1.5px solid var(--color-border); border-radius:var(--radius-xl); padding:clamp(var(--space-6),4vw,var(--space-10)); margin-bottom:var(--space-6); }
.payment-card-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:var(--space-6); flex-wrap:wrap; gap:var(--space-3); }
.payment-card-title { font-family:var(--font-display); font-size:var(--text-lg); font-weight:800; color:var(--color-text); }
.billing-match-note { display:flex; align-items:center; gap:var(--space-2); font-size:var(--text-xs); font-weight:600; color:var(--color-primary); background:var(--color-primary-light); border:1px solid var(--color-primary-highlight); border-radius:var(--radius-md); padding:var(--space-2) var(--space-4); margin-bottom:var(--space-5); }
.billing-match-note svg { flex-shrink:0; }
.card-icons { display:flex; gap:var(--space-2); align-items:center; }
.security-badge { display:flex; align-items:center; gap:var(--space-2); font-size:var(--text-xs); color:var(--color-text-muted); margin-top:var(--space-4); }
.security-badge svg { color:var(--color-success); }

/* ORDER SUMMARY */
.order-summary { background:var(--color-surface-2); border:1.5px solid var(--color-border); border-radius:var(--radius-xl); padding:var(--space-6); position:sticky; top:calc(5rem + var(--space-4)); }
.order-summary-title { font-family:var(--font-display); font-size:var(--text-lg); font-weight:800; color:var(--color-text); margin-bottom:var(--space-5); padding-bottom:var(--space-3); border-bottom:1.5px solid var(--color-divider); }
.order-line { display:flex; justify-content:space-between; align-items:baseline; gap:var(--space-3); font-size:var(--text-sm); color:var(--color-text-muted); padding-block:var(--space-2); }
.order-line.total { font-family:var(--font-display); font-size:var(--text-base); font-weight:800; color:var(--color-text); border-top:2px solid var(--color-border); margin-top:var(--space-3); padding-top:var(--space-4); }
.order-line-price { font-weight:700; color:var(--color-text); white-space:nowrap; }
#summary-subtotal-row, #summary-tax-row { font-size:var(--text-xs); color:var(--color-text-muted); padding-block:var(--space-1); }
#summary-tax-row { border-bottom:1.5px solid var(--color-divider); padding-bottom:var(--space-3); }
.savings-summary-nudge { display:flex; align-items:center; gap:var(--space-2); margin-top:var(--space-5); padding:var(--space-3) var(--space-4); background:rgba(212,96,10,0.08); border:1.5px solid rgba(212,96,10,0.2); border-radius:var(--radius-md); color:var(--color-primary); font-size:var(--text-xs); font-weight:700; text-decoration:none; transition:all var(--transition-interactive); }
.savings-summary-nudge:hover { background:rgba(212,96,10,0.15); }

/* AGREEMENT */
.agreement-check-wrap { margin-bottom:var(--space-6); padding:var(--space-4) var(--space-5); background:var(--color-surface-2); border:1.5px solid var(--color-border); border-radius:var(--radius-md); }
.agreement-check-label { display:flex; align-items:flex-start; gap:var(--space-3); cursor:pointer; font-size:var(--text-sm); color:var(--color-text); line-height:1.5; }
.agreement-check-label input[type="checkbox"] { flex-shrink:0; width:20px; height:20px; margin-top:1px; accent-color:var(--color-primary); cursor:pointer; }
.agreement-inline-link { background:none; border:none; color:var(--color-primary); font-weight:700; font-size:inherit; cursor:pointer; text-decoration:underline; text-underline-offset:2px; padding:0; font-family:inherit; transition:color var(--transition-interactive); }
.agreement-inline-link:hover { color:var(--color-primary-hover); }

/* AGREEMENT MODAL */
.agreement-backdrop { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:900; backdrop-filter:blur(2px); }
.agreement-backdrop.open { display:block; animation:fadeIn 0.2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.agreement-modal { display:none; position:fixed; top:50%; left:50%; transform:translate(-50%,-40%); z-index:901; background:var(--color-surface); border-radius:var(--radius-xl); box-shadow:var(--shadow-xl); width:min(600px,calc(100vw - 32px)); max-height:85vh; overflow:hidden; flex-direction:column; border-top:4px solid var(--color-primary); opacity:0; transition:transform 0.35s cubic-bezier(0.16,1,0.3,1),opacity 0.3s ease; }
.agreement-modal.open { display:flex; transform:translate(-50%,-50%); opacity:1; }
.agreement-modal-inner { display:flex; flex-direction:column; height:100%; overflow:hidden; }
.agreement-modal-header { display:flex; align-items:center; justify-content:space-between; padding:var(--space-5) var(--space-6); border-bottom:1px solid var(--color-divider); flex-shrink:0; background:var(--color-surface); }
.agreement-modal-title { font-family:var(--font-display); font-size:var(--text-base); font-weight:800; color:var(--color-text); margin:0; letter-spacing:-0.01em; }
.agreement-close-btn { display:flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:var(--radius-full); background:var(--color-surface-2); border:1px solid var(--color-border); color:var(--color-text); cursor:pointer; flex-shrink:0; transition:all var(--transition-interactive); }
.agreement-close-btn:hover { background:var(--color-primary); color:white; border-color:var(--color-primary); }
.agreement-body { overflow-y:auto; padding:var(--space-6); flex:1; scroll-behavior:smooth; -webkit-overflow-scrolling:touch; }
.agreement-body h3 { font-family:var(--font-display); font-size:var(--text-base); font-weight:800; color:var(--color-text); margin-top:var(--space-8); margin-bottom:var(--space-2); letter-spacing:-0.01em; }
.agreement-body h3:first-of-type { margin-top:0; }
.agreement-body p { font-size:var(--text-sm); color:var(--color-text-muted); line-height:1.7; margin-bottom:var(--space-4); max-width:80ch; }
.agreement-body ul { margin:var(--space-3) 0 var(--space-4) var(--space-6); }
.agreement-body ul li { font-size:var(--text-sm); color:var(--color-text-muted); line-height:1.6; margin-bottom:var(--space-2); list-style:disc; }
.agreement-meta { font-size:var(--text-xs) !important; color:var(--color-text-faint) !important; font-style:italic; margin-bottom:var(--space-8) !important; padding-bottom:var(--space-4); border-bottom:1px solid var(--color-divider); }
.agreement-updated { font-size:var(--text-xs) !important; color:var(--color-text-faint) !important; margin-top:var(--space-8) !important; padding-top:var(--space-4); border-top:1px solid var(--color-divider); font-style:italic; }
.agreement-trigger { color:rgba(255,255,255,0.55) !important; cursor:pointer; text-decoration:none; transition:color var(--transition-interactive); }
.agreement-trigger:hover { color:#ff8c38 !important; }
/* Signature */
.agreement-signature-wrap { background:var(--color-surface-2); border:2px solid var(--color-primary); border-radius:var(--radius-lg); padding:var(--space-6); margin-top:var(--space-8); }
.sig-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-4); margin-bottom:var(--space-4); }
.sig-input { font-family:var(--font-display) !important; font-size:var(--text-base) !important; font-style:italic; }
.sig-legal-note { font-size:var(--text-xs) !important; color:var(--color-text-muted) !important; line-height:1.5 !important; margin-bottom:var(--space-4) !important; max-width:none !important; }
.btn-agree-sign { width:100%; padding:var(--space-4); font-size:var(--text-base); justify-content:center; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--space-6); }
.how-step { padding:var(--space-6); }
.how-step-num { font-family:var(--font-display); font-size:clamp(3rem,6vw,5rem); font-weight:900; color:rgba(212,96,10,0.55); line-height:1; margin-bottom:var(--space-3); letter-spacing:-0.05em; }
.how-step-title { font-family:var(--font-display); font-size:var(--text-lg); font-weight:800; color:var(--color-text); margin-bottom:var(--space-3); }
.how-step-desc { font-size:var(--text-base); color:var(--color-text-muted); line-height:1.6; max-width:28ch; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:var(--space-4); }
.project-card { display:flex; align-items:center; gap:var(--space-3); padding:var(--space-5); background:var(--color-surface); border-radius:var(--radius-lg); border:1.5px solid var(--color-border); transition:all var(--transition-interactive); }
.project-card:hover { border-color:var(--color-primary); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.project-icon { width:40px; height:40px; border-radius:var(--radius-md); background:var(--color-primary-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--color-primary); }
.project-name { font-size:var(--text-sm); font-weight:700; color:var(--color-text); line-height:1.3; }

/* ============================================================
   SAVINGS SECTION
   ============================================================ */
.savings-section { background:var(--color-secondary); color:white; }
.savings-top-row { display:flex; align-items:flex-start; justify-content:space-between; gap:var(--space-10); margin-bottom:var(--space-10); }
.savings-top-left { flex:1; min-width:0; }
.savings-twelve-badge { display:flex; flex-direction:column; align-items:center; justify-content:center; flex-shrink:0; width:160px; height:160px; background:var(--color-primary); border-radius:var(--radius-xl); padding:var(--space-5); text-align:center; }
.savings-twelve-badge .savings-big-number { font-family:var(--font-display); font-size:4rem; font-weight:900; color:#fff; line-height:1; letter-spacing:-0.05em; }
.savings-twelve-badge .savings-hero-label { font-size:var(--text-xs); font-weight:700; color:rgba(255,255,255,0.8); text-transform:uppercase; letter-spacing:0.07em; text-align:center; margin-top:var(--space-2); }
.savings-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--space-4); margin-bottom:var(--space-8); }
.savings-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius-lg); padding:var(--space-5); transition:background var(--transition-interactive); }
.savings-card:hover { background:rgba(255,255,255,0.1); }
.savings-pct { font-family:var(--font-display); font-size:var(--text-2xl); font-weight:900; color:#ff8c38; letter-spacing:-0.04em; line-height:1; margin-bottom:var(--space-2); }
.savings-title { font-family:var(--font-display); font-size:var(--text-base); font-weight:800; color:#fff; margin-bottom:var(--space-2); }
.savings-desc { font-size:var(--text-sm); color:rgba(255,255,255,0.6); line-height:1.5; }
.savings-bonus-strip { display:flex; flex-direction:column; gap:var(--space-4); padding:var(--space-6); background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius-lg); }
.savings-bonus-item { display:flex; align-items:flex-start; gap:var(--space-3); font-size:var(--text-sm); color:rgba(255,255,255,0.7); line-height:1.5; }
.savings-bonus-item svg { flex-shrink:0; color:#ff8c38; margin-top:2px; }
.savings-bonus-item strong { color:#fff; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.area-state-label { font-family:var(--font-display); font-size:var(--text-xs); font-weight:800; color:var(--color-primary); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:var(--space-4); }
.areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:var(--space-2); }
.area-item { display:flex; align-items:center; gap:var(--space-2); font-size:var(--text-sm); color:var(--color-text-muted); padding:var(--space-2) 0; }
.area-item::before { content:''; width:6px; height:6px; border-radius:var(--radius-full); background:var(--color-primary); flex-shrink:0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:var(--space-5); }
.testimonial-card { background:var(--color-surface); border:1.5px solid var(--color-border); border-radius:var(--radius-xl); padding:var(--space-6); display:flex; flex-direction:column; gap:var(--space-4); }
.stars { display:flex; gap:3px; color:#f5a623; }
.testimonial-text { font-size:var(--text-base); color:var(--color-text); line-height:1.65; flex:1; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:var(--space-3); padding-top:var(--space-3); border-top:1px solid var(--color-divider); }
.author-avatar { width:40px; height:40px; border-radius:var(--radius-full); background:var(--color-primary-highlight); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:800; font-size:var(--text-sm); color:var(--color-primary); flex-shrink:0; }
.author-name { font-size:var(--text-sm); font-weight:700; color:var(--color-text); }
.author-location { font-size:var(--text-xs); color:var(--color-text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width:760px; margin-inline:auto; }
.faq-item { border-bottom:1.5px solid var(--color-divider); }
.faq-question { display:flex; justify-content:space-between; align-items:center; gap:var(--space-4); padding-block:var(--space-5); cursor:pointer; font-family:var(--font-display); font-size:var(--text-base); font-weight:700; color:var(--color-text); background:none; border:none; width:100%; text-align:left; transition:color var(--transition-interactive); }
.faq-question:hover { color:var(--color-primary); }
.faq-question svg { flex-shrink:0; transition:transform 0.3s; }
.faq-item.open .faq-question svg { transform:rotate(180deg); }
.faq-answer { display:none; padding-bottom:var(--space-5); font-size:var(--text-base); color:var(--color-text-muted); line-height:1.65; max-width:65ch; }
.faq-item.open .faq-answer { display:block; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { background:var(--color-primary); padding-block:clamp(var(--space-12),7vw,var(--space-20)); text-align:center; }
.cta-section .section-title { color:#ffffff; }
.cta-section .section-subtitle { color:rgba(255,255,255,0.8); margin-inline:auto; margin-bottom:var(--space-8); }
.btn-cta-white { display:inline-flex; align-items:center; justify-content:center; gap:var(--space-2); padding:var(--space-4) var(--space-10); background:#fff; color:var(--color-primary); font-family:var(--font-display); font-size:var(--text-base); font-weight:900; text-decoration:none; border-radius:var(--radius-md); transition:all var(--transition-interactive); }
.btn-cta-white:hover { background:#fff3eb; transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.18); }
.btn-cta-outline { display:inline-flex; align-items:center; justify-content:center; gap:var(--space-2); padding:var(--space-4) var(--space-8); background:rgba(255,255,255,0.12); color:#fff; font-family:var(--font-display); font-size:var(--text-base); font-weight:800; text-decoration:none; border-radius:var(--radius-md); border:2px solid rgba(255,255,255,0.3); transition:all var(--transition-interactive); }
.btn-cta-outline:hover { background:rgba(255,255,255,0.22); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background:var(--color-secondary); color:rgba(255,255,255,0.75); padding-block:clamp(var(--space-12),6vw,var(--space-20)); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:clamp(var(--space-8),5vw,var(--space-16)); margin-bottom:var(--space-12); }
.footer-logo-lockup { display:flex; align-items:center; gap:var(--space-3); margin-bottom:var(--space-4); }
.logo-img--footer { height:100px; width:auto; display:block; object-fit:contain; flex-shrink:0; filter:none !important; opacity:1 !important; }
.footer-brand-text { display:flex; flex-direction:column; gap:2px; }
.footer-brand-name { font-family:var(--font-display); font-size:var(--text-base); font-weight:800; color:#ffffff; letter-spacing:-0.01em; white-space:nowrap; }
.footer-brand-sub { font-size:var(--text-xs); color:rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:0.06em; font-weight:500; }
.footer-desc { font-size:var(--text-sm); color:rgba(255,255,255,0.55); line-height:1.65; margin-top:var(--space-4); max-width:34ch; }
.footer-phone { display:flex; align-items:center; gap:var(--space-2); color:#ff8c38; font-size:var(--text-base); font-weight:700; text-decoration:none; margin-top:var(--space-4); }
.footer-phone:hover { color:#ffb47a; }
.footer-col-title { font-family:var(--font-display); font-size:var(--text-sm); font-weight:800; color:#ffffff; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:var(--space-4); }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:var(--space-2); }
.footer-links a { font-size:var(--text-sm); color:rgba(255,255,255,0.55); text-decoration:none; transition:color var(--transition-interactive); }
.footer-links a:hover { color:rgba(255,255,255,0.9); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding-top:var(--space-6); display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:var(--space-4); }
.footer-copy { font-size:var(--text-xs); color:rgba(255,255,255,0.4); }
.footer-recommend { font-size:var(--text-xs); color:rgba(255,255,255,0.45); }
.footer-recommend a { color:#ff8c38; font-weight:700; text-decoration:none; }
.footer-recommend a:hover { text-decoration:underline; }
.footer-copy a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

.footer-copy a:hover {
  color: #d4600a;
  text-decoration: none;
}

/* ============================================================
   CONFIRMATION PANEL
   ============================================================ */
.confirmation-panel { text-align:center; padding:var(--space-12) var(--space-4); }
.confirm-icon { width:72px; height:72px; border-radius:var(--radius-full); background:var(--color-success-bg); color:var(--color-success); display:flex; align-items:center; justify-content:center; margin-inline:auto; margin-bottom:var(--space-6); }
.confirm-title { font-family:var(--font-display); font-size:var(--text-2xl); font-weight:900; color:var(--color-text); letter-spacing:-0.03em; margin-bottom:var(--space-4); }
.confirm-desc { font-size:var(--text-base); color:var(--color-text-muted); max-width:48ch; margin-inline:auto; line-height:1.65; }
.confirm-spam-warning { display:flex; align-items:flex-start; gap:var(--space-3); background:#fff3f3; border:2px solid #c0392b; border-radius:var(--radius-md); padding:var(--space-4) var(--space-5); margin:var(--space-5) auto; max-width:500px; text-align:left; font-size:var(--text-sm); color:#c0392b; line-height:1.55; }
.confirm-spam-warning svg { flex-shrink:0; margin-top:3px; color:#c0392b; }
.confirm-spam-warning strong { display:block; font-size:var(--text-base); margin-bottom:4px; }
.confirm-contact-block { margin-top:var(--space-6); display:flex; flex-direction:column; align-items:center; gap:var(--space-3); }
.confirm-contact-label { font-size:var(--text-sm); color:var(--color-text-muted); margin:0; }
.confirm-phone, .confirm-email { display:inline-flex; align-items:center; gap:var(--space-2); color:var(--color-primary); font-weight:700; font-size:var(--text-base); text-decoration:none; transition:color var(--transition-interactive); }
.confirm-phone:hover, .confirm-email:hover { color:var(--color-primary-hover); text-decoration:underline; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.rev { opacity:0; transform:translateY(20px); transition:opacity .5s cubic-bezier(.16,1,.3,1),transform .5s cubic-bezier(.16,1,.3,1); }
.rev.in { opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce) { .rev { opacity:1; transform:none; transition:none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:900px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .steps-row { grid-template-columns:1fr 1fr; }
  .booking-layout { grid-template-columns:1fr; }
  .order-summary { position:static; margin-bottom:var(--space-6); }
  .savings-top-row { flex-direction:column-reverse; gap:var(--space-6); }
  .savings-twelve-badge { width:100%; height:auto; flex-direction:row; justify-content:flex-start; gap:var(--space-4); padding:var(--space-4) var(--space-6); border-radius:var(--radius-lg); }
  .savings-twelve-badge .savings-big-number { font-size:2.5rem; }
  .savings-grid { grid-template-columns:repeat(2,1fr); }
  .hero-content { grid-template-columns:1fr !important; }
  .hero-right { display:none; }
}
@media (max-width:1179px) {
  .site-nav { display:none; }
  .mobile-menu-btn { display:flex; }
}
@media (max-width:768px) {
  .form-grid { grid-template-columns:1fr; }
  .form-col-full { grid-column:auto; }
  .booking-steps { justify-content:flex-start; }
  .step-label { display:none; }
  .trust-strip-scroll { flex-wrap:wrap !important; justify-content:flex-start !important; gap:var(--space-3) var(--space-5) !important; padding:var(--space-3) var(--space-4) !important; }
  .address-row { grid-template-columns:1fr 1fr; }
  .address-street { grid-column:1 / -1; }
  body, p, li, span, a, label, input, select, textarea, button, .form-hint, .form-label, .size-trucks, .size-dims, .addon-card-desc, .addon-card-name, .order-line, .section-subtitle, .footer-desc, .footer-links a, .faq-answer, .testimonial-text, .how-step-desc, .savings-desc, .area-item, .project-name { font-size:max(16px,1rem) !important; }
  .form-input, .form-select, .form-textarea { font-size:16px !important; }
  .address-sublabel, .size-overage, .form-hint, .footer-copy, .footer-recommend { font-size:14px !important; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
  .steps-row { grid-template-columns:1fr; }
  .size-grid { grid-template-columns:1fr 1fr; }
  .savings-grid { grid-template-columns:1fr 1fr; }
  .projects-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .size-grid { grid-template-columns:1fr; }
  .savings-grid { grid-template-columns:1fr; }
  .sig-grid { grid-template-columns:1fr; }
  .mobile-nav {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

/* When mobile menu is open, collapse pendant so it doesn't block nav items */
.site-header.menu-open .logo-pendant {
  width: 54px !important;
  height: 54px !important;
  top: 0 !important;
  position: relative !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: none !important;
  margin-top: 0 !important;
}
.site-header.menu-open .logo-img--header {
  height: 38px !important;
}
.site-header.menu-open .logo-brand-text {
  margin-left: 0 !important;
}

/* ============================================================
   BOOKING FORM (ported from rent15yarddumpster.com)
   Re-themed to use rentadumpsterkc.com design tokens
   ============================================================ */
/* ── BOOKING SECTION ──────────────────────────────────────────── */
.book-section {
  background: var(--color-surface-2);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  border-bottom: 1px solid var(--color-border);
}

.booking-layout { display: flex; flex-direction: column; gap: var(--space-8); }

/* Step bar */
.steps-bar {
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-8);
  box-shadow: var(--shadow-xs);
  overflow-x: auto;
  scrollbar-width: none;
}
.steps-bar::-webkit-scrollbar { display: none; }
.step-connector { flex: 1; height: 2px; background: var(--color-border); min-width: var(--space-6); }
.step-item {
  display: flex; align-items: center; gap: var(--space-3);
  background: none; border: none; cursor: pointer;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  color: var(--clr-text-faint);
  white-space: nowrap;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 2px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700; color: var(--color-text-muted);
  flex-shrink: 0;
}
.step-label { font-size: var(--text-sm); font-weight: 600; font-family: var(--font-display); letter-spacing: 0.04em; text-transform: uppercase; }
.step-item.active .step-num { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.step-item.active { color: var(--color-text); }
.step-item.done .step-num { background: rgba(212, 96, 10,0.1); border-color: var(--color-primary); color: var(--color-primary); }
.step-item.done { color: var(--color-primary); }
.step-item:disabled { opacity: 0.4; cursor: not-allowed; }

.booking-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-8);
  align-items: start;
}
.panels-wrap { order: 1; }
.order-summary { order: 2; }

/* Order Summary */
.order-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(80px + var(--space-4));
  box-shadow: var(--shadow-xs);
}
.summary-head {
  background: var(--clr-charcoal);
  color: #fff;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.summary-body { padding: var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: 0; }
.summary-body > .order-line { margin-bottom: var(--space-2); }
.summary-body > #summary-addons-container { margin-bottom: 0; }
.order-line { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--color-text-muted); gap: var(--space-2); margin: 0; padding: 0; }
.order-line-price { font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.order-divider { height: 1px; background: var(--color-border); margin: var(--space-2) 0; }
.order-total { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--color-text); }
#summary-total { color: var(--color-primary); }
.summary-note {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: 13px; color: var(--clr-text-faint);
}
.summary-note svg { color: var(--clr-text-faint); width: 14px; height: 14px; flex-shrink: 0; }
.lock-red { color: var(--color-primary) !important; }

/* Panels */
.booking-panel { display: none; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-xs); }
.booking-panel.active { display: block; }

.panel-title { font-size: var(--text-xl); margin-bottom: var(--space-6); color: var(--clr-charcoal); text-transform: uppercase; }
.panel-sub { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: calc(-1 * var(--space-4)); margin-bottom: var(--space-6); }

/* Single dumpster card */
.dumpster-display { margin-bottom: var(--space-8); }
.size-card {
  background: var(--color-surface-2);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.size-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
.size-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--clr-charcoal); text-transform: uppercase; margin-bottom: var(--space-2); }
.size-dims { font-size: var(--text-sm); color: var(--color-text-muted); }
.size-weight { font-size: var(--text-sm); color: var(--color-primary); font-weight: 700; margin-top: var(--space-1); }
.size-price-block { text-align: right; }
.price-val { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-primary); line-height: 1; }
.price-note { font-size: var(--text-xs); color: var(--clr-text-faint); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.day-row { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); flex-wrap: wrap; }
.day-row-label { font-size: var(--text-sm); color: var(--color-text-muted); font-weight: 600; white-space: nowrap; }
.day-btns { display: flex; gap: var(--space-2); }
.day-btn {
  padding: 0.4rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: transparent;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
}
.day-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.day-btn.active { border-color: var(--color-primary); background: var(--color-primary-light); color: var(--color-primary); }

.size-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.size-use { font-size: var(--text-xs); color: var(--color-text-muted); flex: 1; max-width: 52ch; line-height: 1.6; }
.btn-add-to-cart {
  padding: 0.6rem 1.4rem;
  background: var(--clr-charcoal);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
}
.btn-add-to-cart:hover { background: var(--color-primary); }

.more-days-note { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: var(--space-3); }
.more-days-note a { color: var(--color-primary); }

/* Fields */
.field-group { display: flex; flex-direction: column; gap: var(--space-5); margin-bottom: var(--space-8); }
.field-group-label { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-3); margin-bottom: calc(-1 * var(--space-2)); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field-row { display: grid; gap: var(--space-5); }
.field-row.two-col { grid-template-columns: 1fr 1fr; }
.field-row.three-col { grid-template-columns: 2fr 1fr 1fr; }

label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text-muted); }
.req { color: var(--color-primary); margin-left: 2px; }
.optional { font-weight: 400; color: var(--clr-text-faint); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.5;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 96, 10,0.1);
}
input::placeholder, textarea::placeholder { color: var(--clr-text-faint); }
select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2356606e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 80px; }
.field-note { font-size: var(--text-xs); color: var(--color-primary); margin-top: var(--space-1); display: none; }
.field-note.visible, #time-surcharge-note { display: block; }

/* Add-ons */
.addon-section-title {
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--clr-charcoal);
  margin: var(--space-8) 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--clr-charcoal);
}
.addon-section-title:first-of-type { margin-top: 0; }
.addon-section-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin: calc(-1 * var(--space-2)) 0 var(--space-3);
  font-style: italic;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.addon-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  user-select: none;
}
.addon-card:hover { border-color: var(--color-primary); }
.addon-card.checked { border-color: var(--color-primary); background: var(--color-primary-light); }
.addon-card input[type="checkbox"] { display: none; }
.addon-check {
  width: 18px; height: 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.addon-card.checked .addon-check { background: var(--color-primary); border-color: var(--color-primary); }
.addon-card.checked .addon-check::after { content: '✓'; font-size: 11px; color: #fff; font-weight: 900; }
.addon-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.addon-top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: -4px !important;
}
.addon-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.2;
}
.addon-price {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Agreement */
.agreement-check-wrap {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
}
.agree-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.agree-label input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--color-primary); }

.form-error {
  background: rgba(212, 96, 10,0.06);
  border: 1px solid rgba(212, 96, 10,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm); color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.panel-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap; gap: var(--space-4);
}

/* Confirm */
.confirm-wrap { text-align: center; padding: var(--space-12) var(--space-8); }
.confirm-icon { margin: 0 auto var(--space-6); color: var(--color-primary); }
.confirm-icon svg { width: 64px; height: 64px; }
.confirm-title { font-size: var(--text-xl); margin-bottom: var(--space-5); color: var(--color-primary); text-transform: uppercase; }
.confirm-msg { font-size: var(--text-base); color: var(--color-text-muted); max-width: 55ch; margin: 0 auto var(--space-4); }
.confirm-tip { font-size: var(--text-sm); color: var(--clr-text-faint); margin-top: var(--space-8); }
.confirm-msg a { color: var(--color-primary); }

@media (max-width: 960px) { .booking-body { grid-template-columns: 1fr; } .order-summary { position: static; } }

  /* ===== v3.2 booking-form card top layout + extra days ===== */
  .orderform .dc-image {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 100px;
    margin: 0 0 12px;
    object-fit: contain;
    object-position: center;
  }
  .orderform .dumpster-card[data-product-id="11"] .dc-image { height: 120px; }

  /* Card top: image LEFT, yard name + price stacked RIGHT */
  .orderform .dc-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
  }
  .orderform .dc-top .dc-image {
    flex: 0 0 110px;
    width: 110px;
    max-width: 110px;
    height: 80px;
    margin: 0;
    object-fit: contain;
    object-position: center;
  }
  .orderform .dumpster-card[data-product-id="11"] .dc-top .dc-image { height: 92px; }
  .orderform .dc-title-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    padding-left: 20px;
  }
  .orderform .dc-title-col .dc-name { margin: 0; line-height: 1.1; }
  .orderform .dc-title-col .dc-price-inline { margin: 0; }
  .orderform .dc-title-col .dc-dims { margin: 4px 0 0 0; }

  /* Extra-days stepper row */
  .orderform .dc-extra-days {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 16px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
  }
  .orderform .dc-extra-stepper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fafafa;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    padding: 2px 4px;
  }
  .orderform .dc-extra-stepper button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    padding: 0;
  }
  .orderform .dc-extra-stepper button:hover { background: #ececec; }
  .orderform .dc-extra-stepper button:disabled { color: #bbb; cursor: not-allowed; }
  .orderform .dc-extra-stepper .dc-extra-val {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
  }
  .orderform .dc-extra-rate {
    font-size: 12px;
    color: #666;
  }

  @media (max-width: 600px) { .field-row.two-col, .field-row.three-col { grid-template-columns: 1fr; } .addon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .addon-grid { grid-template-columns: 1fr; } }


/* ── AGREEMENT DRAWER ─────────────────────────────── */
/* ── AGREEMENT DRAWER ─────────────────────────────────────────── */
.agreement-backdrop {
  position: fixed; inset: 0;
  background: rgba(26,31,46,0.6);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.agreement-backdrop.open { opacity: 1; pointer-events: auto; }

.agreement-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(540px, 100vw);
  background: #fff;
  border-left: 1px solid var(--color-border);
  z-index: 300;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}
.agreement-drawer.open { transform: translateX(0); }

.agreement-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-border);
  background: var(--clr-charcoal);
  flex-shrink: 0;
}
.agreement-header h2 { font-size: var(--text-lg); color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.agreement-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); padding: var(--space-2);
  border-radius: var(--radius-md);
}
.agreement-close:hover { color: #fff; }
.agreement-close svg { width: 20px; height: 20px; }

.agreement-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
}

.sig-field { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-4); }
.sig-field label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text-muted); }


/* ── ORDERFORM SCOPED STYLES ─────────────────────── */
   the .orderform wrapper). The template's cart SVG uses viewBox
   "0 0 24 24" with stroke-width 2 on a path that starts at y=1,
   so the top of the handle gets clipped by the SVG bounding box.
   Forcing overflow:visible on the icon + giving the button a tiny
   bit of breathing room keeps the full cart glyph rendered.
   ---------------------------------------------------------------- */
.odoo-cart-btn svg,
#sp-top-bar .odoo-btn svg,
#sp-top-bar svg { overflow: visible; }

#sp-top-bar .odoo-cart-btn,
#sp-top-bar .odoo-btn {
  align-items: center;
  line-height: 1;
}

/* =============================================
   SCOPED STYLES — ALL SELECTORS PREFIXED WITH
   .orderform or #orderform
   No body / html / :root selectors used
   ============================================= */

  .orderform *,
  .orderform *::before,
  .orderform *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .orderform {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    font-size: 16px;
    color: #1a1f2e;
    line-height: 1.5;
    background: #ffffff;
    padding: 0 0 48px 0;
    margin-top: 30px;
  }

  /* ---- ACCOUNT BAR ---- */
  .orderform .acct-bar {
    background: #efefef;
    border-radius: 5px 5px 0px 0px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-wrap: wrap;
    position: relative;
  }

  .orderform .acct-bar span { color: #555; }

  /* Phase 4.3.41 — Login icon + word vertically aligned. */
  .orderform .acct-bar-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
  }
  .orderform .acct-bar-btn svg { display: block; }

  .orderform .acct-bar-btn:hover { color: var(--color-primary-hover); }

  .orderform .acct-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }

  .orderform .acct-user-info strong { color: #1a1f2e; }

  /* ---- LOGIN DROPDOWN ---- */
  /* Login popup */
  .orderform .login-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .orderform .login-popup-overlay.open {
    display: flex;
  }
  .orderform .login-popup-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    max-width: 95vw;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    position: relative;
  }
  .orderform .login-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
  }
  .orderform .login-popup-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
  }
  .orderform .login-popup-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 0 4px;
  }
  .orderform .login-popup-close:hover { color: #222; }
  .orderform .login-popup-body {
    padding: 24px 20px;
  }
  .orderform .login-popup-body .field-group {
    margin-bottom: 14px;
  }
  .orderform .login-popup-body label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
  }
  .orderform .login-popup-body input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #222;
    box-sizing: border-box;
  }
  .orderform .login-popup-body input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  .orderform .login-popup-error {
    background: var(--color-primary-light);
    border: 1px solid #f5c0c0;
    color: #c0392b;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 12px;
    display: none;
  }
  .orderform .login-popup-btn {
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
  }
  .orderform .login-popup-btn:hover { background: var(--color-primary-hover); }
  .orderform .login-popup-footer {
    text-align: center;
    padding: 12px 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
  }
  .orderform .login-popup-footer a {
    color: var(--color-primary);
    text-decoration: none;
  }

  /* Policy popup */
  .orderform .policy-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
  }
  .orderform .policy-popup-overlay.open {
    display: flex;
  }
  .orderform .policy-popup-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 700px;
    max-width: 96vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  }
  .orderform .policy-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    flex-shrink: 0;
  }
  .orderform .policy-popup-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
  }
  .orderform .policy-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 0 4px;
  }
  .orderform .policy-popup-close:hover { color: #222; }
  .orderform .policy-popup-frame {
    width: 100%;
    flex: 1;
    border: none;
    min-height: 500px;
  }
  .orderform .view-policy-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    color: #415781;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
  }
  .orderform .view-policy-link:hover { color: var(--color-primary); }

  /* ---- MAIN LAYOUT ---- */
  .orderform .form-outer {
    max-width: 1100px;
    margin: 24px auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
    background: #ffffff;
    overflow: visible;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
  }

  @media (max-width: 860px) {
    .orderform .form-outer {
      grid-template-columns: 1fr;
    }
  }

  .orderform .form-main { min-width: 0; }

  /* ---- STEP INDICATOR ---- */
  .orderform .step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 4px 0;
  }

  .orderform .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    position: relative;
  }

  .orderform .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
  }

  .orderform .step-item.active::after,
  .orderform .step-item.completed::after {
    background: var(--color-primary);
  }

  .orderform .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }

  .orderform .step-item.active .step-circle {
    background: var(--color-primary);
    color: #fff;
  }

  .orderform .step-item.completed .step-circle {
    background: var(--color-primary);
    color: #fff;
  }

  /* FIX 8 — Clickable completed steps */
  .orderform .step-item.completed { cursor: pointer; }
  .orderform .step-item.completed:hover .step-circle { background: var(--color-primary-hover); }

  .orderform .step-label {
    font-size: 16px;
    color: #888;
    margin-top: 5px;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
  }

  .orderform .step-item.active .step-label { color: var(--color-primary); font-weight: 700; }
  .orderform .step-item.completed .step-label { color: var(--color-primary); }

  /* ---- FORM CARD ---- */
  .orderform .form-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 16px;
  }

  .orderform .form-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1f2e;
  }

  .orderform .form-card .step-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }

  /* ---- DUMPSTER CARDS ---- */
  .orderform .dumpster-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  @media (max-width: 600px) {
    .orderform .dumpster-grid { grid-template-columns: 1fr; }
  }

  .orderform .dumpster-card {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  }

  /* FIX 1 — Selected dumpster: orange left-border + light tint */
  .orderform .dumpster-card:hover { border-color: var(--color-primary); box-shadow: 0 2px 12px rgba(212, 96, 10,0.1); }
  .orderform .dumpster-card.selected {
    border-left: 4px solid var(--color-primary);
    border-top-color: #e8e8e8;
    border-right-color: #e8e8e8;
    border-bottom-color: #e8e8e8;
    background: var(--color-primary-light);
    box-shadow: 0 4px 16px rgba(212, 96, 10,0.10);
  }

  .orderform .dumpster-card .dc-badge {
    position: absolute;
    top: -1px;
    right: 12px;
    background: var(--color-success);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .orderform .dumpster-card .dc-check {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  .orderform .dumpster-card.selected .dc-check { display: flex; }

  /* FIX 7 — Compact card layout */
  .orderform .dc-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  .orderform .dc-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f2e;
  }

  .orderform .dc-price-inline {
    display: flex;
    align-items: baseline;
    gap: 3px;
  }

  .orderform .dc-price-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
  }

  .orderform .dc-price-per {
    font-size: 13px;
    color: #888;
  }

  .orderform .dc-dims {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
  }

  /* FIX 6 — Call Us line */
  .orderform .dc-call-line {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
    margin: 12px 0;
  }

  .orderform .call-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
  }

  .orderform .call-link:hover { text-decoration: underline; }

  /* FIX 5 — Badge row */
  .orderform .dc-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
  }

  .orderform .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 5px;
    line-height: 1.6;
  }

  .orderform .badge-gray {
    background: #f0f0f0;
    color: #444;
    border: 1px solid #ddd;
  }

  .orderform .badge-stock {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    background: #f0f0f0;
    color: #aaa;
  }

  .orderform .badge-stock-in {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
  }

  .orderform .badge-stock-out {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
  }

  .orderform .card-unavailable {
    opacity: 0.55;
    pointer-events: none;
  }

  .orderform .card-unavailable .dc-select-btn {
    background: #aaa !important;
    cursor: not-allowed;
  }

  /* rental toggle */
  .orderform .rental-toggle {
    display: flex;
    background: transparent;
    border-radius: 6px;
    padding: 0;
    gap: 8px;
    margin-bottom: 12px;
  }

  .orderform .rental-btn {
    flex: 1;
    padding: 8px 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    cursor: pointer;
    background: #fafafa;
    color: #555;
    transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  }
  .orderform .rental-btn:hover {
    background: #f0f0f0;
    border-color: #bdbdbd;
    color: #333;
  }

  .orderform .rental-btn.active {
    background: #2c4669;
    color: #fff;
    border-color: #2c4669;
    box-shadow: 0 2px 6px rgba(44,70,105,0.25);
  }

  .orderform .dc-select-btn {
    display: block;
    width: 100%;
    padding: 9px;
    background: #444444;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
  }

  .orderform .dc-select-btn:hover { background: var(--color-primary); }
  .orderform .dumpster-card.selected .dc-select-btn { background: #222222; }

  /* ---- FORM FIELDS ---- */
  .orderform .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  /* FIX 3 — 3-column city/state/zip row */
  .orderform .field-row-3 {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-start;
  }

  .orderform .field-row-3 .field-group { flex: 1; }
  .orderform .field-row-3 .field-city { flex: 3; }
  .orderform .field-row-3 .field-state { flex: 1; min-width: 70px; }
  .orderform .field-row-3 .field-zip { flex: 1; min-width: 80px; }

  @media (max-width: 600px) {
    .orderform .field-row-3 {
      flex-direction: column;
    }
    .orderform .field-row-3 .field-city,
    .orderform .field-row-3 .field-state,
    .orderform .field-row-3 .field-zip {
      flex: none;
      width: 100%;
    }
  }

  /* FIX — Delivery Details row (Date / Time / Return Date)
     The main form column is ~770px when sidebar is visible and shrinks further on
     mid-size screens. Three equal flex:1 columns squash labels onto 2 lines and
     leave barely any room for the mm/dd/yyyy placeholder or the time dropdown.
     This rule gives Date and Time generous equal width, keeps Return Date compact
     (it only shows a short date or "—"), and stacks cleanly on narrower widths. */
  .orderform .of-delivery-row {
    display: grid;
    grid-template-columns: minmax(160px, 1.2fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-end;
  }
  .orderform .of-delivery-row .field-group { min-width: 0; }
  /* Keep primary label text on one line; let the small (auto-calculated)
     hint wrap to a second line if the column is very narrow — that’s better
     than ellipsing the required-field marker. */
  .orderform .of-delivery-row > .field-group > label {
    white-space: normal;
    line-height: 1.25;
  }
  /* Keep the date placeholder ("mm / dd / yyyy") on a single line */
  .orderform #of-cal-display-text { white-space: nowrap; }
  .orderform #of-cal-display { gap: 8px; }

  /* When main column narrows (tablet / sidebar-open desktop), put Date + Time on
     row 1 and Return Date on its own row 2 so nothing gets crushed. */
  @media (max-width: 900px) {
    .orderform .of-delivery-row {
      grid-template-columns: 1fr 1fr;
    }
    .orderform .of-delivery-row > .field-group:nth-child(3) {
      grid-column: 1 / -1;
    }
  }

  /* Phone: full stack */
  @media (max-width: 520px) {
    .orderform .of-delivery-row {
      grid-template-columns: 1fr;
    }
    .orderform .of-delivery-row > .field-group:nth-child(3) {
      grid-column: auto;
    }
  }

  /* Payment row: Card Number on row 1 full-width; Expiration + CVV side-by-side
     on row 2. On desktop, keep the original 3-column grid so it reads in one line. */
  .orderform .of-card-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
  }
  @media (max-width: 600px) {
    .orderform .of-card-row {
      grid-template-columns: 1fr 1fr;
    }
    .orderform .of-card-row .of-card-number {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 500px) {
    .orderform .field-row { grid-template-columns: 1fr; }
  }

  .orderform .field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
  }

  .orderform .field-group.no-mb { margin-bottom: 0; }

  .orderform label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1f2e;
  }

  .orderform .field-optional {
    font-weight: 400;
    color: #999;
    font-size: 12px;
  }

  .orderform input[type="text"],
  .orderform input[type="email"],
  .orderform input[type="tel"],
  .orderform input[type="date"],
  .orderform select,
  .orderform textarea {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1f2e;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
    -webkit-appearance: none;
  }

  .orderform textarea {
    height: auto;
    min-height: 80px;
    padding: 10px 12px;
    resize: vertical;
  }

  .orderform input:focus,
  .orderform select:focus,
  .orderform textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 96, 10,0.12);
  }

  .orderform input.error,
  .orderform select.error,
  .orderform textarea.error {
    border-color: #c62828;
  }

  .orderform .field-error {
    font-size: 12px;
    color: #c62828;
    display: none;
  }

  .orderform .field-error.show { display: block; }

  .orderform .field-hint {
    font-size: 12px;
    color: #888;
  }

  /* select arrow */
  .orderform .select-wrap {
    position: relative;
  }

  .orderform .select-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
  }

  .orderform .select-wrap select { padding-right: 32px; }

  /* FIX 2 — Time slot grid */
  .orderform .time-slot-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f2e;
    margin-bottom: 4px;
  }

  .orderform .time-slot-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
  }

  /* time slot dropdown (FIX 1) */
  .orderform .time-slot-select-wrap {
    position: relative;
  }
  .orderform .time-slot-select-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
  }
  .orderform .time-slot-select-wrap select {
    padding-right: 32px;
  }

  /* return date field */
  .orderform .return-date-display {
    background: #f5f5f5;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 14px;
    color: #555;
  }

  /* ---- EMAIL CHECK NOTICE ---- */
  .orderform .email-check-notice {
    background: var(--color-primary-light);
    border: 1px solid #f5c88a;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #7a4a00;
    display: none;
    margin-top: 6px;
  }

  .orderform .email-check-notice.show { display: block; }
  .orderform .email-check-notice a { color: var(--color-primary); cursor: pointer; font-weight: 600; }

  /* FIX 6 — Input icon wrapper */
  .orderform .input-icon-wrap { position: relative; }
  .orderform .input-icon-wrap .field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #888;
    pointer-events: none;
    flex-shrink: 0;
  }
  .orderform .input-icon-wrap input { padding-left: 38px; }

  /* ---- ADD-ONS ---- */
  .orderform .addon-group-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1f2e;
    margin: 20px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
  }

  .orderform .addon-group-label:first-child { margin-top: 0; }

  .orderform .addon-group-note {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    margin-left: 6px;
  }

  /* ---- COLLAPSIBLE ADDON GROUPS ---- */
  .orderform .addon-group-collapsible .addon-group-label { cursor: pointer; user-select: none; margin-top: 20px; }
  .orderform .addon-group-toggle-icon {
    margin-left: 8px; font-size: 12px; color: var(--color-primary); font-weight: 700;
  }
  .orderform .addon-collapsible-body { display: none; }
  .orderform .addon-group-collapsible.open .addon-collapsible-body { display: block; }
  .orderform .addon-group-preview {
    font-size: 12px; color: #888; margin: 4px 0 8px; font-style: italic;
  }

  .orderform .addon-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* FIX 1 — Addon selected: 2px border + tint bg */
  /* Phase 4.3.41 — checkbox aligns with title (flex-start), not visual center. */
  .orderform .addon-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    user-select: none;
  }

  .orderform .addon-card:hover { border-color: var(--color-primary); box-shadow: 0 2px 8px rgba(212, 96, 10,0.08); }
  .orderform .addon-card.addon-selected { border: 2px solid var(--color-primary); background: var(--color-primary-light); }

    .orderform .addon-indicator {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #aaa;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
    min-width: 20px;
    /* Phase 4.3.41 — nudge down so the checkbox sits on the addon-name line */
    margin-top: 1px;
  }

  .orderform .addon-card[data-type="radio"] .addon-indicator { border-radius: 50%; }
  .orderform .addon-card[data-type="checkbox"] .addon-indicator { border-radius: 4px; }

    .orderform .addon-card.addon-selected .addon-indicator {
    background: var(--color-primary);
    border-color: var(--color-primary);
  }

  .orderform .addon-indicator-check {
    display: none;
    color: #fff;
  }

  .orderform .addon-card.addon-selected .addon-indicator-check { display: block; }

  .orderform .addon-info { flex: 1; }
  .orderform .addon-name { font-size: 15px; font-weight: 600; color: #1a1f2e; line-height: 20px; }
  .orderform .addon-desc { font-size: 12px; color: #777; margin-top: 2px; }
  /* Phase 4.3.41 — price hugs title line at the top */
  .orderform .addon-price { font-size: 15px; font-weight: 700; color: var(--color-primary); flex-shrink: 0; line-height: 20px; }

  /* weekend notice */
  .orderform .weekend-notice {
    background: #fff8e1;
    border: 1px solid #ffcc02;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #5a4000;
    display: none;
    margin-bottom: 16px;
    align-items: center;
    gap: 8px;
  }

  .orderform .weekend-notice.show { display: flex; }

  /* ---- REVIEW STEP ---- */
  /* review-layout now defined below with FIX 9 styles */

  .orderform .review-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    margin-bottom: 10px;
  }

  .orderform .review-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    color: #1a1f2e;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
  }

  .orderform .review-line:last-child { border-bottom: none; }
  .orderform .review-line .rl-label { color: #555; flex: 1; }
  .orderform .review-line .rl-value { font-weight: 600; text-align: right; }

  .orderform .review-total {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    padding: 12px 0 0;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--color-primary);
    margin-top: 6px;
  }

  .orderform .review-customer-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: #333;
  }

  .orderform .review-customer-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 13px;
  }

  .orderform .review-customer-line .rc-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    min-width: 14px;
    height: 1em;
    flex-shrink: 0;
  }

  .orderform .review-customer-line .rc-icon {
    width: 13px;
    height: 13px;
    color: #888;
    display: block;
  }



  /* Force today's date to appear white/available in native date picker */
  .orderform input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none;
  }
  /* Chrome/Edge override for greyed-out appearance of selectable dates */
  .orderform input[type="date"] {
    color-scheme: light;
  }
  /* Firefox: force today's date cell to appear available */
  @-moz-document url-prefix() {
    .orderform input[type="date"] {
      color-scheme: light only;
    }
  }

  /* agreement */
  .orderform .agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }

  .orderform .agreement-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    accent-color: var(--color-primary);
    margin-top: 2px;
    cursor: pointer;
  }

  .orderform .agreement-row label {
    font-size: 14px;
    font-weight: 400;
    color: #1a1f2e;
    cursor: pointer;
  }

  .orderform .agreement-link {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    font-weight: 600;
  }

  /* sig field */
  .orderform .sig-field input {
    font-style: italic;
    font-family: Georgia, serif;
    font-size: 16px;
  }

  /* ---- BUTTONS ---- */
  .orderform .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
  }

  .orderform .btn-primary:hover:not(:disabled) { background: #444 !important; }

  /* =====================================================================
     HOVER LOCK — Prevent Joomla template from growing buttons on hover.
     Only color changes are allowed on hover; every size/layout/transform
     vector is locked to its rest-state value. Covers buttons AND anchors.
     ===================================================================== */
  .orderform button,
  .orderform a.btn,
  .orderform .btn-primary,
  .orderform .btn-secondary,
  .orderform button:hover,
  .orderform button:focus,
  .orderform button:active,
  .orderform button:focus-visible,
  .orderform a.btn:hover,
  .orderform a.btn:focus,
  .orderform a.btn:active,
  .orderform .btn-primary:hover,
  .orderform .btn-primary:focus,
  .orderform .btn-primary:active,
  .orderform .btn-primary:focus-visible,
  .orderform .btn-secondary:hover,
  .orderform .btn-secondary:focus,
  .orderform .btn-secondary:active,
  .orderform .btn-secondary:focus-visible {
    transform: none !important;
    -webkit-transform: none !important;
    scale: none !important;
    zoom: 1 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s !important;
  }

  /* Lock exact padding, font-size, font-weight, line-height, and dimensions
     across all states so the button cannot grow on hover/focus/active. */
  .orderform .btn-primary,
  .orderform .btn-primary:hover,
  .orderform .btn-primary:focus,
  .orderform .btn-primary:active,
  .orderform .btn-primary:focus-visible {
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    min-height: 0 !important;
    max-height: none !important;
    border-width: 0 !important;
    margin: 0 !important;
  }
  .orderform .btn-primary.large,
  .orderform .btn-primary.large:hover,
  .orderform .btn-primary.large:focus,
  .orderform .btn-primary.large:active,
  .orderform .btn-primary.large:focus-visible {
    padding: 15px 28px !important;
    font-size: 16px !important;
  }
  .orderform .btn-secondary,
  .orderform .btn-secondary:hover,
  .orderform .btn-secondary:focus,
  .orderform .btn-secondary:active,
  .orderform .btn-secondary:focus-visible {
    padding: 11px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    border-width: 1.5px !important;
    margin: 0 !important;
  }

  .orderform .btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .orderform .btn-primary.full { width: 100%; }
  .orderform .btn-primary.large { padding: 15px 28px; font-size: 16px; }

  /* FIX 1 — Secondary buttons: white bg, orange border + text */
  .orderform .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    background: #fff;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }

  .orderform .btn-secondary:hover { background: var(--color-primary-light); color: var(--color-primary-hover); border-color: var(--color-primary-hover); }

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

  .orderform .step-nav-right { margin-left: auto; }

  /* ---- SIDEBAR ---- */
  /* FIX 11 — Sticky sidebar */
  .orderform .sidebar {
    position: sticky;
    top: 99px;
    align-self: flex-start;
  }

  .orderform .sidebar-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    font-size: 14px;
  }

  .orderform .sidebar-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1f2e;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .orderform .sb-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px 0;
    color: #444;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
  }

  .orderform .sb-line .sb-label { flex: 1; }
  .orderform .sb-line .sb-val {
    font-weight: 600;
    text-align: right;
    color: var(--color-primary);
  }

  .orderform .sb-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 8px 0;
  }

  .orderform .sb-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    padding-top: 8px;
    border-top: 2px solid var(--color-primary);
    margin-top: 4px;
  }

  .orderform .sidebar-empty {
    color: #aaa;
    font-size: 13px;
    text-align: center;
    padding: 12px 0;
  }

  /* ---- MOBILE SUMMARY TOGGLE ---- */
  .orderform .mobile-summary-toggle {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    width: 100%;
  }

  .orderform .mobile-summary-toggle span.mst-total { color: #1a1f2e; font-weight: 700; }

  @media (max-width: 860px) {
    .orderform .mobile-summary-toggle { display: flex; }
    .orderform .sidebar { position: static; max-height: none; overflow-y: visible; }
  }

  .orderform .mobile-summary-body {
    display: none;
  }

  .orderform .mobile-summary-body.open {
    display: block;
  }

  /* ---- MODAL ---- */
  .orderform .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    display: none;
  }

  .orderform .modal-overlay.open { display: flex; }

  .orderform .modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  }

  .orderform .modal-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1f2e;
  }

  .orderform .modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    font-family: inherit;
  }

  .orderform .modal-close:hover { color: #1a1f2e; }

  .orderform .modal-body {
    font-size: 13px;
    color: #333;
    line-height: 1.65;
  }
  .orderform .modal-body h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 22px 0 8px;
    color: #1a1f2e;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
  }
  .orderform .modal-body h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 16px 0 6px;
    color: #1a1f2e;
  }
  .orderform .modal-body h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 14px 0 6px;
    color: #1a1f2e;
  }
  .orderform .modal-body p { margin-bottom: 10px; }
  .orderform .modal-body ul { margin: 0 0 12px 20px; }
  .orderform .modal-body ul li { margin-bottom: 8px; }
  .orderform .modal-body a { color: var(--color-primary); font-weight: 600; text-decoration: none; }
  .orderform .modal-body a:hover { text-decoration: underline; }
  .orderform .modal-divider { height: 1px; background: #e8e8e8; margin: 16px 0; }
  .orderform .modal-fee-box {
    background: #f5f7fa; border-left: 4px solid var(--color-primary);
    padding: 12px 14px; margin: 12px 0; border-radius: 4px; font-size: 13px;
  }
  .orderform .modal-insurance-note {
    background: #fff8e1; border-left: 4px solid #ffb300;
    padding: 10px 12px; margin: 10px 0; font-style: italic; border-radius: 4px; font-size: 12px;
  }
  .orderform .modal-allcaps { text-transform: uppercase; font-weight: bold; color: var(--color-primary); }

  /* ---- SUCCESS STATE ---- */
  .orderform .success-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .orderform .success-icon {
    width: 72px;
    height: 72px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .orderform .success-state h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 10px;
  }

  .orderform .success-state p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
  }

  .orderform .success-state .order-num {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 12px 0;
  }

  /* ---- LOADING SPINNER ---- */
  .orderform .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ofspin 0.7s linear infinite;
    vertical-align: middle;
  }

  @keyframes ofspin {
    to { transform: rotate(360deg); }
  }

  /* ---- ERROR BANNER ---- */
  .orderform .error-banner {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #c62828;
    display: none;
    margin-bottom: 14px;
  }

  .orderform .error-banner.show { display: block; }

  /* ---- STEP VISIBILITY ---- */
  .orderform .form-step { display: none; }
  .orderform .form-step.active { display: block; }


  /* ---- PAYMENT SECTION (FIX 15) ---- */
  .orderform .payment-section { margin-top: 0; }

  .orderform .payment-notice {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #795548;
    margin-bottom: 20px;
  }

  .orderform .card-logos {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
  }

  .orderform .card-logo {
    width: 40px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    background: #fff;
    color: #888;
    opacity: 0.45;
    transition: opacity 0.2s, border-color 0.2s;
    cursor: default;
  }

  .orderform .card-logo.active {
    opacity: 1;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(212, 96, 10,0.12);
  }

  .orderform .cvv-tooltip {
    display: none;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px 9px;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
  }

  #of-cvv-help:hover .cvv-tooltip { display: block; }

  /* ---- UTILS ---- */
  .orderform .mt8 { margin-top: 8px; }
  .orderform .mt16 { margin-top: 16px; }
  .orderform .mb0 { margin-bottom: 0; }

  /* ---- FIX 7 — DISCOUNT NOTE ---- */
  .orderform .sb-discount-note {
    margin-top: 14px;
    padding: 12px 14px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    font-size: 13px;
  }
  .orderform .sb-discount-title {
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 6px;
    font-size: 13px;
  }
  .orderform .sb-discount-list {
    padding-left: 16px;
    margin: 0 0 6px 0;
    color: #444;
  }
  .orderform .sb-discount-list li { margin-bottom: 3px; }
  .orderform .sb-discount-note-text {
    font-size: 12px;
    color: #777;
    margin: 0;
    font-style: italic;
  }

  /* ---- FIX 9 — REVIEW LAYOUT ---- */
  .orderform .review-layout {
    display: block;
  }
  @media (max-width: 860px) {
    .orderform .review-layout { grid-template-columns: 1fr; }
  }
  /* Rent15 — Most Popular badge on 15-yard dumpster card */
  .orderform .dumpster-card { position: relative; }
  .orderform .popular-badge {
    position: absolute; top: -10px; right: 12px;
    background: var(--color-primary); color: #fff;
    font-size: 11px; font-weight: 800;
    padding: 3px 10px; border-radius: 999px;
    letter-spacing: 0.06em; text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(212, 96, 10,0.35);
    z-index: 2;
    font-family: var(--font-display);
  }
  /* Inherit site typography (Satoshi body + Cabinet Grotesk display) */
  .orderform, .orderform input, .orderform select, .orderform textarea, .orderform button {
    font-family: var(--font-body);
  }
  .orderform .step-title,
  .orderform .dumpster-name,
  .orderform h2, .orderform h3, .orderform h4 {
    font-family: var(--font-display);
    letter-spacing: 0.01em;
  }

/* ============================================================

  /* ---- Phase 4.3.99 — Returning Client toggle (top of Step 3) ---- */
  .orderform .rc-block { margin-bottom: 22px; }
  .orderform .rc-prompt { margin-bottom: 8px; }
  .orderform .rc-label  { font-size: 15px; font-weight: 600; color: #1a1a1a; }
  .orderform .rc-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }
  .orderform .rc-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    transition: border-color .15s, background .15s, box-shadow .15s;
  }
  .orderform .rc-opt:hover { border-color: #b3b3b3; }
  .orderform .rc-opt.active {
    border-color: #15355d;
    background: #fff;
    box-shadow: 0 0 0 1px #15355d inset;
  }
  .orderform .rc-radio {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #cfcfcf;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    transition: border-color .15s;
  }
  .orderform .rc-opt.active .rc-radio {
    border-color: #15355d;
  }
  .orderform .rc-opt.active .rc-radio::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 9px; height: 9px;
    background: #15355d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .orderform .rc-welcome {
    background: #f3f6fa;
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    padding: 20px 22px;
    margin-top: 6px;
  }
  .orderform .rc-welcome input[type="email"],
  .orderform .rc-welcome input[type="password"],
  .orderform .rc-welcome input[type="text"] {
    background: #fff !important;
    border: 1px solid #c8d3e0;
  }
  .orderform .rc-welcome input:focus {
    border-color: #15355d;
    box-shadow: 0 0 0 2px rgba(21,53,93,.15);
  }
  .orderform .rc-welcome h3 {
    margin: 0 0 6px 0;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
  }
  .orderform .rc-sub {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #4a4a4a;
  }
  .orderform .rc-help {
    margin: 6px 0 0 0;
    font-size: 12px;
    color: #777;
  }
  .orderform .rc-error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #f5c2c0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    margin-bottom: 12px;
  }
  .orderform .rc-btn {
    background: #15355d;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .15s;
  }
  .orderform .rc-btn:hover { background: #0f284a; }
  .orderform .rc-btn:disabled { opacity: .6; cursor: wait; }
  .orderform .rc-forgot { margin: 12px 0 0 0; font-size: 13px; }
  .orderform .rc-forgot a { color: #15355d; text-decoration: none; }
  .orderform .rc-forgot a:hover { text-decoration: underline; }
  .orderform .rc-loggedin {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ecf7ee;
    border: 1px solid #c8e6cf;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1f5a30;
    flex-wrap: wrap;
  }
  .orderform .rc-logout {
    background: transparent;
    border: 0;
    color: #1f5a30;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    margin-left: auto;
    padding: 0;
  }
  @media (max-width: 600px) {
    .orderform .rc-toggle { grid-template-columns: 1fr; }
  }

/* ===== v5.2 booking-form mobile responsiveness ===== */
@media (max-width: 600px) {
  /* Form container — give the card a little breathing room from viewport edges
     but don't waste space. Keep the border/radius look. */
  .orderform .form-outer {
    margin: 16px 8px !important;
    padding: 16px 14px !important;
  }

  /* Card top: stack image above title, both centered, image smaller */
  .orderform .dc-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .orderform .dc-top .dc-image {
    flex: 0 0 auto;
    width: 140px;
    max-width: 140px;
    height: 90px;
  }
  .orderform .dumpster-card[data-product-id="11"] .dc-top .dc-image { height: 100px; }
  .orderform .dc-title-col {
    align-items: center;
    padding-left: 0;
    width: 100%;
  }
  .orderform .dc-title-col .dc-name {
    font-size: 22px;
    white-space: nowrap;
  }
  .orderform .dc-title-col .dc-price-inline { justify-content: center; }
  .orderform .dc-title-col .dc-dims { text-align: center; }

  /* "Most Popular" ribbon: move inline above the image so it doesn't collide
     with the now-centered title */
  .orderform .popular-badge {
    position: static;
    display: inline-block;
    margin: 0 auto 8px;
  }

  /* Need-more-days row: stack label, stepper, helper on small screens */
  .orderform .dc-extra-days {
    justify-content: center;
    gap: 8px 12px;
  }

  /* Badge row: center + comfortable wrap */
  .orderform .dc-badge-row { gap: 6px 8px; }

  /* Day pills — keep them comfortable but allow shrinking */
  .orderform .rental-toggle { gap: 6px; }
  .orderform .rental-btn { flex: 1 1 0; min-width: 0; padding: 10px 6px; }
}

@media (max-width: 380px) {
  .orderform .form-outer { margin: 12px 4px !important; padding: 14px 10px !important; }
  .orderform .dc-top .dc-image { width: 120px; height: 78px; }
}
