/* =====================================================================
   Mr. Sweeting Appliance Repair: shared stylesheet
   Built by Baha Connect IT Solutions
   Fonts: Oswald (display) + Work Sans (body)
   Palette: dark navy, bright blue, white, orange call-to-action
   ===================================================================== */

/* ---------------------------------------------------------------
   1. Design tokens
--------------------------------------------------------------- */
:root {
  /* Fonts */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  /* Line height */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.6;

  /* Weight */
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;

  /* Tracking */
  --track-tight: -0.02em;
  --track-normal: 0;
  --track-wide: 0.04em;
  --track-widest: 0.14em;

  /* Navy (brand / dark surfaces) */
  --navy-900: hsl(215, 52%, 10%);
  --navy-800: hsl(215, 48%, 15%);
  --navy-700: hsl(215, 44%, 21%);
  --navy-600: hsl(215, 41%, 27%);
  --navy-500: hsl(215, 38%, 34%);

  /* Bright blue (action, links, trust) */
  --blue-700: hsl(210, 84%, 37%);
  --blue-600: hsl(210, 88%, 44%);
  --blue-500: hsl(210, 92%, 50%);
  --blue-400: hsl(210, 92%, 62%);
  --blue-100: hsl(210, 88%, 94%);

  /* Orange (call-to-action accent, used sparingly) */
  --orange-600: hsl(25, 92%, 45%);
  --orange-500: hsl(28, 95%, 52%);
  --orange-400: hsl(33, 96%, 61%);
  --orange-100: hsl(30, 95%, 94%);

  /* Greys (cool, slightly saturated) */
  --gray-50: hsl(210, 22%, 98%);
  --gray-100: hsl(210, 20%, 95%);
  --gray-200: hsl(210, 17%, 89%);
  --gray-300: hsl(210, 14%, 79%);
  --gray-400: hsl(210, 12%, 62%);
  --gray-500: hsl(210, 11%, 46%);
  --gray-600: hsl(210, 14%, 34%);
  --gray-700: hsl(210, 17%, 24%);
  --gray-800: hsl(210, 22%, 15%);
  --gray-900: hsl(215, 30%, 9%);
  --white: hsl(0, 0%, 100%);

  /* Semantic */
  --green-500: hsl(150, 62%, 40%);
  --green-100: hsl(150, 55%, 93%);
  --amber-500: hsl(40, 92%, 50%);
  --amber-100: hsl(40, 92%, 93%);
  --red-500: hsl(2, 78%, 52%);
  --red-100: hsl(2, 78%, 95%);

  /* Text hierarchy */
  --text-primary: var(--navy-900);
  --text-secondary: var(--gray-600);
  --text-tertiary: var(--gray-500);

  /* Spacing */
  --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;

  /* Layout */
  --container: 1180px;
  --content: 720px;
  --section-y: 5rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px hsl(215 40% 12% / 0.07);
  --shadow-sm: 0 1px 4px hsl(215 40% 12% / 0.09), 0 1px 2px hsl(215 40% 12% / 0.06);
  --shadow-md: 0 6px 16px hsl(215 40% 12% / 0.10), 0 2px 5px hsl(215 40% 12% / 0.07);
  --shadow-lg: 0 16px 40px hsl(215 40% 12% / 0.14), 0 5px 12px hsl(215 40% 12% / 0.08);
  --shadow-xl: 0 28px 64px hsl(215 45% 10% / 0.20), 0 10px 20px hsl(215 40% 12% / 0.10);
}

