/* =========================================================
   ClearPro Solutions — Website Redesign
   Brand blues from logo + conversion-focused local business UI
   ========================================================= */

:root {
  --navy: #0b2c6b;
  --navy-deep: #071f4a;
  --blue: #1a6fd4;
  --blue-bright: #2f95ef;
  --sky: #5eb6ff;
  --ice: #e8f4ff;
  --mist: #f4f8fc;
  --white: #ffffff;
  --ink: #142033;
  --muted: #5b6b7f;
  --line: #d7e3f0;
  --success: #159a5a;
  --whatsapp: #25d366;
  --shadow: 0 12px 40px rgba(11, 44, 107, 0.12);
  --shadow-sm: 0 6px 18px rgba(11, 44, 107, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 78px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.55rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--muted); }

.lead {
  font-size: 1.1rem;
  max-width: 58ch;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(26, 111, 212, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(26, 111, 212, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.btn-block { width: 100%; }

/* ---------- Top bar + Header ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem;
  padding: 0.55rem 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.topbar a:hover { color: var(--sky); }

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.topbar-links span,
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 227, 240, 0.8);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo img {
  height: 51px; /* +10% from 46px; header bar height unchanged */
  width: auto;
  max-height: calc(var(--header-h) - 16px);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.4rem;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  transition: width 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(94, 182, 255, 0.22), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(26, 111, 212, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 70%);
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ice);
  color: var(--navy);
  border: 1px solid #cfe5fb;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-trust strong { color: var(--navy); }

.hero-visual {
  position: relative;
}

.hero-main-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--ice);
}

.hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-float.rating {
  left: -1rem;
  bottom: 18%;
}

.hero-float.insured {
  right: -0.5rem;
  top: 12%;
}

.hero-float .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-float strong {
  display: block;
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.hero-float span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Logos / areas strip ---------- */
.areas-strip {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
}

.areas-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
}

.areas-strip .label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--mist);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- Cards / grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ice), #d9ecff);
  color: var(--blue);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }

.service-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card .media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--ice);
}

.service-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .media img {
  transform: scale(1.05);
}

.service-card .body {
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .price-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.65rem;
  background: var(--ice);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.service-card ul {
  margin: 0.5rem 0 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.service-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

.service-card .body .btn {
  margin-top: auto;
}

/* ---------- Why us / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: var(--ice);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.feature-item .num,
.feature-item .tick {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--blue);
  font-weight: 800;
}

.feature-item h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #134a9e 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat span {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- Process ---------- */
.process {
  background: var(--mist);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.process-card .step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-card .thumb {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  background: var(--ice);
}

.process-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Pricing ---------- */
.pricing-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--blue-bright);
  background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 45%);
  box-shadow: var(--shadow);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 1.1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.pricing-card .tier {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.pricing-card .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card .amount small {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.pricing-card .for {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.pricing-card ul {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  flex: 1;
}

.pricing-card li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

.discount-banner {
  margin-top: 1.5rem;
  background: linear-gradient(90deg, rgba(26,111,212,0.08), rgba(47,149,239,0.12));
  border: 1px dashed #9cc7f3;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #f5b400;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.quote-card p {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.quote-card .who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.quote-card .who strong {
  display: block;
  color: var(--navy-deep);
}

.quote-card .who span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 31, 74, 0.92), rgba(26, 111, 212, 0.88)),
    url("../img/commercial-building.jpg") center/cover no-repeat;
  color: white;
  border-radius: 28px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: white;
}

.cta-band p {
  opacity: 0.9;
  max-width: 55ch;
  margin-inline: auto  ;
  margin-bottom: 1.5rem;
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(94,182,255,0.18), transparent 25%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.page-hero .breadcrumb a:hover { color: var(--blue); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-deep);
}

.form-group label .req {
  color: #d64545;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(47, 149, 239, 0.15);
  background: white;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
}

.checkbox-grid input {
  width: auto;
  accent-color: var(--blue);
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  background: #e9f9f0;
  border: 1px solid #b7e6cb;
  color: #0f6b3d;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ice);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  color: var(--navy-deep);
  margin-bottom: 0.15rem;
}

.info-card a:hover { color: var(--blue); }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 400;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .answer {
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding-top: 3.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.75);
  font-size: 0.94rem;
}

