/* ============================================================
   APPLIANCE REPAIR DEMO — STYLESHEET
   Mobile-first. Design tokens live in :root.
   ============================================================ */

:root {
  --color-primary: #14213D;      /* dark navy / graphite */
  --color-primary-light: #1E3A5F;
  --color-accent: #FF6B35;       /* bright CTA accent */
  --color-accent-dark: #E4551F;
  --color-bg: #F8F9FB;
  --color-surface: #FFFFFF;
  --color-border: #E3E6EC;
  --color-text: #1B1F27;
  --color-text-muted: #5B6472;
  --color-success-bg: #E8F6F1;
  --color-success-text: #1A7A5E;
  --color-error-bg: #FDEDEC;
  --color-error-text: #C0392B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(20, 33, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 33, 61, 0.10);
  --shadow-lg: 0 16px 40px rgba(20, 33, 61, 0.14);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container-width: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  font-size: 16px;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; color: var(--color-primary); }
h1 { font-size: clamp(2rem, 5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--color-text-muted); }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.2rem; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #1E88E5;
  outline-offset: 2px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  min-height: 48px;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { background: var(--color-accent-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--color-primary);
}
.logo:hover { text-decoration: none; }
.logo-text { font-size: 1.05rem; white-space: nowrap; }

.main-nav ul {
  display: none;
  list-style: none;
  margin: 0; padding: 0;
  gap: 1.6rem;
}
.main-nav a {
  color: var(--color-text);
  font-weight: 500;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.call-link .btn, .header-actions .btn span { white-space: nowrap; }
#header-call-btn span { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--color-primary);
}

.mobile-nav {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}
.mobile-nav ul {
  list-style: none;
  margin: 0; padding: 0.5rem 1.25rem 1rem;
}
.mobile-nav li { border-bottom: 1px solid var(--color-border); }
.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  color: var(--color-text);
  font-weight: 500;
}
.mobile-call-link { color: var(--color-accent) !important; font-weight: 700; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  padding: 3rem 0 3.5rem;
}
.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1 { color: #fff; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.5rem 0; }
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.hero-benefits li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 10px; height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
}
.hero-art { max-width: 340px; margin: 0 auto; }

/* ============ ZIP CHECKER ============ */
.zip-checker { padding: 2.5rem 0; }
.zip-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  text-align: center;
}
.zip-input-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 1rem auto 0;
}
.zip-input-row input {
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  text-align: center;
}
.zip-result {
  margin-top: 1rem;
  font-weight: 600;
  min-height: 1.5rem;
}
.zip-result.is-positive { color: var(--color-success-text); }
.zip-result.is-negative { color: var(--color-error-text); }
.zip-result.is-neutral { color: var(--color-text-muted); font-weight: 400; }

/* ============ SECTION GENERICS ============ */
section { padding: 3.5rem 0; }
.section-title { text-align: center; }
.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ============ SERVICE CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 0.9rem;
}
.service-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ============ PROBLEMS ============ */
.problems { background: var(--color-surface); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.problem-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  color: var(--color-primary);
}

/* ============ HOW IT WORKS ============ */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ============ WARRANTY ============ */
.warranty { background: var(--color-surface); }
.warranty-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.warranty-notes {
  margin-top: 1rem;
  padding-left: 1.2rem;
}
.warranty-notes li { margin-bottom: 0.5rem; color: var(--color-text-muted); font-size: 0.95rem; }
.warranty-art { max-width: 220px; margin: 0 auto; }

/* ============ BRANDS ============ */
.brands-content {
  text-align: center;
}
.brand-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.brand-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.brands-empty { color: var(--color-text-muted); }

