:root {
  --navy: #102033;
  --navy-dark: #071320;
  --orange: #F28C28;
  --orange-dark: #D97706;
  --cream: #FFF8EF;
  --light: #F5F7FA;
  --grey: #6B7280;
  --text: #1F2937;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 18px 42px rgba(16, 32, 51, 0.12);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

/* Legacy — kept in case any page still has old inline SVG logo */
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-wordmark { font-size: 1.313rem; font-weight: 700; letter-spacing: -0.04em; color: var(--navy); white-space: nowrap; }
.logo-wordmark strong { color: var(--orange); font-weight: 800; }

/* ApplianceIQ trading name footer strip */
/* Footer contact profile */
.footer-contact-profile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.6rem;
}
.footer-contact-img {
  width: 68px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  object-position: 65% 5%;
  flex-shrink: 0;
  border: 2.5px solid var(--orange);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.footer-contact-info { display: flex; flex-direction: column; gap: 0; }
.footer-contact-name { font-size: 0.82rem; color: var(--light); display: block; margin-bottom: 0.3rem; }
.footer-contact-info p { margin: 0.15rem 0; font-size: 0.82rem; }

/* ApplianceIQ band — full-width strip inside footer, above copyright */
.footer-appiq-band {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.footer-appiq-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.footer-appiq-band__logo {
  height: 26px;
  width: auto;
  opacity: 0.9;
}
.footer-appiq-band__text p {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
  max-width: 640px;
}
.footer-appiq-band__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}
.footer-appiq-band__link:hover { text-decoration: underline; }

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(242, 140, 40, 0.3);
}

.site-nav {
  display: none;
}
.site-nav.open {
  display: block;
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
}

.hero {
  padding: 2rem 0 1rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--grey);
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.button,
.button-secondary {
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(242, 140, 40, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 2.5rem 0 1rem;
  background: linear-gradient(180deg, #071320 0%, #102033 45%, #F7F9FB 100%);
}

.hero-inner {
  display: grid;
  gap: 2rem;
}

.hero-label {
  display: inline-flex;
  padding: 0.7rem 1rem;
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin: 1.1rem 0 1rem;
  line-height: 1.04;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 1.6rem;
}

.hero-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  margin: 0;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-panel-card {
  width: min(560px, 100%);
  background: var(--white);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(16, 32, 51, 0.14);
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.hero-panel-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-panel-pill {
  display: inline-flex;
  background: rgba(16, 32, 51, 0.05);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-panel-label {
  color: var(--grey);
  font-size: 0.95rem;
  flex: 1;
}

.oven-illustration {
  background: linear-gradient(180deg, #F4F5F8 0%, #FFFFFF 100%);
  border-radius: 28px;
  border: 1px solid rgba(16, 32, 51, 0.06);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.oven-top,
.oven-control-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.oven-top span,
.oven-control-bar span {
  flex: 1;
  min-height: 0.9rem;
  border-radius: 999px;
  background: #D9D9D9;
}

.oven-doors {
  display: grid;
  gap: 0.9rem;
}

.oven-door {
  position: relative;
  border-radius: 24px;
  background: #102033;
  height: 200px;
  overflow: hidden;
}

.oven-window {
  position: absolute;
  inset: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border-radius: 20px;
  box-shadow: inset 0 20px 40px rgba(255,255,255,0.08);
}

.hero-panel-copy {
  color: var(--grey);
  margin: 0 0 1.25rem;
  line-height: 1.75;
}

.hero-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-weight: 600;
}

.hero-checklist li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  background: #F7F9FB;
  color: var(--navy);
  font-weight: 700;
}

.badge-strip {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
}

.badge-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 25px 45px rgba(16, 32, 51, 0.08);
}

.badge-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange-dark);
  font-size: 1.1rem;
}

.problem-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  padding: 1.75rem;
  box-shadow: 0 18px 35px rgba(16, 32, 51, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(16, 32, 51, 0.1);
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.section-strong {
  background: rgba(16, 32, 51, 0.05);
}

.section-highlight {
  background: var(--navy);
  color: var(--white);
}

.section-highlight h2,
.section-highlight p,
.section-highlight .button,
.section-highlight .button-secondary {
  color: var(--white);
}

.section-highlight .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section-action {
  margin-top: 1.6rem;
}

.split-card,
.section-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 22px 44px rgba(16, 32, 51, 0.08);
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.split-card {
  display: grid;
  gap: 2rem;
}

.brand-group {
  display: grid;
  gap: 1.5rem;
}

.brand-block {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.brand-block h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #F8F7F2;
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.guides-grid {
  display: grid;
  gap: 1rem;
}

.guide-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  padding: 1.5rem;
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.06);
}

.guide-card h3 {
  margin-top: 0;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 51, 0.08);
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .badge-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .problems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-grid,
  .brand-grid,
  .price-grid,
  .guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-card {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 0 0.5rem;
  }

  .header-top {
    padding: 1.2rem 0;
  }

  .site-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-list {
    gap: 1.2rem;
  }

  .sticky-bar {
    display: none;
  }

  .hero-inner {
    gap: 3rem;
  }

  .area-grid,
  .brand-grid,
  .price-grid,
  .guides-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.trust-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
}