.site-footer a:hover { color: var(--sky); }

.site-footer .logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.85rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  font-size: 1.7rem;
  transition: transform 0.18s ease;
}

.float-wa:hover { transform: scale(1.06); }

/* ---------- Utilities ---------- */
.bg-mist { background: var(--mist); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-3,
  .process-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .hero-main-img {
    aspect-ratio: 16 / 11;
    max-height: 420px;
  }

  .hero-float.rating { left: 0.75rem; bottom: 0.75rem; }
  .hero-float.insured { right: 0.75rem; top: 0.75rem; }

  .menu-toggle { display: inline-flex; }

  .nav,
  .nav-cta .btn-secondary {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.5rem);
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow);
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav.open a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--mist);
  }

  .nav.open a:last-child { border-bottom: 0; }

  .site-header { position: sticky; }
  .nav-wrap { position: relative; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .grid-2,
  .grid-4,
  .form-grid,
  .checkbox-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .hero { padding: 2.75rem 0 2rem; }
  .cta-band { padding: 2.25rem 1.25rem; }
  .form-card { padding: 1.25rem; }
  .logo img { height: 44px; } /* +10% from 40px */
  .btn { white-space: normal; text-align: center; }
}

/* ---------- SEO / Blog / Location pages ---------- */
.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.prose h3 {
  margin-top: 1.4rem;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.4rem;
}

.prose li {
  padding-left: 0.15rem;
}

.prose a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose strong {
  color: var(--navy-deep);
}

.toc-box {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0 2rem;
}

.toc-box strong {
  display: block;
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
}

.toc-box a {
  display: block;
  color: var(--blue);
  font-weight: 600;
  padding: 0.25rem 0;
}

.suburb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
}

