/* ==========================================================================
   Fixvero Appliance Care — Design tokens (matched to Applicare kit palette)
   ========================================================================== */
:root {
  --primary: #3637A5;
  --primary-dark: #262778;
  --secondary: #090A1D;
  --text: #3F404E;
  --accent: #FF5722;
  --accent-dark: #E1441A;
  --accent-alt: #FFC752;
  --bg-tint: #F3F1FC;
  --light: #73748C;
  --white: #FFFFFF;
  --border: #DDDDEF;
  --accent-light: #FFF9EC;
  --text-on-dark: rgba(255,255,255,0.84);

  --font-head: 'Arapey', serif;
  --font-body: 'Arapey', serif;

  --container: 1240px;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(9, 10, 29, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
}
p { margin: 0 0 16px; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-tint { background: var(--bg-tint); }
.bg-dark { background: var(--secondary); }
.bg-white { background: var(--white); }

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  border: 1px solid #F4E3BE;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.label-pill.on-dark {
  color: var(--accent-alt);
  background: rgba(255, 199, 82, 0.12);
  border-color: rgba(255, 199, 82, 0.3);
}

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 34px; }
.section-head p { color: var(--light); font-size: 16px; margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
  padding: 15px 30px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-icon { flex: none; }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline-dark { background: transparent; color: var(--secondary); border-color: var(--border); }
.btn-outline-dark:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--accent); border-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
}
.header-phone svg { flex: none; color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--secondary);
  color: var(--text-on-dark);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(9,10,29,0.94) 30%, rgba(9,10,29,0.72) 60%, rgba(9,10,29,0.5) 100%),
    radial-gradient(600px 400px at 85% 10%, rgba(54,55,165,0.5), transparent 60%),
    radial-gradient(500px 340px at 100% 100%, rgba(255,87,34,0.2), transparent 60%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='2'%3E%3Crect x='20' y='30' width='60' height='90' rx='8'/%3E%3Cline x1='20' y1='75' x2='80' y2='75'/%3E%3Ccircle cx='140' cy='60' r='30'/%3E%3Ccircle cx='140' cy='60' r='18'/%3E%3Crect x='120' y='140' width='70' height='40' rx='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 320px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 84px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  color: var(--white);
  font-size: 46px;
  margin-bottom: 18px;
}
.hero-copy p {
  font-size: 17px;
  color: var(--text-on-dark);
  max-width: 540px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  color: var(--text);
  box-shadow: var(--shadow);
}
.hero-card h3 { font-size: 20px; margin-bottom: 6px; }
.hero-card p { color: var(--light); font-size: 14px; margin-bottom: 20px; }
.hero-card ul { display: flex; flex-direction: column; gap: 12px; }
.hero-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
}
.hero-card li svg { flex: none; color: var(--accent); }

.page-hero {
  position: relative;
  background: var(--secondary);
  color: var(--text-on-dark);
  padding: 68px 0;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 380px at 50% -10%, rgba(54,55,165,0.55), transparent 65%);
}
.page-hero .hero-pattern { opacity: 0.06; }
.page-hero-inner { position: relative; }
.page-hero h1 { color: var(--white); font-size: 40px; margin-bottom: 12px; }
.page-hero p { color: var(--text-on-dark); font-size: 16px; max-width: 560px; margin: 0 auto; }
.page-hero .label-pill { justify-content: center; }

/* ==========================================================================
   Feature / value cards
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--light); font-size: 14.5px; margin-bottom: 0; }

/* Two-column intro */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 30px;
}
.split-media svg { width: 100%; height: auto; }
.intro-features { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.intro-feature { display: flex; gap: 14px; align-items: flex-start; }
.intro-feature .dot {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.intro-feature h4 { font-size: 16px; margin: 0 0 4px; }
.intro-feature p { font-size: 14.5px; color: var(--light); margin: 0; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card .icon-wrap {
  width: 84px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { color: var(--light); font-size: 14.5px; margin-bottom: 16px; }
.service-card .card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link:hover { color: var(--accent); }

/* Alternating icon/text services (home page) */
.services-alt-wrap { background: var(--accent-light); }
.services-alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 34px 0;
  border-top: 1px solid #F0E2C2;
}
.services-alt-row:last-of-type { border-bottom: 1px solid #F0E2C2; }
.services-alt-item {
  display: flex;
  align-items: center;
  gap: 26px;
}
.services-alt-item.icon-right { flex-direction: row-reverse; text-align: right; }
.services-alt-item .icon-wrap-lg { flex: none; width: 168px; }
.services-alt-item .icon-wrap-lg img { width: 100%; height: auto; display: block; }
.services-alt-item h3 { font-size: 19px; margin-bottom: 6px; }
.services-alt-item p { color: var(--light); font-size: 14.5px; margin-bottom: 10px; }
.services-alt-item .card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}
.services-alt-item .card-link:hover { color: var(--accent); }
.services-alt-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 34px;
}
.services-alt-cta .header-phone span { display: inline; }

/* Why-choose card over photo */
.why-card-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}
.why-card-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
}
.why-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  align-self: center;
}
.feature-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin: 24px 0 28px;
}
.feature-grid-2x2 .intro-feature { align-items: flex-start; }