/* ---------------------------------------------------------------
   2. Reset + base
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--blue-600); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  line-height: var(--leading-tight);
  letter-spacing: var(--track-tight);
  color: var(--text-primary);
}

p { max-width: 65ch; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------
   3. Layout helpers
--------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--space-16); }
.section--navy { background: var(--navy-900); color: var(--white); }
.section--blue { background: var(--blue-700); color: var(--white); }
.section--muted { background: var(--gray-100); }

.section-head { max-width: 640px; margin-bottom: var(--space-10); }
.section--center .section-head { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--w-bold);
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: var(--space-3);
}
.section--navy .eyebrow, .section--blue .eyebrow { color: var(--orange-400); }

.section-title { font-size: var(--text-3xl); }
.section-sub {
  margin-top: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--text-lg);
}
.section--navy .section-title, .section--blue .section-title { color: var(--white); }
.section--navy .section-sub, .section--blue .section-sub { color: hsl(210 40% 86%); }

/* ---------------------------------------------------------------
   4. Buttons
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  letter-spacing: var(--track-wide);
  line-height: 1;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--orange-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--orange-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

.btn--blue { background: var(--blue-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--blue:hover { background: var(--blue-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--blue:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

.btn--wa { background: hsl(145, 63%, 42%); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--wa:hover { background: hsl(145, 63%, 37%); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--wa:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

.btn--outline { background: transparent; color: var(--white); border-color: hsl(210 40% 100% / 0.5); }
.btn--outline:hover { border-color: var(--white); background: hsl(210 40% 100% / 0.08); transform: translateY(-2px); }

.btn--outline-dark { background: transparent; color: var(--navy-800); border-color: var(--gray-300); }
.btn--outline-dark:hover { border-color: var(--blue-500); color: var(--blue-700); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--blue-700); padding-inline: var(--space-2); }
.btn--ghost:hover { color: var(--blue-500); }

.btn--lg { font-size: var(--text-base); padding: 1.05rem 2rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------------------------------------------------------------
   5. Header / nav
--------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: hsl(215 52% 10% / 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(215 40% 30% / 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 68px;
}
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand__mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--orange-500);
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  flex: none;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: var(--text-lg);
  color: var(--white);
  letter-spacing: var(--track-tight);
}
.brand__tag {
  font-size: 0.68rem;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--blue-400);
  font-weight: var(--w-semibold);
}

.nav__links { display: flex; align-items: center; gap: var(--space-6); list-style: none; }
.nav__link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  letter-spacing: var(--track-wide);
  color: hsl(210 30% 84%);
  padding-block: var(--space-2);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--white); }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange-500);
  transition: width 0.22s ease;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: var(--space-3); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: var(--space-2);
}
.nav__toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid hsl(215 40% 30% / 0.5);
    padding: var(--space-4) var(--space-6) var(--space-6);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__link { padding-block: var(--space-4); border-bottom: 1px solid hsl(215 40% 30% / 0.35); }
  .nav__link::after { display: none; }
  .nav__cta .btn--sm-hide { display: none; }
  .nav__toggle { display: flex; }
}

/* ---------------------------------------------------------------
   6. Hero
--------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -10%, hsl(210 92% 40% / 0.42), transparent 60%),
    radial-gradient(760px 460px at 8% 108%, hsl(28 95% 45% / 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 55%, var(--navy-700));
  will-change: transform;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(hsl(210 60% 70% / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, hsl(210 60% 70% / 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 30%, black, transparent 78%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
  padding-block: var(--space-24) var(--space-20);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: hsl(210 92% 50% / 0.16);
  border: 1px solid hsl(210 92% 60% / 0.35);
  color: var(--blue-400);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px hsl(150 62% 40% / 0.25); }
.hero h1 {
  font-size: var(--text-5xl);
  font-weight: var(--w-bold);
  line-height: var(--leading-none);
  color: var(--white);
  margin-bottom: var(--space-5);
}
.hero h1 .accent { color: var(--orange-400); }
.hero__sub {
  font-size: var(--text-lg);
  color: hsl(210 40% 86%);
  margin-bottom: var(--space-8);
  max-width: 46ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-8); }
.hero__facts { display: flex; flex-wrap: wrap; gap: var(--space-6) var(--space-8); }
.hero__fact { display: flex; align-items: center; gap: var(--space-3); }
.hero__fact svg { width: 22px; height: 22px; color: var(--orange-400); flex: none; }
.hero__fact b { color: var(--white); font-weight: var(--w-semibold); display: block; font-size: var(--text-sm); }
.hero__fact span { color: hsl(210 30% 78%); font-size: var(--text-xs); }

/* Hero visual (technician photo placeholder) */
.hero__visual { position: relative; }
.photo-ph {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, hsl(215 40% 22%) 0 14px, hsl(215 44% 25%) 14px 28px);
  border: 2px dashed hsl(210 40% 60% / 0.5);
  display: grid; place-items: center;
  color: hsl(210 40% 82%);
  text-align: center;
  min-height: 380px;
}
.photo-ph__label {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  padding: var(--space-6);
}
.photo-ph__label svg { width: 46px; height: 46px; opacity: 0.85; }
.photo-ph__label b { font-family: var(--font-display); font-size: var(--text-lg); letter-spacing: var(--track-wide); }
.photo-ph__label span { font-size: var(--text-xs); letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--orange-400); }
.replace-tag {
  position: absolute; top: var(--space-3); right: var(--space-3);
  background: var(--orange-500); color: var(--navy-900);
  font-size: 0.62rem; font-weight: var(--w-bold); letter-spacing: var(--track-widest);
  text-transform: uppercase; padding: 4px 8px; border-radius: var(--radius-full);
  z-index: 2;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: var(--space-16) var(--space-12); gap: var(--space-8); }
  .hero h1 { font-size: var(--text-4xl); }
  .hero__visual { order: -1; }
  .photo-ph { min-height: 240px; }
}