.trust-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  margin-top: 0.1rem;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F0 100%);
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
}

.hero-card h3 {
  margin-top: 0;
}

.hero-card p,
.hero-card .hero-badge,
.hero-card .hero-note {
  margin: 0.8rem 0 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.95rem;
}

.section {
  padding: 2.8rem 0;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--navy);
}

.section p {
  color: var(--grey);
  max-width: 720px;
}

.section-copy {
  display: grid;
  gap: 1.8rem;
}

.paired-copy {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .paired-copy {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.section-action {
  margin-top: 1.6rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(16, 32, 51, 0.06);
}

.card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.card h3 {
  margin-top: 0;
}

.card p {
  margin: 0.75rem 0 1rem;
  color: var(--grey);
}

.card--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}
.card--link:hover,
.card--link:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 10px 28px rgba(16,32,51,0.12);
  transform: translateY(-2px);
  color: var(--orange-dark);
}
.card--arrow {
  color: var(--orange);
  font-size: 1.1em;
  transition: transform 0.15s;
}
.card--link:hover .card--arrow { transform: translateX(3px); }

.card--plain {
  color: var(--grey);
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-dark);
  font-weight: 700;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card-small {
  background: var(--cream);
  padding: 1.25rem;
  border-radius: 20px;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list li::before {
  content: "•";
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.section-alt {
  background: #FFFFFF;
}

.area-grid,
.brand-grid,
.cover-grid,
.price-grid {
  display: grid;
  gap: 1rem;
}

.area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cover-grid,
.price-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.price-card {
  background: var(--white);
}

.package-label {
  display: inline-flex;
  background: var(--light);
  color: var(--navy);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.section-note {
  color: var(--grey);
  font-size: 0.95rem;
}

.page-intro {
  margin: 0 0 1.5rem;
}

.page-intro strong {
  color: var(--navy);
}

.feature-box {
  display: flex;
  gap: 0.9rem;
}

.feature-icon {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 1rem;
  text-align: left;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  padding: 0.95rem 1rem;
  color: var(--text);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-note {
  color: var(--grey);
  font-size: 0.95rem;
}

.form-success {
  display: none;
  background: #E6F7EF;
  border: 1px solid #B7E3D8;
  color: #0F5132;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  margin-top: 1rem;
}

.calculator {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
}

.calculator select,
.calculator button {
  width: 100%;
}

.result-panel {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.result-panel h3 {
  margin-top: 0;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0 3rem;
}

.footer .container {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: 1.6fr 1fr 0.8fr 1fr;
  align-items: start;
}

.footer h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.footer h4,
.footer-heading {
  margin: 0 0 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-disclaimer {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5) !important;
  font-style: italic;
}

@media (max-width: 900px) {
  .footer .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer .container {
    grid-template-columns: 1fr;
  }
}

.footer p,
.footer a,
.footer li,
.footer small {
  color: rgba(255,255,255,0.8);
}

.footer a {
  color: rgba(255,255,255,0.95);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.page-footer-links {
  display: grid;
  gap: 0.45rem;
}

.page-footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.page-footer-links a:hover {
  color: var(--orange);
  opacity: 1;
}

.site-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  grid-column: 1 / -1;
}

.footer-credit {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

.footer-credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--orange);
  opacity: 1;
}

.sticky-bar {
  position: fixed;
  inset: auto 0 0 0;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 30;
  box-shadow: 0 -10px 30px rgba(16, 32, 51, 0.08);
}

.sticky-bar a {
  flex: 1;
  text-align: center;
  border-radius: 14px;
  padding: 0.95rem 0.5rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.sticky-bar a.call {
  background: var(--orange);
  color: var(--white);
}

.sticky-bar a.book {
  background: var(--navy);
  color: var(--white);
}

.sticky-bar a.area {
  background: var(--cream);
  color: var(--navy);
}

.page-title {
  margin: 0 0 1rem;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}

.legal-content h2 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 2rem 0 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.4rem;
  margin: 0.5rem 0 1rem;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

.control-panel {
  display: grid;
  gap: 0.85rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  max-width: 420px;
}

.control-panel .display {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.control-panel .buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.control-panel .button-dark {
  background: var(--light);
  border-radius: 14px;
  padding: 0.95rem;
  text-align: center;
  font-weight: 700;
  color: var(--text);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .area-grid,
  .brand-grid,
  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 3rem 0;
  }

  .hero-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 0 0.5rem;
  }

  .header-top {
    padding: 1.2rem 0;
  }

  .site-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-list {
    gap: 1.2rem;
  }

  .sticky-bar {
    display: none;
  }

  .hero-grid {
    gap: 2rem;
  }

  .area-grid,
  .brand-grid,
  .price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── Booking Modal ──────────────────────────────────────────────────────── */
body.modal-open { overflow: hidden; }

.bm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.bm-overlay.open { display: flex; }

.bm-modal {
  background: #fff;
  border-radius: 18px;
  width: min(640px, 100%);
  padding: 1.25rem 1.5rem 1.1rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.38);
  animation: bmIn 0.24s cubic-bezier(.4,0,.2,1);
  margin: auto;
}
@keyframes bmIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* Mobile: slide up as a bottom sheet */
@media (max-width: 640px) {
  .bm-overlay { align-items: flex-end; padding: 0; }
  .bm-modal {
    border-radius: 18px 18px 0 0;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0;
    animation: bmSlideUp 0.28s cubic-bezier(.4,0,.2,1);
  }
  @keyframes bmSlideUp {
    from { transform: translateY(100%); }
    to   { transform: none; }
  }
}

.bm-close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  background: var(--light);
  border: 1px solid var(--border);
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.78rem;
  display: grid; place-items: center;
  color: var(--grey);
  line-height: 1;
}
.bm-close:hover { background: var(--border); color: var(--navy); }

.bm-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 2rem 0.1rem 0;
}
.bm-subtitle { font-size: 0.78rem; color: var(--grey); margin: 0 0 0.7rem; }

.bm-eng-notes {
  background: #fffbf0;
  border: 1.5px solid #f5a623;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--navy);
}
.bm-eng-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b87210;
  margin-bottom: 0.25rem;
}
.bm-verdict-repair  { color: #27ae60; font-weight: 700; }
.bm-verdict-viable  { color: #e67e22; font-weight: 700; }
.bm-verdict-replace { color: #e74c3c; font-weight: 700; }

/* 3-column grid — collapses to 2 then 1 */
.bm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
}
@media (max-width: 520px) { .bm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 360px) { .bm-grid { grid-template-columns: 1fr; } }

.bm-label {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
}
.bm-label input,
.bm-label select,
.bm-label textarea {
  padding: 0.32rem 0.55rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  width: 100%;
  transition: border-color 0.15s;
  margin: 0;
  height: 30px;
}
.bm-label textarea {
  height: auto;
  min-height: 46px;
  resize: vertical;
}
.bm-label input:focus,
.bm-label select:focus,
.bm-label textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(242,140,40,0.12);
}

.bm-span2 { grid-column: span 2; }
.bm-span3 { grid-column: span 3; }
@media (max-width: 520px) { .bm-span3 { grid-column: span 2; } }
@media (max-width: 360px) { .bm-span2, .bm-span3 { grid-column: span 1; } }

.bm-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.45rem;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--grey);
  cursor: pointer;
}
.bm-consent input[type="checkbox"] { width: auto; flex-shrink: 0; margin-top: 0.12rem; height: auto; }

