/* =========================================================
   BloomLight Solutions — dark UI inspired by the brand logo
   Background: near-black navy
   Accents:    pale lime/gold glow
   ========================================================= */

:root {
  /* Brand palette */
  --bg:        #0A0E1A;          /* near-black navy */
  --bg-2:      #0E1424;          /* surface */
  --bg-3:      #131A2C;          /* card */
  --bg-4:      #182137;          /* hover / elevated */
  --border:    rgba(214, 232, 140, 0.10);
  --border-2:  rgba(214, 232, 140, 0.18);

  --text:      #E7ECF2;
  --text-mut:  #9BA3B4;
  --text-dim:  #6B7388;

  --lime:      #D6E88C;          /* pale lime — bloom petals */
  --lime-2:    #F4F7C9;           /* near-white lime — bloom glow */
  --gold:      #F8E27A;           /* warm gold accent */
  --glow:      rgba(214, 232, 140, 0.45);
  --glow-soft: rgba(214, 232, 140, 0.18);

  --danger:    #E76A6A;
  --success:   #7FCB8C;

  /* Type */
  --font-display: "Chillax", "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Satoshi", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--lime); text-decoration: none; }
a:hover { color: var(--lime-2); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-radius: 6px;
}

.visually-hidden,
.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem;
  width: auto; height: auto;
  padding: .5rem .75rem;
  background: var(--lime); color: #0A0E1A;
  z-index: 100;
  border-radius: 8px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 26, 0.78);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem 1rem;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 24px var(--glow-soft);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: .01em;
  color: var(--lime-2);
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text-mut);
  margin-top: .2rem;
}
.primary-nav { margin-left: auto; }
.primary-nav ul {
  display: flex; gap: 1.75rem;
  list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
  color: var(--text-mut);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.primary-nav a:hover { color: var(--lime); }

.header-cta { margin-left: 0; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border-2);
  width: 42px; height: 42px;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: .75rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.mobile-menu a { color: var(--text); padding: .65rem 0; font-weight: 500; }
.mobile-menu .btn { margin-top: .25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .8rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #E5F19D 0%, #C9DE6E 100%);
  color: #14181F;
  box-shadow: 0 0 0 1px rgba(214, 232, 140, .35), 0 10px 28px -10px var(--glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 232, 140, .55), 0 18px 38px -14px var(--glow);
  color: #14181F;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  background: var(--bg-3);
  color: var(--lime);
  border-color: var(--lime);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(244, 247, 201, 0.18) 0%, transparent 60%),
    radial-gradient(40% 40% at 15% 80%, rgba(214, 232, 140, 0.12) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1rem;
  padding: .35rem .75rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(214, 232, 140, 0.06);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--text);
}
.hero-title .accent {
  background: linear-gradient(180deg, #F4F7C9 0%, #D6E88C 60%, #B8C96E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(214, 232, 140, 0.25);
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mut);
  max-width: 56ch;
  margin: 0 0 1.75rem;
}
.hero-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
  color: var(--text-mut);
  font-size: .95rem;
}
.hero-points li { display: flex; align-items: center; gap: .65rem; }
.hero-points span { color: var(--lime); font-size: .55rem; }