@media (max-width: 992px) {
  .why-card-grid { grid-template-columns: minmax(0, 1fr); }
  .why-card-photo { min-height: 320px; }
  .why-card { padding: 28px; }
}
@media (max-width: 576px) {
  .feature-grid-2x2 { grid-template-columns: minmax(0, 1fr); }
}

/* Trust band: photo header + overlapping tint feature strip */
.team-band { position: relative; padding-bottom: 0; }
.team-band-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.team-band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,10,29,0.78), rgba(9,10,29,0.6));
}
.team-band-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px 90px;
}
.team-band-text h2 { color: var(--white); max-width: 700px; }
.team-band-text p { color: var(--text-on-dark); max-width: 640px; margin-bottom: 0; }
.team-band-features {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  padding-bottom: 10px;
}
.tint-block-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tint-block {
  padding: 30px 24px;
  text-align: center;
}
.tint-block:nth-child(odd) { background: var(--bg-tint); }
.tint-block:nth-child(even) { background: var(--accent-light); }
.tint-block .feature-icon {
  background: var(--white);
  box-shadow: var(--shadow);
  margin: 0 auto 16px;
}
.tint-block h3 { font-size: 17px; margin-bottom: 8px; }
.tint-block p { color: var(--light); font-size: 14px; margin-bottom: 0; }

@media (max-width: 992px) {
  .team-band-media { min-height: 360px; }
  .team-band-features { margin-top: -50px; }
  .tint-block-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .team-band-text { padding-bottom: 130px; }
  .tint-block-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Benefits strip (dark or tint) */
.benefit-strip { background: var(--secondary); color: var(--text-on-dark); }
.benefit-strip .grid-4 { }
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: left;
}
.benefit-card .feature-icon { background: rgba(255,255,255,0.08); color: var(--accent-alt); }
.benefit-card h3 { color: var(--white); font-size: 17px; }
.benefit-card p { color: var(--text-on-dark); font-size: 14px; margin-bottom: 0; }

/* Coverage strip */
.coverage-strip { text-align: center; }
.coverage-strip .chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.coverage-strip .chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  background: var(--bg-tint);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 30px;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  text-align: center;
}
.step-card .step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 17px; margin-bottom: 6px; }
.step-card p { color: var(--light); font-size: 14px; margin-bottom: 0; }

/* CTA band */
.cta-band {
  position: relative;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 90% 0%, rgba(255,87,34,0.35), transparent 60%);
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 56px;
  padding-bottom: 56px;
}
.cta-band h2 { color: var(--white); font-size: 30px; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   About page specifics
   ========================================================================== */
.value-card {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.value-card h3 { font-size: 18px; }
.value-card p { color: var(--light); font-size: 14.5px; margin-bottom: 0; }

.owner-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.owner-avatar {
  flex: none;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
}
.owner-card h3 { margin-bottom: 4px; font-size: 19px; }
.owner-card .role { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 10px; display: block; }
.owner-card p { margin-bottom: 0; color: var(--light); font-size: 14.5px; }

.approach-list { display: flex; flex-direction: column; gap: 18px; }
.approach-item { display: flex; gap: 16px; }
.approach-item .num {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.approach-item h4 { font-size: 16px; margin-bottom: 4px; }
.approach-item p { font-size: 14.5px; color: var(--light); margin-bottom: 0; }

.coverage-band {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.coverage-band h2 { font-size: 24px; margin-bottom: 14px; }
.coverage-band .chips { justify-content: center; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.info-card .icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.info-card h4 { font-size: 15px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.3px; color: var(--light); }
.info-card p { margin-bottom: 0; font-size: 16px; color: var(--secondary); font-weight: 600; }
.info-card p.sub { font-size: 13.5px; color: var(--light); font-weight: 400; margin-top: 4px; }
.info-card a { color: var(--secondary); }
.info-card a:hover { color: var(--accent); }

.call-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--accent-alt);
  border-radius: var(--radius);
  padding: 22px;
}
.call-card .icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent-alt);
  display: flex; align-items: center; justify-content: center;
}
.call-card p { margin: 0; font-size: 13.5px; color: var(--secondary); }
.call-card a { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--secondary); }