/* ---------------------------------------------------------------
   7. Generic cards + grids
--------------------------------------------------------------- */
.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }

.icon-badge {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--blue-100);
  color: var(--blue-700);
  margin-bottom: var(--space-4);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--orange { background: var(--orange-100); color: var(--orange-600); }
.icon-badge--navy { background: var(--navy-800); color: var(--blue-400); }

.card h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.card p { color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); }

/* feature list with check icons */
.check-list { list-style: none; display: grid; gap: var(--space-3); }
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--text-secondary); font-size: var(--text-sm); }
.check-list svg { width: 20px; height: 20px; color: var(--green-500); flex: none; margin-top: 2px; }

/* Action card: icon + copy + a pinned button (used for WhatsApp CTAs) */
.card--action { display: flex; flex-direction: column; }
.card--action p { flex: 1 1 auto; margin-bottom: var(--space-5); }
.card--action .btn { align-self: flex-start; }
@media (max-width: 560px) { .card--action .btn { align-self: stretch; justify-content: center; } }

/* Request card: prominent WhatsApp / call panel replacing the old forms */
.request-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-8));
  box-shadow: var(--shadow-sm);
}
.request-card__lead { color: var(--text-secondary); font-size: var(--text-base); margin-bottom: var(--space-5); }
.request-card__list { margin-bottom: var(--space-6); }
.request-card__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
@media (max-width: 560px) { .request-card__actions { flex-direction: column; } }

/* ---------------------------------------------------------------
   8. Process / steps
--------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: var(--space-6); }
.step__num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--w-bold);
  color: var(--blue-500);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.section--navy .step__num { color: var(--orange-400); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--text-secondary); }
.section--navy .step h3 { color: var(--white); }
.section--navy .step p { color: hsl(210 30% 80%); }

/* ---------------------------------------------------------------
   9. Brands grid
--------------------------------------------------------------- */
.brands-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
@media (max-width: 900px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .brands-grid { grid-template-columns: repeat(2, 1fr); } }
.brand-tile {
  display: grid; place-items: center;
  min-height: 96px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.brand-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--blue-500); }
.brand-tile b { font-family: var(--font-display); font-size: var(--text-lg); letter-spacing: var(--track-wide); color: var(--navy-800); }
.brand-tile span { display: block; font-size: 0.64rem; letter-spacing: var(--track-widest); text-transform: uppercase; color: var(--gray-400); margin-top: 4px; }

/* ---------------------------------------------------------------
   10. Product cards (used appliances)
--------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-8); align-items: center; }
.filters__label { font-size: var(--text-xs); font-weight: var(--w-bold); letter-spacing: var(--track-widest); text-transform: uppercase; color: var(--gray-500); margin-right: var(--space-2); }
.chip {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.18s ease;
}
.chip:hover { border-color: var(--blue-500); color: var(--blue-700); }
.chip[aria-pressed="true"] { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }

.product { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product__media {
  position: relative;
  min-height: 190px;
  background:
    repeating-linear-gradient(45deg, var(--gray-100) 0 12px, var(--gray-200) 12px 24px);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--gray-200);
}
.product__media .photo-ph__label { color: var(--gray-500); }
.product__media .photo-ph__label svg { width: 38px; height: 38px; }
.status-tag {
  position: absolute; top: var(--space-3); left: var(--space-3);
  font-size: 0.66rem; font-weight: var(--w-bold); letter-spacing: var(--track-wide);
  text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-full);
}
.status-tag--available { background: var(--green-100); color: hsl(150 62% 26%); }
.status-tag--reserved { background: var(--amber-100); color: hsl(38 92% 30%); }
.status-tag--sold { background: var(--gray-200); color: var(--gray-600); }
.product__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.product__type { font-size: var(--text-xs); font-weight: var(--w-bold); letter-spacing: var(--track-widest); text-transform: uppercase; color: var(--blue-600); }
.product h3 { font-size: var(--text-lg); }
.product__meta { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tag {
  font-size: var(--text-xs); font-weight: var(--w-medium);
  background: var(--gray-100); color: var(--gray-600);
  padding: 3px 9px; border-radius: var(--radius-full);
}
.product__desc { font-size: var(--text-sm); color: var(--text-secondary); }
.product__warranty { font-size: var(--text-xs); color: var(--text-tertiary); display: flex; align-items: center; gap: var(--space-2); }
.product__warranty svg { width: 15px; height: 15px; color: var(--green-500); }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--gray-100); }
.product__price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--w-bold); color: var(--navy-900); }
.product--sold { opacity: 0.72; }
.product--sold .product__price { color: var(--gray-500); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-16) var(--space-6);
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
}
.empty-state svg { width: 52px; height: 52px; color: var(--gray-400); margin: 0 auto var(--space-4); }
.empty-state h3 { margin-bottom: var(--space-2); }

/* ---------------------------------------------------------------
   11. Forms
--------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: var(--navy-800);
}
.field label .req { color: var(--red-500); }
.field .hint { font-size: var(--text-xs); color: var(--text-tertiary); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--navy-900);
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px hsl(210 92% 50% / 0.15);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px hsl(2 78% 52% / 0.12);
}
.field .error-msg { font-size: var(--text-xs); color: var(--red-500); font-weight: var(--w-medium); display: none; }
.field .error-msg.show { display: block; }

/* file upload */
.file-drop {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: var(--space-6);
  text-align: center;
  background: var(--gray-50);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.file-drop:hover { border-color: var(--blue-500); background: var(--blue-100); }
.file-drop svg { width: 30px; height: 30px; color: var(--gray-400); margin: 0 auto var(--space-2); }
.file-drop span { font-size: var(--text-sm); color: var(--text-secondary); }
.file-drop input { display: none; }
.file-preview { margin-top: var(--space-3); display: none; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: var(--navy-800); }
.file-preview.show { display: flex; }
.file-preview img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); }