.hero-figure {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(60% 60% at 50% 45%, rgba(244, 247, 201, 0.12) 0%, transparent 70%), var(--bg-2);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8), 0 0 60px -20px var(--glow);
  aspect-ratio: 1 / 1;
}
.hero-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--border); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.section-lead {
  color: var(--text-mut);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.service-card {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px var(--glow);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 .6rem;
  color: var(--lime-2);
}
.service-card p {
  color: var(--text-mut);
  font-size: .95rem;
  margin: 0;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.price-card.highlight {
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(214, 232, 140, 0.07) 0%, var(--bg-2) 100%);
  box-shadow: 0 0 50px -20px var(--glow);
}
.price-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 .5rem;
  color: var(--text);
}
.price {
  font-size: 1.5rem;
  color: var(--lime-2);
  margin: 0 0 .5rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.price strong { color: var(--gold); font-weight: 700; }
.price-note {
  color: var(--text-mut);
  font-size: .85rem;
  margin: 0;
}
.disclaimer {
  background: rgba(214, 232, 140, 0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--text-mut);
  font-size: .9rem;
  margin: 0;
}
.disclaimer strong { color: var(--lime); }

/* ---------- Calculator ---------- */
.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.calc-services {
  display: grid; gap: .85rem;
}
.calc-row-service {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.calc-row-service:hover { border-color: var(--border-2); }
.calc-row-service.is-selected {
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(214, 232, 140, 0.06) 0%, var(--bg-2) 100%);
  box-shadow: 0 0 30px -15px var(--glow);
}
.calc-service-info { min-width: 0; }
.calc-service-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 .25rem;
}
.calc-service-desc {
  color: var(--text-mut);
  font-size: .85rem;
  margin: 0 0 .35rem;
}
.calc-service-price {
  color: var(--lime);
  font-size: .8rem;
  letter-spacing: .04em;
  margin: 0;
}
.calc-service-controls {
  display: flex; align-items: center; gap: .6rem;
}
.calc-toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-2);
  background: var(--bg);
  border-radius: 6px;
  cursor: pointer;
  display: inline-grid; place-items: center;
  transition: all .2s var(--ease);
}
.calc-toggle:checked {
  background: var(--lime);
  border-color: var(--lime);
}
.calc-toggle:checked::after {
  content: "";
  width: 6px; height: 10px;
  border: solid #0A0E1A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.calc-qty {
  display: inline-flex; align-items: center;
  gap: .4rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: .2rem;
}
.calc-qty button {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--lime);
  font-size: 1rem;
  cursor: pointer;
  display: grid; place-items: center;
}
.calc-qty button:hover { background: var(--bg-4); }
.calc-qty input {
  width: 32px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
}
.calc-qty input::-webkit-outer-spin-button,
.calc-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-qty input[type=number] { -moz-appearance: textfield; }

.calc-qty[hidden] { display: none; }

/* Calc summary */
.calc-summary {
  position: sticky;
  top: 5.5rem;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: 0 0 60px -25px var(--glow);
}
.calc-summary h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 1rem;
  color: var(--lime-2);
}
.calc-empty { color: var(--text-dim); font-size: .9rem; margin: 0; }
.calc-line-items {
  display: flex; flex-direction: column; gap: .45rem;
  margin-bottom: 1rem;
  min-height: 1rem;
}
.calc-line {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .9rem;
  color: var(--text-mut);
}
.calc-line .name { color: var(--text); }
.calc-line .val { color: var(--lime); font-variant-numeric: tabular-nums; }