.bm-actions {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.bm-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.bm-submit:hover { background: var(--orange-dark); }
.bm-fnote { font-size: 0.72rem; color: var(--grey); }

.bm-success {
  display: none;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
}
.bm-success.shown { display: block; }
.bm-success-icon {
  width: 46px; height: 46px;
  background: #27ae60;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 0.7rem;
}
.bm-success h3 { color: var(--navy); margin: 0 0 0.25rem; font-size: 1.1rem; }
.bm-success > p { color: var(--grey); font-size: 0.85rem; margin: 0 0 0.1rem; }

/* Star rating + review platforms */
.bm-stars-block {
  margin: 0.75rem 0 0;
}
.bm-stars {
  font-size: 1.35rem;
  color: #f5a623;
  letter-spacing: 0.05em;
  line-height: 1;
}
.bm-stars-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.2rem 0 0.55rem;
}
.bm-review-platforms {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bm-plat {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  border: 1px solid currentColor;
  opacity: 0.82;
}
.bm-plat-google   { color: #4285F4; border-color: rgba(66,133,244,0.3); }
.bm-plat-facebook { color: #1877F2; border-color: rgba(24,119,242,0.3); }
.bm-plat-trust    { color: #00b67a; border-color: rgba(0,182,122,0.3); }

/* Polaroid team photos */
.bm-polaroids {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 1.4rem auto 1rem;
  padding-top: 0.75rem;
  max-width: 320px;
}
.bm-polaroid {
  position: relative;
  background: #fff;
  padding: 0.5rem 0.5rem 2.1rem;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.1);
  width: 112px;
  flex-shrink: 0;
}
.bm-polaroid:first-child { transform: rotate(-5deg); }
.bm-polaroid:last-child  { transform: rotate(4deg); }
.bm-polaroid img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bm-polaroid-name {
  text-align: center;
  padding-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  font-family: cursive, sans-serif;
  line-height: 1.2;
}
.bm-polaroid-role {
  text-align: center;
  font-size: 0.62rem;
  color: var(--grey);
  font-family: cursive, sans-serif;
}
/* Tape strip */
.bm-tape {
  position: absolute;
  top: -11px;
  left: 50%;
  width: 46px;
  height: 22px;
  background: rgba(255, 248, 190, 0.78);
  border-left: 1px solid rgba(200, 180, 80, 0.22);
  border-right: 1px solid rgba(200, 180, 80, 0.22);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(180, 160, 60, 0.07) 3px,
    rgba(180, 160, 60, 0.07) 4px
  );
  z-index: 2;
}
.bm-polaroid:first-child .bm-tape {
  transform: translateX(-50%) rotate(3deg);
}
.bm-polaroid:last-child .bm-tape {
  transform: translateX(-50%) rotate(-2deg);
}

/* "Part of Appliance IQ" footer */
.bm-appiq {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.75rem 0 0.9rem;
  font-size: 0.72rem;
  color: var(--grey);
}
.bm-appiq img {
  height: 20px;
  opacity: 0.65;
  vertical-align: middle;
}

/* ── Desktop floating Book CTA ──────────────────────────────────────────── */
.book-cta-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1500;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.72rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(242,140,40,0.45);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
  text-decoration: none;
}
.book-cta-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242,140,40,0.55);
  color: #fff;
  opacity: 1;
}
@media (max-width: 640px) { .book-cta-float { display: none; } }

/* ── Mobile sticky bar — Book button more prominent ─────────────────────── */
.sticky-bar a.book {
  background: var(--orange);
  color: var(--white);
  flex: 1.5;
  font-weight: 700;
}