.radio-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.16s ease;
}
.radio-pill input:checked + span { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }
.radio-pill input:focus-visible + span { outline: 3px solid var(--blue-400); outline-offset: 2px; }

.form-note {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--blue-100);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--navy-700);
}
.form-success {
  display: none;
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--green-100);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: hsl(150 62% 22%);
}
.form-success.show { display: block; }

/* ---------------------------------------------------------------
   12. Split / feature rows
--------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--space-8); } }
.split h2 { font-size: var(--text-3xl); margin-bottom: var(--space-4); }
.split p { color: var(--text-secondary); margin-bottom: var(--space-4); }

/* Service block (repair services page) */
.service-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block .icon-badge { margin-bottom: 0; }
.service-block h3 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.service-block p { color: var(--text-secondary); margin-bottom: var(--space-4); }
.service-block .problems { list-style: none; display: grid; gap: var(--space-2); margin-bottom: var(--space-5); }
.service-block .problems li { display: flex; gap: var(--space-2); align-items: flex-start; font-size: var(--text-sm); color: var(--text-secondary); }
.service-block .problems svg { width: 18px; height: 18px; color: var(--orange-500); flex: none; margin-top: 2px; }
@media (max-width: 560px) { .service-block { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------
   13. FAQ accordion
--------------------------------------------------------------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: var(--space-3); }
.faq__item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--w-semibold);
  letter-spacing: var(--track-tight);
  color: var(--navy-900);
  text-align: left;
}
.faq__q .icon { width: 26px; height: 26px; flex: none; color: var(--blue-600); transition: transform 0.25s ease; }
.faq__item.open .faq__q .icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__a p { padding: 0 var(--space-6) var(--space-5); color: var(--text-secondary); font-size: var(--text-base); }

/* ---------------------------------------------------------------
   14. Testimonials placeholder (no fake reviews)
--------------------------------------------------------------- */
.review-note {
  max-width: 640px; margin: 0 auto var(--space-8); text-align: center;
  font-size: var(--text-sm); color: var(--text-tertiary);
}
.review-card {
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: left;
}
.review-card .stars { display: flex; gap: 3px; margin-bottom: var(--space-3); color: var(--gray-300); }
.review-card .stars svg { width: 18px; height: 18px; }
.review-card .ph-quote { color: var(--gray-400); font-style: italic; font-size: var(--text-base); margin-bottom: var(--space-4); }
.review-card .ph-name { font-size: var(--text-sm); font-weight: var(--w-semibold); color: var(--gray-500); }
.review-card .replace-inline { display: inline-block; margin-top: var(--space-3); font-size: 0.62rem; font-weight: var(--w-bold); letter-spacing: var(--track-widest); text-transform: uppercase; color: var(--orange-600); background: var(--orange-100); padding: 3px 8px; border-radius: var(--radius-full); }

