/* Asset Property Care — shared stylesheet */
:root {
  --navy: #1a2f6e;
  --green: #2eaa3f;
  --green-dark: #1f7e2c;
  --dark: #16213a;
  --grey-bg: #f5f7fa;
  --grey-border: #e2e6ec;
  --text: #2b2f38;
  --text-light: #6b7280;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(26, 47, 110, 0.08);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.45rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--text); }

.eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(46, 170, 63, 0.3);
}
.btn-primary:hover { background: var(--green-dark); }

.btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link { display: flex; align-items: center; gap: 10px; background: #fff; padding: 6px 12px; border-radius: 8px; }
.logo-link img { height: 48px; width: auto; }

.site-header-home {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
}
.site-header-home .logo-link { background: none; padding: 0; }
.site-header-home .main-nav a { color: var(--navy); }
.site-header-home .main-nav a:hover, .site-header-home .main-nav a.active { color: var(--navy); border-bottom-color: var(--green); }
.site-header-home .header-phone { color: var(--navy); }
.site-header-home .header-phone span { color: var(--green-dark); }
.site-header-home .nav-toggle { color: var(--navy); }
@media (max-width: 860px) {
  .site-header-home .main-nav.open { background: var(--white); border-bottom: 1px solid var(--grey-border); }
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  border-bottom-color: var(--green);
  color: var(--white);
}
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.header-phone span { color: var(--green); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px 20px;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
}

/* Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(127,224,140,0.35) 0%, rgba(127,224,140,0) 70%);
  top: -180px; right: -120px;
}
.hero-blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
  bottom: -160px; left: -80px;
}
.hero-brand-zoom {
  position: absolute;
  top: -18%;
  right: -14%;
  width: 780px;
  height: 780px;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
  background: url("../images/brand-icon.png") no-repeat center / contain;
}
@media (max-width: 900px) {
  .hero-brand-zoom { width: 420px; height: 420px; top: -6%; right: -16%; opacity: 0.7; }
}
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
}
.hero h1 { color: var(--white); }
.hero p.lead { color: rgba(255,255,255,0.85); }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-caveat { color: rgba(255,255,255,0.75) !important; }
.hero-caveat a { color: #fff !important; text-decoration: underline; }
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-badge {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge::before { content: "✓"; color: var(--green); font-weight: 900; }

.hero-visual-wrap { position: relative; }
.hero-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-align: center;
  padding: 24px;
  gap: 16px;
  backdrop-filter: blur(2px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.hero-illustration { width: 78%; max-width: 260px; }
.hero-visual-tag { margin: 0; }

.hero-visual-photo {
  padding: 0;
  overflow: hidden;
  display: block;
  position: relative;
}
.hero-city-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.hero-city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,47,110,0.55) 0%, rgba(26,47,110,0.15) 45%, rgba(46,170,63,0.35) 100%);
}
.hero-city-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
@media (max-width: 860px) { .hero-visual-photo { aspect-ratio: 16/9; } }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/9; }
}

/* Floating trust card overlapping hero */
.trust-float-wrap {
  padding: 0 !important;
  position: relative;
  z-index: 3;
  margin-top: -56px;
  margin-bottom: -8px;
}
.trust-float-wrap .trust-strip {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(26,47,110,0.18);
  padding: 32px 24px;
  border: 1px solid var(--grey-border);
}
.has-trust-float { padding-top: 96px; }
@media (max-width: 700px) {
  .trust-float-wrap { margin-top: -36px; }
  .has-trust-float { padding-top: 72px; }
}

/* Illustrated placeholders */
.image-placeholder.illustrated {
  background: linear-gradient(160deg, var(--grey-bg) 0%, #eef1f6 100%);
  border: 1px solid var(--grey-border);
  flex-direction: column;
  gap: 14px;
}
.placeholder-illustration { width: 70%; max-width: 220px; }
.placeholder-logo { width: 88px; opacity: 0.55; margin-top: -6px; }

/* Real job photos */
.image-placeholder.has-photo {
  background: none;
  border: none;
  padding: 0;
  display: block;
  aspect-ratio: auto;
}
.job-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Recent work gallery */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.work-gallery figure { margin: 0; }
.work-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.work-gallery figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page header (non-home) */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #24397d 100%);
  color: var(--white);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: url("../images/logo.png") no-repeat center / contain;
  opacity: 0.3;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
@media (max-width: 900px) {
  .page-hero::after { display: none; }
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 720px; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }

/* Sections */
section { padding: 64px 0; }
.section-alt { background: var(--grey-bg); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head .lead { margin: 0 auto; }

/* Service tiles */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.tile {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(26,47,110,0.12); }
.tile-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(46,170,63,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--green-dark);
  transition: transform 0.2s ease, background 0.2s ease;
}
.tile:hover .tile-icon { transform: scale(1.08) rotate(-4deg); background: rgba(46,170,63,0.2); }
.tile-icon svg { width: 24px; height: 24px; }
.tile h3 { margin-bottom: 8px; }
.tile p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 12px; }
.tile-link { color: var(--green-dark); font-weight: 700; font-size: 0.9rem; }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  text-align: center;
}
.trust-stat { padding: 12px; }
.trust-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-dark);
  display: block;
}
.trust-stat .label { color: var(--text-light); font-size: 0.9rem; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.image-placeholder {
  background: var(--grey-bg);
  border: 2px dashed var(--grey-border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0 0 20px; }
.checklist li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--green-dark);
  font-weight: 900;
}