.calc-totals {
  border-top: 1px dashed var(--border-2);
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.calc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .25rem 0;
  font-size: .95rem;
  color: var(--text-mut);
}
.calc-row span:last-child {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.calc-row.calc-range {
  margin-top: .6rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  font-size: 1rem;
}
.calc-row.calc-range span:last-child {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.calc-cta { width: 100%; }
.calc-disclaimer {
  font-size: .78rem;
  color: var(--text-dim);
  margin: .85rem 0 0;
  line-height: 1.5;
}

/* ---------- Contact ---------- */
.contact-form {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 0 60px -25px var(--glow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label,
.field legend {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--text-mut);
  font-weight: 600;
  text-transform: uppercase;
}
.field .optional { color: var(--text-dim); text-transform: none; font-weight: 400; }
.field-hint {
  font-size: .78rem; color: var(--text-dim);
  margin: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: .8rem .9rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  width: 100%;
}
.contact-form textarea { resize: vertical; min-height: 90px; }

/* Netlify honeypot anti-spam field — must exist in DOM but hidden from humans */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Plain (non-glassy) select — used for Time Frame & Preferred Contact Method */
.contact-form select.select-plain {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #11182A;        /* solid surface — no translucency */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23D6E88C' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  border: 1px solid #2A3656;        /* solid, opaque border */
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-right: 2.5rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.contact-form select.select-plain:hover {
  border-color: var(--lime);
  background-color: #141C32;
}
.contact-form select.select-plain:focus {
  border-color: var(--lime);
  background-color: #141C32;
}
.contact-form select.select-plain option {
  background-color: #11182A;
  color: var(--text);
}
.contact-form textarea[readonly] {
  background: rgba(214, 232, 140, 0.05);
  color: var(--lime-2);
  cursor: default;
}
.radio-row {
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.radio {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-mut);
  transition: all .15s var(--ease);
}
.radio:hover { border-color: var(--lime); color: var(--text); }
.radio input { accent-color: var(--lime); }
.radio:has(input:checked) {
  background: rgba(214, 232, 140, 0.1);
  color: var(--lime);
  border-color: var(--lime);
}
fieldset.field {
  border: none; padding: 0; margin: 0;
}
.form-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  align-items: center;
}
.form-note {
  color: var(--text-dim);
  font-size: .82rem;
  margin: 0;
}
.form-success {
  background: rgba(127, 203, 140, 0.08);
  border: 1px solid rgba(127, 203, 140, 0.3);
  color: var(--text);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.form-success h3 {
  margin: 0 0 .35rem;
  color: var(--success);
  font-size: 1rem;
}
.form-success p { margin: 0; color: var(--text-mut); font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: #07090F;
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 2.5rem;
}
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.footer-mark { border-radius: 10px; box-shadow: 0 0 24px var(--glow-soft); }
.footer-word {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--lime-2);
  margin: 0;
}
.footer-tag { color: var(--text-mut); font-size: .9rem; margin: .15rem 0 0; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-h {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 .65rem;
  font-size: .95rem;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer-cols a { color: var(--text-mut); font-size: .9rem; }
.footer-cols a:hover { color: var(--lime); }
.footer-cols li { color: var(--text-mut); font-size: .9rem; }
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin: 1.5rem 0 0;
  color: var(--text-dim);
  font-size: .8rem;
}

/* Honor [hidden] for elements with display rules below */
[hidden] { display: none !important; }

/* ---------- Floating support ---------- */
.support-fab-wrap {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 60;
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
.support-fab {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.15rem;
  background: linear-gradient(180deg, #E5F19D 0%, #C9DE6E 100%);
  color: #14181F;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  box-shadow: 0 14px 38px -8px var(--glow), 0 0 0 1px rgba(214, 232, 140, .4);
  transition: transform .15s var(--ease), box-shadow .25s var(--ease);
}
.support-fab:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -12px var(--glow); }
.support-fab-icon { display: grid; place-items: center; }

.support-menu {
  display: flex; flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: .5rem;
  min-width: 260px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 50px -20px var(--glow);
  animation: pop .18s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: translateY(6px) scale(.98); } to { opacity: 1; transform: none; } }
.support-menu-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem .85rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
  font: inherit;
  width: 100%;
}
.support-menu-item:hover { background: var(--bg-4); }
.support-menu-item strong { display: block; font-family: var(--font-display); font-weight: 500; }
.support-menu-item .support-sub {
  display: block; color: var(--text-dim); font-size: .8rem; margin-top: .1rem;
}
.support-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(214, 232, 140, 0.1);
  border-radius: 10px;
  font-size: 1.1rem;
}

/* ---------- Chat panel ---------- */
.chat-panel {
  position: fixed;
  right: 1.25rem; bottom: 5.5rem;
  z-index: 70;
  width: min(360px, calc(100vw - 2rem));
  max-height: min(560px, calc(100vh - 8rem));
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 60px -20px var(--glow);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: pop .2s var(--ease);
}
.chat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.chat-title { font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--lime-2); }
.chat-status {
  margin: .15rem 0 0;
  font-size: .78rem; color: var(--text-mut);
  display: inline-flex; align-items: center; gap: .4rem;
}
.chat-status .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #7FCB8C; box-shadow: 0 0 10px #7FCB8C;
}
.chat-close {
  background: transparent; border: none;
  color: var(--text-mut);
  width: 32px; height: 32px;
  font-size: 1.4rem;
  border-radius: 8px; cursor: pointer;
}
.chat-close:hover { background: var(--bg-4); color: var(--text); }
.chat-log {
  flex: 1; overflow-y: auto;
  padding: 1rem;
  display: flex; flex-direction: column; gap: .6rem;
  font-size: .92rem;
}
.chat-msg {
  max-width: 86%;
  padding: .6rem .85rem;
  border-radius: 14px;
  line-height: 1.4;
  color: var(--text);
}
.chat-msg.bot {
  background: var(--bg-4);
  border-top-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user {
  background: linear-gradient(180deg, #E5F19D 0%, #C9DE6E 100%);
  color: #14181F;
  border-top-right-radius: 4px;
  align-self: flex-end;
}
.chat-form {
  display: flex; gap: .5rem;
  padding: .75rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.chat-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--text);
  border-radius: 10px;
  padding: .65rem .8rem;
  font-family: var(--font-body);
  font-size: .92rem;
}
.chat-form .btn { padding: .65rem 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { max-width: 420px; margin: 0 auto; }
  .calculator { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu[data-open="true"] { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .support-fab-label { display: none; }
  .support-fab { padding: .9rem; border-radius: 999px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}


.site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(10, 14, 26, 0.96); }
.radio-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.radio { min-height: 48px; width: 100%; justify-content: flex-start; }
.consult-field { position: relative; }
.consult-picker { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 56px; padding: .9rem 1rem; background: linear-gradient(180deg, rgba(19, 26, 44, 0.96) 0%, rgba(14, 20, 36, 0.98) 100%); border: 1px solid var(--border-2); border-radius: 14px; color: var(--text); text-align: left; box-shadow: inset 0 1px 0 rgba(244, 247, 201, 0.04); }
.consult-picker:hover, .consult-picker[aria-expanded="true"] { border-color: var(--lime); box-shadow: 0 0 0 1px rgba(214, 232, 140, .16), 0 14px 34px -22px var(--glow); }
.consult-picker-copy { display: flex; flex-direction: column; gap: .18rem; min-width: 0; }
.consult-picker-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.consult-picker-value { color: var(--lime-2); font-weight: 600; }
.consult-picker-icon { flex: 0 0 auto; color: var(--lime); font-size: 1rem; transition: transform .2s var(--ease); }
.consult-picker[aria-expanded="true"] .consult-picker-icon { transform: rotate(180deg); }
.consult-panel { margin-top: .75rem; padding: 1rem; border-radius: 18px; border: 1px solid var(--border-2); background: linear-gradient(180deg, rgba(19, 26, 44, 0.98) 0%, rgba(10, 14, 26, 0.98) 100%); box-shadow: 0 30px 80px -28px rgba(0,0,0,.82), 0 0 50px -24px var(--glow); }
.consult-panel-head { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: .75rem; margin-bottom: .9rem; }
.consult-month { margin: 0; text-align: center; font-family: var(--font-display); color: var(--lime-2); font-size: 1rem; }
.consult-nav { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--border-2); background: var(--bg); color: var(--lime); }
.consult-nav:hover { border-color: var(--lime); background: var(--bg-4); }
.consult-weekdays, .consult-calendar { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .45rem; }
.consult-weekdays { margin-bottom: .45rem; }
.consult-weekdays span { text-align: center; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); }
.consult-day, .consult-day-empty { aspect-ratio: 1; }
.consult-day { border: 1px solid var(--border); border-radius: 12px; background: var(--bg-2); color: var(--text); font-weight: 600; }
.consult-day:hover { border-color: var(--lime); color: var(--lime-2); }
.consult-day.is-today { box-shadow: inset 0 0 0 1px rgba(248, 226, 122, 0.5); }
.consult-day.is-selected { background: linear-gradient(180deg, #E5F19D 0%, #C9DE6E 100%); color: #14181F; border-color: rgba(214, 232, 140, .75); }
.consult-day:disabled { opacity: .35; cursor: not-allowed; }
.consult-times-wrap { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.consult-times-title { margin: 0 0 .7rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mut); }
.consult-times { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.consult-time { min-height: 44px; padding: .7rem .75rem; border-radius: 999px; border: 1px solid var(--border-2); background: var(--bg); color: var(--text-mut); text-align: center; font-weight: 600; }
.consult-time:hover { border-color: var(--lime); color: var(--text); }
.consult-time.is-selected { background: rgba(214, 232, 140, 0.12); border-color: var(--lime); color: var(--lime-2); }
.consult-empty { color: var(--text-dim); font-size: .9rem; margin: 0; }
.thank-you-body { min-height: 100vh; }
.thank-you-main { min-height: 100vh; display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3rem); background: radial-gradient(60% 50% at 50% 18%, rgba(244, 247, 201, 0.16) 0%, transparent 60%), radial-gradient(40% 35% at 20% 80%, rgba(214, 232, 140, 0.12) 0%, transparent 70%), var(--bg); }
.thank-you-card { width: min(760px, 100%); text-align: center; padding: clamp(1.75rem, 5vw, 3rem); border-radius: 24px; border: 1px solid var(--border-2); background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%); box-shadow: 0 30px 80px -24px rgba(0,0,0,.8), 0 0 70px -24px var(--glow); }
.thank-you-logo { width: min(280px, 62vw); margin: 0 auto 1.5rem; border-radius: 28px; box-shadow: 0 0 40px -10px var(--glow); }
.thank-you-title { margin: 0 0 1rem; font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.thank-you-copy { max-width: 40ch; margin: 0 auto 1.5rem; color: var(--text-mut); font-size: 1rem; }
.thank-you-actions { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
@media (max-width: 640px) { .radio-row { grid-template-columns: 1fr; } .consult-times { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* =========================================================
   Service cards — combined services + pricing section
   ========================================================= */

/* Category grouping */
.service-category {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.service-category-label {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 1rem;
  padding: .35rem .75rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(214, 232, 140, 0.06);
  display: inline-block;
}
.service-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.1rem;
}

/* Individual service card */
.service-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.2rem;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .18s var(--ease);
}
.service-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 10px 34px -18px rgba(0,0,0,.6), 0 0 28px -16px var(--glow-soft);
  transform: translateY(-2px);
}
.service-card--selected {
  border-color: rgba(214, 232, 140, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(214, 232, 140, 0.18), 0 10px 34px -18px rgba(0,0,0,.5), 0 0 40px -16px var(--glow) !important;
}

.service-card-body {
  flex: 1;
}
.service-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 .55rem;
}
.service-card-desc {
  font-size: .9rem;
  color: var(--text-mut);
  line-height: 1.6;
  margin: 0;
}

.service-card-footer {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.service-card .price {
  font-size: .92rem;
  color: var(--text-mut);
  margin: 0;
}
.service-card .price strong {
  color: var(--lime-2);
  font-weight: 700;
}

/* Actions row: qty stepper + Add button */
.service-card-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}

/* Qty stepper on service card */
.sc-qty {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: .3rem .45rem;
}
.sc-qty-btn {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  color: var(--lime);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.sc-qty-btn:hover {
  background: rgba(214, 232, 140, 0.1);
}
.sc-qty-input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 0 .2rem;
  -moz-appearance: textfield;
}
.sc-qty-input::-webkit-inner-spin-button,
.sc-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.sc-qty-label {
  font-size: .75rem;
  color: var(--text-dim);
  letter-spacing: .04em;
  white-space: nowrap;
}

/* Add to estimate button */
.sc-add-btn {
  flex: 1;
  min-width: 140px;
  background: transparent;
  color: var(--lime);
  border: 1px solid var(--border-2);
  font-size: .88rem;
  padding: .6rem 1rem;
  border-radius: 10px;
  text-align: center;
  transition: all .18s var(--ease);
}
.sc-add-btn:hover {
  background: rgba(214, 232, 140, 0.08);
  border-color: var(--lime);
  color: var(--lime-2);
}
.sc-add-btn--active {
  background: linear-gradient(180deg, rgba(229,241,157,0.18) 0%, rgba(201,222,110,0.12) 100%);
  border-color: rgba(214, 232, 140, 0.55) !important;
  color: var(--lime-2) !important;
}
.sc-add-btn--active:hover {
  background: rgba(214, 232, 140, 0.06);
  border-color: rgba(214, 232, 140, 0.3);
  color: var(--text-mut) !important;
}

/* Responsive */
@media (max-width: 640px) {
  .service-category-grid {
    grid-template-columns: 1fr;
  }
  .service-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sc-add-btn {
    text-align: center;
  }
}