/* ---------------------------------------------------------------
   15. Info cards / contact
--------------------------------------------------------------- */
.info-card { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-card .icon-badge { flex: none; margin-bottom: 0; }
.info-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.info-card p, .info-card a { font-size: var(--text-base); color: var(--text-secondary); }
.info-card a.big { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--w-bold); color: var(--blue-700); letter-spacing: var(--track-tight); }
.info-card a.big:hover { color: var(--blue-500); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--gray-200); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: var(--space-3) 0; font-size: var(--text-base); }
.hours-table td:first-child { font-weight: var(--w-semibold); color: var(--navy-800); }
.hours-table td:last-child { text-align: right; color: var(--text-secondary); }
.hours-table tr.closed td:last-child { color: var(--red-500); font-weight: var(--w-semibold); }

.map-ph {
  min-height: 300px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, hsl(210 30% 90%), hsl(210 24% 84%));
  border: 2px dashed var(--gray-300);
  display: grid; place-items: center; text-align: center; color: var(--gray-500);
  position: relative;
}
.map-ph svg { width: 44px; height: 44px; color: var(--gray-400); margin-bottom: var(--space-2); }

.notice {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: var(--orange-100);
  border: 1px solid hsl(30 90% 70%);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
}
.notice svg { width: 26px; height: 26px; color: var(--orange-600); flex: none; }
.notice h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); color: var(--navy-900); }
.notice p { font-size: var(--text-sm); color: var(--navy-700); }

/* ---------------------------------------------------------------
   16. Final CTA band
--------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-16) var(--space-12);
  text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 0%, hsl(28 95% 50% / 0.28), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--text-4xl); color: var(--white); margin-bottom: var(--space-3); }
.cta-band p { color: hsl(210 40% 86%); font-size: var(--text-lg); margin: 0 auto var(--space-8); }
.cta-band .hero__actions { justify-content: center; margin-bottom: 0; }
@media (max-width: 560px) { .cta-band { padding: var(--space-12) var(--space-5); } .cta-band h2 { font-size: var(--text-3xl); } }

/* ---------------------------------------------------------------
   17. Footer
--------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: hsl(210 30% 78%); padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-8); margin-bottom: var(--space-12); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: var(--text-sm); letter-spacing: var(--track-widest); text-transform: uppercase; color: var(--white); margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; display: grid; gap: var(--space-3); }
.footer-col a { color: hsl(210 30% 78%); font-size: var(--text-sm); }
.footer-col a:hover { color: var(--orange-400); }
.footer-brand .brand { margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); color: hsl(210 26% 70%); max-width: 34ch; }
.footer-contact li { display: flex; gap: var(--space-3); align-items: center; font-size: var(--text-sm); }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange-400); flex: none; }
.footer-bottom { border-top: 1px solid hsl(215 40% 24%); padding-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: var(--text-xs); color: hsl(210 24% 62%); }
.footer-bottom .built { font-size: var(--text-xs); }
.footer-bottom .built a { color: var(--blue-400); }

/* ---------------------------------------------------------------
   18. Floating Call + WhatsApp buttons (all screens)
--------------------------------------------------------------- */
.float-actions {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  height: 56px;
  padding: 0 var(--space-5) 0 var(--space-4);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: var(--w-semibold);
  font-size: var(--text-sm);
  letter-spacing: var(--track-wide);
  box-shadow: 0 10px 26px hsl(215 45% 12% / 0.30), 0 2px 6px hsl(215 45% 12% / 0.20);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.float-btn svg { width: 24px; height: 24px; flex: none; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px hsl(215 45% 12% / 0.38); filter: brightness(1.04); }
.float-btn:active { transform: translateY(0); }
.float-btn:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }
.float-btn--call { background: var(--blue-600); }
.float-btn--wa { background: hsl(145 63% 40%); }
.float-btn__label { white-space: nowrap; }

/* On small screens, collapse to round icon buttons to save space */
@media (max-width: 560px) {
  .float-btn {
    height: 58px;
    width: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .float-btn__label {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .float-btn svg { width: 26px; height: 26px; }
}
@media print { .float-actions { display: none; } }

/* ---------------------------------------------------------------
   19. Page hero (interior pages)
--------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--navy-900); color: var(--white);
  padding-block: var(--space-16);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 340px at 85% -20%, hsl(210 92% 42% / 0.4), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .crumb { font-size: var(--text-xs); letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--blue-400); font-weight: var(--w-semibold); margin-bottom: var(--space-3); }
.page-hero h1 { font-size: var(--text-4xl); color: var(--white); margin-bottom: var(--space-3); }
.page-hero p { font-size: var(--text-lg); color: hsl(210 40% 86%); max-width: 60ch; }

/* ---------------------------------------------------------------
   20. Reveal animations
--------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-group.visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* utility */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.stack-sm { display: grid; gap: var(--space-2); }
.lead { font-size: var(--text-lg); color: var(--text-secondary); }