/* ============ SERVICE AREA ============ */
.service-area-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.area-zip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0;
}
.zip-chip {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.fine-print { font-size: 0.82rem; color: var(--color-text-muted); }

/* ============ BOOKING FORM ============ */
.booking { background: var(--color-surface); }
.booking-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.progress-step {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.progress-step.active { background: var(--color-accent); color: #fff; }
.progress-line { width: 60px; height: 2px; background: var(--color-border); }

fieldset { border: 0; padding: 0; margin: 0 0 0.5rem; }
legend { font-weight: 700; font-size: 1.1rem; color: var(--color-primary); padding: 0; margin-bottom: 1rem; }

.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.92rem; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field input[type="file"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-surface);
  min-height: 48px;
}
.form-field textarea { min-height: 100px; resize: vertical; }
.req { color: var(--color-accent-dark); }
.field-error {
  display: block;
  color: var(--color-error-text);
  font-size: 0.85rem;
  margin-top: 0.35rem;
  min-height: 1.1em;
}
.field-hint { display: block; color: var(--color-text-muted); font-size: 0.82rem; margin-top: 0.35rem; }

.contact-method { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.radio-label, .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
}
.radio-label input, .checkbox-label input { margin-top: 0.2rem; width: 18px; height: 18px; flex-shrink: 0; }

.form-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.5rem; }
.form-status {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: var(--color-success-bg); color: var(--color-success-text); }
.form-status.is-error { background: var(--color-error-bg); color: var(--color-error-text); }
.form-status.is-info { background: #EAF2FB; color: #1E5A96; }

/* ============ REVIEWS ============ */
.reviews-placeholder { display: flex; justify-content: center; }
.review-placeholder-card {
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  max-width: 420px;
}
.review-placeholder-card svg { margin: 0 auto 0.75rem; }

/* ============ FAQ / ACCORDION ============ */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion-item h3 { margin: 0; font-size: 1rem; }
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion-trigger::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
}
.accordion-trigger[aria-expanded="true"]::after { content: "\2212"; }
.accordion-panel { padding: 0 0.25rem 1.1rem; }
.accordion-panel p { margin: 0; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0E1830;
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.6rem; }
.footer-col p { color: rgba(255,255,255,0.75); margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.85); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.footer-disclaimer p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ============ MOBILE STICKY BAR ============ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(20,33,61,0.10);
}
.sticky-call, .sticky-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 56px;
}
.sticky-call { color: var(--color-primary); }
.sticky-book { background: var(--color-accent); color: #fff; }
body { padding-bottom: 56px; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet ~768px and up */
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .warranty-inner { grid-template-columns: 1.2fr 0.8fr; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
  .zip-input-row { flex-direction: row; }
  .zip-input-row input { flex: 1; }
}

/* Desktop ~1024px and up */
@media (min-width: 1024px) {
  .main-nav ul { display: flex; }
  #header-call-btn span { display: inline; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .mobile-sticky-bar { display: none; }
  body { padding-bottom: 0; }
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   V2 DESIGN LAYER — typography, hero app demo, why-us,
   careers, PWA install banner, micro-interactions
   ============================================================ */

:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Manrope", "Inter", -apple-system, sans-serif;
}

h1, h2, h3, legend, .logo-text, .btn { font-family: var(--font-display); }
h1 { font-weight: 800; letter-spacing: -0.02em; }
h2 { font-weight: 800; letter-spacing: -0.01em; }

.accent-text { color: var(--color-accent); }

/* ---------- HERO v2 ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255,107,53,0.22), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(64,120,255,0.18), transparent 55%),
    linear-gradient(135deg, #101C38 0%, #1E3A5F 100%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.hero-benefits li::before { border-radius: 3px; transform: rotate(45deg); }

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}
.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.15rem;
}

/* ---------- PHONE DEMO ---------- */
.hero-demo {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.phone {
  position: relative;
  width: 250px;
  height: 500px;
  background: #0B1226;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 0 0 2px rgba(255,255,255,0.08),
    inset 0 0 0 2px rgba(255,255,255,0.04);
  transform: rotate(-4deg);
  animation: phone-float 7s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-10px); }
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0B1226;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #F8F9FB 0%, #EEF1F7 100%);
  border-radius: 28px;
  overflow: hidden;
}
.demo-screen {
  position: absolute;
  inset: 0;
  padding: 3rem 1.1rem 1.1rem;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.demo-screen.active { opacity: 1; transform: translateX(0); }
.demo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.demo-zip-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  min-height: 52px;
}
.demo-caret {
  width: 2px; height: 1.2em;
  background: var(--color-accent);
  margin-left: 2px;
  animation: caret-blink 0.9s steps(2) infinite;
}
@keyframes caret-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.demo-zip-ok {
  margin-top: 0.9rem;
  background: var(--color-success-bg);
  color: var(--color-success-text);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.demo-zip-ok.show { opacity: 1; transform: translateY(0); }
.demo-appliances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.demo-app {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem 0.5rem 0.7rem;
  text-align: center;
  color: var(--color-primary);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.demo-app svg { width: 34px; height: 34px; margin: 0 auto 0.4rem; }
.demo-app span { font-size: 0.8rem; font-weight: 600; }
.demo-app.selected {
  border-color: var(--color-accent);
  box-shadow: 0 6px 16px rgba(255,107,53,0.25);
  transform: scale(1.04);
  color: var(--color-accent);
}
.demo-line {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.demo-line-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  flex-shrink: 0;
  width: 58px;
}
.demo-line-fill {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  width: 0;
  transition: width 0.9s ease;
}
.demo-screen-3.active .demo-line-1 .demo-line-fill { width: 70%; transition-delay: 0.3s; }
.demo-screen-3.active .demo-line-2 .demo-line-fill { width: 85%; transition-delay: 0.8s; }
.demo-photo {
  background: rgba(255,107,53,0.1);
  border: 2px dashed rgba(255,107,53,0.5);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 0.9rem;
  opacity: 0;
  transition: opacity 0.5s ease 1.4s;
}
.demo-screen-3.active .demo-photo { opacity: 1; }
.demo-submit {
  width: 100%;
  background: var(--color-accent);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: default;
}
.demo-screen-3.active .demo-submit { animation: demo-press 0.35s ease 2.4s; }
@keyframes demo-press { 50% { transform: scale(0.96); background: var(--color-accent-dark); } }
.demo-screen-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.demo-success-check { color: #1A7A5E; width: 74px; margin-bottom: 1rem; }
.demo-success-check svg { stroke-dasharray: 200; }
.demo-screen-4.active .demo-success-check { animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes pop-in { 0% { transform: scale(0.3); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.demo-success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.demo-success-sub { font-size: 0.85rem; margin: 0; }
.demo-toast {
  position: absolute;
  top: 10px; left: 10px; right: 10px;
  z-index: 10;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20,33,61,0.25);
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  transform: translateY(-80px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.demo-toast.show { transform: translateY(38px); }
.demo-toast-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #1A7A5E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- WHY US ---------- */
.why-us { padding-top: 1rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.why-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px; height: 52px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.why-card h3 { font-size: 1.08rem; }
.why-card p { font-size: 0.93rem; margin: 0; }

/* ---------- SERVICE CARD hover ---------- */
.service-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- CAREERS TEASER ---------- */
.careers-teaser {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.careers-teaser-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.careers-eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.careers-art { max-width: 200px; margin: 0 auto; }

/* ---------- CAREERS PAGE ---------- */
.careers-hero {
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(255,107,53,0.25), transparent 60%),
    linear-gradient(135deg, #101C38 0%, #1E3A5F 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.careers-hero h1 { color: #fff; }
.careers-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto; }
.careers-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.perk-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.perk-card h3 { font-size: 1.05rem; }
.perk-card p { font-size: 0.92rem; margin: 0; }
.careers-form-section { background: var(--color-surface); }
.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.specialty-grid .checkbox-label {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  transition: border-color 0.2s ease;
}
.specialty-grid .checkbox-label:has(input:checked) { border-color: var(--color-accent); }

/* ---------- PWA INSTALL BANNER ---------- */
.install-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 66px;
  z-index: 600;
  padding: 0 0.75rem;
  animation: banner-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes banner-up { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.install-banner-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(10,18,38,0.45);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.install-banner-icon { flex-shrink: 0; }
.install-banner-icon svg { border-radius: 10px; }
.install-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.install-banner-text strong { font-family: var(--font-display); font-size: 0.95rem; }
.install-banner-text span { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.35; }
.install-banner-actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.install-banner-actions .btn { padding: 0.55rem 1rem; min-height: 40px; font-size: 0.9rem; }
.install-banner-dismiss {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- V2 RESPONSIVE ---------- */
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-teaser-inner { grid-template-columns: 1.3fr 0.7fr; }
  .careers-perks { grid-template-columns: repeat(3, 1fr); }
  .install-banner { bottom: 1rem; }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .phone { width: 270px; height: 540px; }
}
@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- CLICK-TO-BOOK CARDS ---------- */
.service-card.is-bookable { cursor: pointer; position: relative; }
.service-card.is-bookable:focus-visible { outline: 3px solid #1E88E5; outline-offset: 2px; }
.service-card-cta {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-card.is-bookable:hover .service-card-cta,
.service-card.is-bookable:focus-visible .service-card-cta,
.service-card.selected .service-card-cta { opacity: 1; transform: translateX(0); }
.service-card.selected {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(255,107,53,0.22);
}
@media (max-width: 1023px) { .service-card-cta { opacity: 1; transform: none; } }
.booking-picked {
  text-align: center;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.35);
  color: var(--color-accent-dark);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  max-width: 560px;
  margin: 0 auto 1.25rem;
}