.suburb-grid span {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.blog-card .media {
  aspect-ratio: 16 / 10;
  background: var(--ice);
  overflow: hidden;
}

.blog-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card .read {
  margin-top: auto;
  font-weight: 700;
  color: var(--blue);
}

.article-hero {
  padding: 2.5rem 0 1rem;
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0 4rem;
}

.article-aside {
  position: sticky;
  top: 96px;
}

.article-aside .card {
  margin-bottom: 1rem;
}

.related-links {
  display: grid;
  gap: 0.5rem;
}

.related-links a {
  font-weight: 600;
  color: var(--blue);
}

.local-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.local-hero-badges span {
  background: var(--ice);
  border: 1px solid #cfe5fb;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.comp-table th,
.comp-table td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  text-align: left;
}

.comp-table th {
  background: var(--mist);
  color: var(--navy-deep);
}

.comp-table td strong {
  color: var(--success);
}

@media (max-width: 980px) {
  .blog-grid,
  .suburb-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside { position: static; }
  .suburb-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Social media ---------- */
.social-follow-label {
  margin: 1rem 0 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.social-btn.soc-fb { background: #1877f2; }
.social-btn.soc-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-btn.soc-wa { background: #25d366; }
.social-btn.soc-other { background: #334155; font-weight: 800; font-size: 0.85rem; }

.social-icons-top .social-btn {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: none;
}

.social-icons-top .social-btn svg {
  width: 15px;
  height: 15px;
}

.social-icons-footer .social-btn {
  width: 40px;
  height: 40px;
}

.social-proof {
  background: linear-gradient(135deg, #0b2c6b 0%, #1a6fd4 55%, #2f95ef 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.social-proof h2,
.social-proof p {
  color: #fff;
}

.social-proof p {
  opacity: 0.92;
  max-width: 52ch;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.social-proof .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.3);
}

.btn-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(214, 36, 159, 0.28);
}

.social-stat-cards {
  display: grid;
  gap: 0.75rem;
}

.social-stat-cards .mini {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  backdrop-filter: blur(6px);
}

.social-stat-cards strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.social-stat-cards span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 1.25rem 0;
  padding: 0.85rem 1rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.share-label {
  font-weight: 800;
  color: var(--navy);
  margin-right: 0.35rem;
  font-size: 0.9rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.share-ig { background: #d6249f; }

.social-hub-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(94, 182, 255, 0.25), transparent 30%),
    linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
}

.social-hub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.social-hub-card {
  text-align: center;
  padding: 2rem 1.4rem;
}

.social-hub-card .big-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 1.6rem;
}

.social-hub-card .big-icon.fb { background: #1877f2; }
.social-hub-card .big-icon.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-hub-card .big-icon.wa { background: #25d366; }

.link-bio {
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.link-bio a {
  display: block;
  text-align: center;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  font-weight: 800;
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.link-bio a:hover {
  transform: translateY(-2px);
  border-color: var(--blue-bright);
  color: var(--blue);
}

.link-bio a.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
  border-color: transparent;
}

.link-bio a.primary:hover { color: #fff; }

@media (max-width: 980px) {
  .social-proof-grid,
  .social-hub-cards {
    grid-template-columns: 1fr;
  }
}

/* Blog article images — compact, no layout break */
.blog-article-img,
.prose > img.blog-article-img,
.article-layout .prose img.blog-article-img {
  display: block;
  width: 100%;
  max-width: 420px !important;
  max-height: 150px !important;
  height: 150px !important;
  object-fit: cover;
  border-radius: 12px;
  margin: 0.5rem 0 1rem;
}
.blog-card .media {
  height: 110px !important;
  max-height: 110px !important;
  aspect-ratio: auto !important;
  overflow: hidden;
  background: var(--ice);
}
.blog-card .media img {
  width: 100%;
  height: 110px !important;
  object-fit: cover;
  display: block;
}
.blog-grid {
  gap: 1rem;
}

/* Trusted clients — horizontal carousel */
.clients-strip {
  padding: 2.75rem 0 2.25rem;
  background: var(--white);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.clients-strip .section-head {
  margin-bottom: 1.35rem;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.clients-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.clients-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 1rem;
  width: max-content !important;
  max-width: none !important;
  animation: clients-scroll 28s linear infinite;
  will-change: transform;
}
.clients-carousel:hover .clients-track,
.clients-carousel:focus-within .clients-track {
  animation-play-state: paused;
}
/* manual mode only pauses auto animation; still stays horizontal */
.clients-carousel.is-manual .clients-track {
  animation-play-state: paused;
}
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.clients-strip .client-card,
.clients-track > .client-card {
  flex: 0 0 200px !important;
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
  display: block;
  float: none !important;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.client-card .thumb {
  height: 112px;
  overflow: hidden;
  background: #fff;
}
.client-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.client-card .name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-deep);
  padding: 0.55rem 0.4rem 0.7rem;
  letter-spacing: 0.02em;
}
.carousel-btn {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Google reviews */
.reviews-section {
  background: var(--mist);
}
.review-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 800;
  color: var(--navy-deep);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.google-badge .g-star { color: #fbbc04; letter-spacing: 0.05em; }
.review-card .g-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.review-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.review-qr-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  padding: 0.5rem;
  margin: 0.75rem 0;
}
.review-qr-card p {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
  .blog-card .media,
  .blog-card .media img {
    height: 120px !important;
    max-height: 120px !important;
  }
  .client-card {
    flex-basis: 170px;
    width: 170px;
  }
  .client-card .thumb {
    height: 100px;
  }
}
@media (max-width: 640px) {
  .carousel-btn {
    display: none;
  }
  .clients-track-wrap {
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .client-card {
    flex-basis: 150px;
    width: 150px;
  }
  .client-card .thumb {
    height: 90px;
  }
}

/* Performance: skip rendering offscreen sections until near viewport */
/* NOTE: do NOT put content-visibility on .clients-strip — it can break flex carousel layout */
.reviews-section,
.process,
.blog-grid,
.footer-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}
img {
  max-width: 100%;
  height: auto;
}

/* ---------- Cookie consent (small bottom bar) ---------- */
.cp-cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: #071f4a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(7, 31, 74, 0.35);
  font-size: 0.82rem;
  line-height: 1.35;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cp-cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.cp-cookie-text {
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.cp-cookie-actions {
  flex-shrink: 0;
}
.cp-cookie-banner .btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .cp-cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    flex-wrap: wrap;
  }
  .cp-cookie-actions {
    width: 100%;
  }
  .cp-cookie-banner .btn-sm {
    width: 100%;
  }
}