.contact-form-wrap {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-wrap h2 { font-size: 24px; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--light); font-size: 14.5px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--secondary); font-family: var(--font-head); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.form-note { font-size: 13px; color: var(--light); margin-top: 14px; margin-bottom: 0; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   Image collage (home "Why Choose Us")
   ========================================================================== */
.why-collage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
}
.why-collage .c-big { grid-row: 1 / 3; }
.why-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 992px) {
  .why-collage { height: 360px; }
}
@media (max-width: 576px) {
  .why-collage { height: 300px; grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  line-height: 1;
  color: var(--primary);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer { padding: 16px 22px 20px; color: var(--light); font-size: 14.5px; margin: 0; }

/* ==========================================================================
   Shop gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-tint);
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--secondary); color: var(--text-on-dark); }
.footer-top { padding-top: 64px; padding-bottom: 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 64px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-on-dark); font-size: 14.5px; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a,
.footer-col address { font-size: 14.5px; color: var(--text-on-dark); font-style: normal; }
.footer-col a:hover { color: var(--accent-alt); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { flex: none; color: var(--accent-alt); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; 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: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Services showcase strip
   ========================================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.showcase-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.showcase-item span {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  text-align: center;
}

/* ==========================================================================
   CTA + request-service form band
   ========================================================================== */
.cta-form-band { position: relative; overflow: hidden; }
.cta-form-media { position: absolute; inset: 0; z-index: 0; }
.cta-form-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-form-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9,10,29,0.92) 40%, rgba(9,10,29,0.6) 100%);
}
.cta-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.cta-form-copy h2 { color: var(--white); font-size: 32px; }
.cta-form-points { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 26px; }
.cta-form-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-on-dark);
  font-size: 15px;
}
.cta-form-points svg { flex: none; color: var(--accent-alt); margin-top: 3px; }
.cta-form-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.cta-form-card h3 { color: var(--white); font-size: 22px; text-align: center; margin-bottom: 6px; }
.cta-form-card > p { color: rgba(255,255,255,0.8); text-align: center; font-size: 14px; margin-bottom: 22px; }
.cta-form-card .form-field label { color: rgba(255,255,255,0.85); }
.cta-form-card .form-field input,
.cta-form-card .form-field select,
.cta-form-card .form-field textarea { border-color: transparent; }

@media (max-width: 992px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-form-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; padding-top: 56px; padding-bottom: 56px; }
}
@media (max-width: 576px) {
  .showcase-grid { grid-template-columns: minmax(0, 1fr); }
  .cta-form-card { padding: 24px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-phone {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    background: var(--primary);
    flex: none;
  }
  .header-phone span { display: none; }
  .header-phone svg { color: var(--white); }
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-copy p { max-width: 100%; }
  .split { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .split.reverse .split-media { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .services-alt-row { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .services-alt-item .icon-wrap-lg { width: 140px; }
}

@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }
  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 26px 24px;
    gap: 4px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--border); }
  body.nav-open .main-nav { transform: translateX(0); }
  .header-actions .btn span { display: none; }
  .header-actions .btn.btn-accent { padding: 11px; }
  .hero-inner { padding-top: 48px; padding-bottom: 44px; }
  .hero-copy h1 { font-size: 32px; }
  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: 30px; }
  .section { padding: 52px 0; }
  .section-head h2 { font-size: 26px; }
  .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .services-grid { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .owner-card { flex-direction: column; text-align: center; }
  .coverage-strip .chips,
  .coverage-band .chips { gap: 10px; }
  .services-alt-item,
  .services-alt-item.icon-right { flex-direction: row; text-align: left; gap: 18px; }
  .services-alt-item .icon-wrap-lg { width: 96px; }
  .services-alt-cta { flex-direction: column; align-items: stretch; }
  .services-alt-cta .header-phone { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: 27px; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .contact-form-wrap { padding: 24px; }
}

/* ==========================================================================
   Mobile sticky call / WhatsApp bar
   ========================================================================== */
.mobile-sticky-cta { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: 76px; }
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: transparent;
  }
  body.nav-open .mobile-sticky-cta { display: none; }
  .msc-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    padding: 12px 10px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(9, 10, 29, 0.22);
  }
  .msc-btn svg { flex: none; }
  .msc-call { background: var(--primary); }
  .msc-whatsapp { background: #25D366; }
}