/* Service table */
.service-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 20px;
}
.service-table thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
}
.service-table tbody tr:nth-child(even) { background: var(--grey-bg); }
.service-table tbody tr:not(:last-child) { border-bottom: 1px solid var(--grey-border); }
.service-table td { padding: 11px 16px; vertical-align: top; }
.service-table td.tick {
  width: 30px;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  padding-right: 0;
}
.service-table td.tick + td strong { color: var(--navy); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step { text-align: left; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.testimonial p { font-style: italic; color: var(--text); }
.testimonial .who { font-weight: 700; color: var(--navy); font-style: normal; margin: 0; }
.testimonial .placeholder-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  background: rgba(46,170,63,0.1);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* CTA band */
.cta-band {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,0.92); margin: 0 auto 24px; }
.cta-band .btn-primary { background: var(--white); color: var(--green-dark); box-shadow: none; }
.cta-band .btn-primary:hover { background: rgba(255,255,255,0.9); }

/* Cards (services detail) */
.info-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

/* Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--navy); font-size: 0.92rem; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card a { color: var(--white); }
.contact-info-row { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-row .ic { font-size: 1.3rem; }
.contact-info-row .label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.04em;}
.contact-info-row .value { font-weight: 700; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid img { height: 40px; margin-bottom: 14px; }
.footer-grid p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer-bottom p { margin: 4px 0; color: rgba(255,255,255,0.5); }

/* Trust / accreditation badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 28px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.trust-badge svg { width: 20px; height: 20px; color: var(--green-dark); flex-shrink: 0; }
.trust-badges-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: -6px;
  padding-bottom: 18px;
}

/* Partner banner */
.partner-banner {
  background: var(--grey-bg);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  padding: 24px 0;
}
.partner-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.partner-banner-inner span.eyebrow { margin: 0; }
.partner-logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 10px 20px;
}
.partner-logo-lockup svg { width: 22px; height: 22px; color: var(--green-dark); }
.partner-logo-lockup.partner-logo-img {
  padding: 0;
  overflow: hidden;
  border: none;
}
.partner-logo-lockup.partner-logo-img img {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: cover;
  display: block;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  z-index: 300;
  transform: translateY(120%);
  transition: transform 0.35s ease;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.2);
}
.cookie-banner.open { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }
@media (max-width: 700px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
@media (max-width: 600px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
}

/* Plan calculator */
.calc-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 780px;
  margin: 0 auto;
}
.calc-input-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.calc-input-row input[type="range"] { flex: 1; min-width: 180px; accent-color: var(--green); }
.calc-count {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  min-width: 90px;
  text-align: center;
}
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .calc-results { grid-template-columns: 1fr; } }
.calc-result {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 2px solid transparent;
}
.calc-result.highlight { border-color: var(--green); background: rgba(46,170,63,0.06); }
.calc-result .plan-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 6px; }
.calc-result .plan-price { font-size: 1.7rem; font-weight: 800; color: var(--green-dark); }
.calc-result .plan-sub { font-size: 0.78rem; color: var(--text-light); }

/* EPC compliance banner (homepage) */
.epc-banner {
  background: var(--green);
  color: #fff;
}
.epc-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  flex-wrap: wrap;
  text-align: center;
}
.epc-banner p { margin: 0; font-size: 0.9rem; color: #fff; }
.epc-banner a { color: #fff; text-decoration: underline; font-weight: 700; }
.epc-banner-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  opacity: 0.85;
}
.epc-banner-close:hover { opacity: 1; }

.epc-banner.plans-banner { background: var(--navy); }

/* Chat / virtual assistant widget */
.chat-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
  cursor: pointer;
  border: none;
  font-size: 1.5rem;
  transition: transform 0.15s ease;
}
.chat-float:hover { transform: scale(1.08); }
@media (max-width: 600px) { .chat-float { width: 50px; height: 50px; bottom: 78px; right: 16px; } }

.chat-panel {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  z-index: 201;
  overflow: hidden;
  display: none;
}
.chat-panel.open { display: block; }
.chat-panel-header {
  background: var(--navy);
  color: #fff;
  padding: 16px 18px;
  font-weight: 700;
}
.chat-panel-header span { display: block; font-weight: 400; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.chat-panel-body { padding: 14px; }
.chat-option {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--grey-bg);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.chat-option:hover { background: rgba(46,170,63,0.1); border-color: var(--green); }
.chat-answer {
  display: none;
  padding: 10px 4px 4px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.chat-answer.open { display: block; }
.chat-answer a { color: var(--green-dark); font-weight: 700; }
@media (max-width: 600px) { .chat-panel { bottom: 140px; right: 16px; } }

/* Tag badges for placeholders */
.todo-tag {
  display: inline-block;
  background: #fff4de;
  color: #92640a;
  border: 1px solid #f2d69b;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
