  :root {
    --navy: #0f1830;
    --ink: #1a2240;
    --grey: #5a6478;
    --grey-light: #9ca3b5;
    --line: #e8ecf3;
    --cream: #fbfaf7;
    --white: #ffffff;
    --red: #e63946;
    --orange: #f4a020;
    --blue: #2a9df4;
    --green: #2eb872;
    --purple: #8b5cbf;
    --pink: #e94e8e;
    --teal: #2cb5b5;
    --yellow: #ffd23f;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }
  nav.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 24px rgba(15, 24, 48, 0.04);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .nav-logo img {
    height: 60px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--ink);
    color: var(--white) !important;
    padding: 11px 22px;
    border-radius: 999px;
    transition: all 0.25s ease !important;
  }
  .nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
  }

  /* Quote dropdown */
  .nav-quote-wrap {
    position: relative;
  }
  .nav-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
  }
  .nav-quote-chev {
    transition: transform 0.2s ease;
  }
  .nav-quote-btn.open .nav-quote-chev {
    transform: rotate(180deg);
  }
  .nav-quote-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(15, 24, 48, 0.14);
    padding: 8px;
    min-width: 280px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
  }
  .nav-quote-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-quote-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ink) !important;
    transition: background 0.15s ease;
  }
  .nav-quote-item:hover {
    background: var(--cream);
  }
  .nav-quote-item .nq-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
  }
  .nav-quote-item .nq-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }
  .nav-quote-item .nq-text strong {
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .nav-quote-item .nq-text span {
    color: var(--grey);
    font-size: 12px;
  }
  .menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: 0.3s;
  }

  /* ===== HERO ===== */
  .hero {
    padding: 140px 0 90px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 157, 244, 0.08), transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(244, 160, 32, 0.07), transparent 70%);
    border-radius: 50%;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(46, 184, 114, 0.15);
  }
  h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  h1 .script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, var(--red), var(--orange) 25%, var(--blue) 50%, var(--green) 75%, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transform: rotate(-2deg);
    padding: 0.15em 0.2em 0.15em 0.2em;
    line-height: 1.15;
    margin: -0.05em 0;
  }
  .hero p.lede {
    font-size: 1.18rem;
    color: var(--grey);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.65;
  }
  .senses {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: -10px;
    margin-bottom: 18px;
  }
  .sense {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    border-left: 3px solid var(--c);
    padding: 4px 0 4px 12px;
  }
  .sense-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey);
    margin-bottom: 3px;
  }
  .sense-word {
    font-family: 'Caveat', cursive;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--c);
    line-height: 1;
  }
  .feels-good {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    margin-top: -20px;
    margin-bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .feels-good::before {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    border-radius: 2px;
  }
  .feels-good em {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 4px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(15, 24, 48, 0.15);
  }
  .btn-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42, 157, 244, 0.3);
  }
  .btn-secondary {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--line);
  }
  .btn-secondary:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
  }
  .trust-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--grey);
    font-weight: 500;
  }
  .trust-item svg {
    flex-shrink: 0;
  }

  /* Hero visual — logo as centrepiece with floating cards */
  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
  }
  .logo-showcase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .logo-glow {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 40%, rgba(244, 160, 32, 0.22), transparent 55%),
      radial-gradient(circle at 70% 60%, rgba(42, 157, 244, 0.22), transparent 55%),
      radial-gradient(circle at 50% 80%, rgba(46, 184, 114, 0.18), transparent 60%);
    filter: blur(20px);
    animation: gentle-glow 8s ease-in-out infinite;
  }
  @keyframes gentle-glow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
    50% { transform: scale(1.05) rotate(2deg); opacity: 1; }
  }
  .hero-logo {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(15, 24, 48, 0.12));
    z-index: 1;
  }
  .visual-card {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 18px 50px rgba(15, 24, 48, 0.12);
    border: 1px solid var(--line);
    z-index: 4;
  }
  .card-1 {
    top: 4%;
    left: -4%;
    width: 42%;
    transform: rotate(-4deg);
  }
  .card-1 .stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .card-1 .stat-label {
    font-size: 12px;
    color: var(--grey);
    line-height: 1.3;
  }
  .card-2 {
    bottom: 8%;
    right: -4%;
    width: 50%;
    transform: rotate(3deg);
    background: var(--ink);
    color: var(--white);
    padding: 18px;
  }
  .card-2 .quote {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .card-2 .reviewer {
    font-size: 11px;
    color: var(--grey-light);
  }
  .card-3 {
    bottom: 0;
    left: 12%;
    width: 50%;
    transform: rotate(-2deg);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
  }
  .card-3 .icon-circle {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 18px;
  }
  .card-3 .text-block strong {
    display: block;
    font-size: 13.5px;
    color: var(--navy);
    margin-bottom: 1px;
  }
  .card-3 .text-block span {
    font-size: 11.5px;
    color: var(--grey);
  }
  .floating-dots {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 10%;
    right: 4%;
    background-image: radial-gradient(var(--purple) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.4;
    z-index: 0;
  }

  /* ===== SECTION BASE ===== */
  section { padding: 110px 0; }
  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
  }
  .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
  }
  h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .section-head p {
    font-size: 1.1rem;
    color: var(--grey);
  }

  /* ===== SERVICES ===== */
  .services {
    background: var(--white);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  a.service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--cream);
    border-radius: 28px;
    padding: 40px 36px;
    border: 1px solid var(--line);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  a.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 24, 48, 0.08);
    background: var(--white);
  }
  .service-card:hover::before {
    transform: scaleX(1);
  }
  .service-card:nth-child(1) { --accent: var(--blue); }
  .service-card:nth-child(2) { --accent: var(--orange); }
  .service-card:nth-child(3) { --accent: var(--pink); }

  .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--accent);
    color: white;
  }
  .service-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .service-tagline {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .service-card p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.65;
  }
  .service-cta {
    margin-top: auto;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    transition: gap 0.25s ease;
  }
  a.service-card:hover .service-cta {
    gap: 14px;
  }
  .service-cta svg {
    transition: transform 0.25s ease;
  }

  /* ===== ABOUT / WHY US ===== */
  .why {
    background: var(--cream);
    position: relative;
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .why-content h2 { text-align: left; }
  .why-content > p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .why-list {
    list-style: none;
    display: grid;
    gap: 18px;
  }
  .why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .why-list .tick {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
  }
  .why-list strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 700;
  }
  .why-list span {
    color: var(--grey);
    font-size: 14px;
  }

  /* Stats panel */
  .stats-panel {
    background: var(--ink);
    border-radius: 32px;
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .stats-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 160, 32, 0.2), transparent 70%);
    border-radius: 50%;
  }
  .stats-panel::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(42, 157, 244, 0.18), transparent 70%);
    border-radius: 50%;
  }
  .stats-quote {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 36px;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
  }
  .stat-item {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 18px;
  }
  .stat-item .num {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .stat-item .num .accent-1 { color: var(--orange); }
  .stat-item .num .accent-2 { color: var(--blue); }
  .stat-item .num .accent-3 { color: var(--green); }
  .stat-item .num .accent-4 { color: var(--pink); }
  .stat-item .label {
    font-size: 13px;
    color: var(--grey-light);
    letter-spacing: 0.5px;
  }

  /* ===== CALCULATOR ===== */
  .calculator {
    background: var(--white);
    position: relative;
  }
  .calc-wrapper {
    max-width: 980px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .calc-wrapper::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(42, 157, 244, 0.1), transparent 70%);
    border-radius: 50%;
  }
  .calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  .calc-rooms-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .calc-rooms {
    display: grid;
    gap: 10px;
  }
  .calc-extras {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .calc-extras-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .calc-extra {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 0.15s ease;
  }
  .calc-extra:hover {
    background: var(--cream);
  }
  .calc-extra input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  .calc-extra-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
  }
  .calc-extra input:checked + .calc-extra-check {
    background: var(--blue);
    border-color: var(--blue);
  }
  .calc-extra-check::after {
    content: '';
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
    margin-top: -2px;
  }
  .calc-extra input:checked + .calc-extra-check::after {
    transform: rotate(45deg) scale(1);
  }
  .calc-extra-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
  }
  .calc-extra-text strong {
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 700;
  }
  .calc-extra-text small {
    color: var(--grey);
    font-size: 12.5px;
    margin-top: 2px;
  }
  .calc-room {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px 12px 20px;
    transition: all 0.2s ease;
  }
  .calc-room:hover {
    border-color: var(--blue);
  }
  .calc-room-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
  }
  .calc-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border-radius: 999px;
    padding: 4px;
  }
  .calc-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--navy);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    font-family: inherit;
    line-height: 1;
  }
  .calc-btn:hover:not(:disabled) {
    background: var(--blue);
    color: white;
    transform: scale(1.08);
  }
  .calc-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
  .calc-count {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
  }
  .calc-results {
    position: sticky;
    top: 100px;
    align-self: start;
  }
  .calc-results-card {
    background: var(--ink);
    border-radius: 24px;
    padding: 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .calc-results-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(244, 160, 32, 0.18), transparent 70%);
    border-radius: 50%;
  }
  .calc-results-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
  }
  .calc-gst-note {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 11.5px;
    opacity: 0.75;
    margin-left: 4px;
  }
  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
  }
  .price-row:last-of-type { border-bottom: none; }
  .price-label {
    display: flex;
    flex-direction: column;
  }
  .price-label strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
  }
  .price-label span {
    font-size: 12px;
    color: var(--grey-light);
    margin-top: 2px;
  }
  .price-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
  }
  .price-row:nth-child(2) .price-value { color: var(--orange); }
  .price-row:nth-child(3) .price-value { color: var(--blue); }
  .price-row:nth-child(4) .price-value { color: var(--green); }
  .price-row-initial {
    margin-top: 10px;
    padding-top: 22px !important;
    border-top: 1px dashed rgba(255,255,255,0.18);
    position: relative;
  }
  .price-row-initial::before {
    content: 'One-off services';
    position: absolute;
    top: -2px;
    left: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-light);
    opacity: 0.85;
  }
  .price-row-initial .price-value { color: var(--teal); }
  .price-row-eol .price-value { color: var(--pink); }
  .calc-cta {
    background: var(--white);
    color: var(--ink);
    text-align: center;
    margin-top: 22px;
    padding: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: block;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
  }
  .calc-cta:hover {
    background: var(--blue);
    color: var(--white);
  }
  .calc-disclaimer {
    margin-top: 18px;
    font-size: 12px;
    color: var(--grey);
    text-align: center;
    line-height: 1.5;
  }
  .calc-intro {
    text-align: center;
    margin-bottom: 36px;
  }
  .calc-residential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 184, 114, 0.12);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
  .calc-send-block {
    margin-top: 22px;
    position: relative;
    z-index: 1;
  }
  .calc-send-block.hidden { display: none; }
  .calc-contact-form {
    display: none;
    margin-top: 22px;
    position: relative;
    z-index: 1;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .calc-contact-form.show { display: block; }
  .calc-form-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }
  .calc-form-sub {
    font-size: 12px;
    color: var(--grey-light);
    margin-bottom: 18px;
  }
  .calc-field {
    margin-bottom: 12px;
  }
  .calc-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 6px;
  }
  .calc-field input,
  .calc-field select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s;
  }
  .calc-field input::placeholder { color: rgba(255,255,255,0.35); }
  .calc-field input:focus,
  .calc-field select:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(42, 157, 244, 0.2);
  }
  .calc-field select option { background: var(--ink); color: var(--white); }
  .calc-link-btn {
    background: none;
    border: none;
    color: var(--grey-light);
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-family: inherit;
    padding: 6px;
  }
  .calc-link-btn:hover { color: var(--white); }

  /* Other services callout */
  /* ===== COMMERCIAL & MEDICAL CALLOUT (under residential calculator) ===== */
  .biz-callout {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 44px 40px;
    background:
      radial-gradient(circle at top right, rgba(244, 160, 32, 0.10), transparent 50%),
      radial-gradient(circle at bottom left, rgba(233, 78, 142, 0.10), transparent 50%),
      var(--white);
    border: 2px solid var(--line);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
  }
  .biz-callout::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--blue));
  }
  .biz-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
  }
  .biz-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 12px;
  }
  .biz-head h3 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .biz-head p {
    color: var(--grey);
    font-size: 15.5px;
    line-height: 1.65;
  }
  .biz-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .biz-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 26px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  .biz-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .biz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 24, 48, 0.10);
    border-color: var(--accent);
  }
  .biz-card:hover::before {
    transform: scaleX(1);
  }
  .biz-commercial { --accent: var(--orange); }
  .biz-medical { --accent: var(--pink); }
  .biz-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .biz-card-body {
    flex: 1;
  }
  .biz-card-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 6px;
  }
  .biz-card-body strong {
    display: block;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .biz-card-body p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }
  .biz-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    transition: gap 0.25s ease;
  }
  .biz-card:hover .biz-card-cta {
    gap: 14px;
  }


  .testimonials {
    background: var(--white);
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial {
    background: var(--cream);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--line);
    position: relative;
  }
  .testimonial .stars {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .testimonial p {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 15px;
  }
  .avatar.a1 { background: var(--blue); }
  .avatar.a2 { background: var(--orange); }
  .avatar.a3 { background: var(--green); }
  .testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
  }
  .testimonial-author span {
    font-size: 12px;
    color: var(--grey);
  }

  /* ===== CHECKLIST ===== */
  .checklist {
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  .checklist::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(46, 184, 114, 0.08), transparent 70%);
    border-radius: 50%;
  }
  .checklist::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(244, 160, 32, 0.06), transparent 70%);
    border-radius: 50%;
  }
  .checklist-intro-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .checklist-intro-line svg {
    color: var(--green);
  }
  .under-behind {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(57, 144, 209, 0.08), rgba(232, 122, 89, 0.08));
    border: 1px dashed var(--blue);
    padding: 12px 22px;
    border-radius: 14px;
    margin-top: 18px;
    font-size: 14.5px;
    color: var(--navy);
  }
  .under-behind svg {
    color: var(--blue);
    flex-shrink: 0;
  }
  .under-behind strong {
    color: var(--blue);
    font-weight: 700;
  }
  .room-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .room-tab {
    background: var(--cream);
    border: 1.5px solid var(--line);
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
  }
  .room-tab:hover { border-color: var(--blue); transform: translateY(-2px); }
  .room-tab.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 24, 48, 0.18);
  }
  .room-tab .room-tab-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, var(--blue));
    transition: all 0.2s ease;
  }
  .room-tab.active .room-tab-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
  }
  .room-tab[data-room="bedrooms"]   { --accent: var(--blue); }
  .room-tab[data-room="bathrooms"]  { --accent: var(--teal); }
  .room-tab[data-room="kitchen"]    { --accent: var(--orange); }
  .room-tab[data-room="dining"]     { --accent: var(--purple); }
  .room-tab[data-room="living"]     { --accent: var(--pink); }
  .room-tab[data-room="office"]     { --accent: var(--green); }
  .room-tab[data-room="laundry"]    { --accent: var(--red); }
  .room-tab[data-room="other"]      { --accent: var(--yellow); }
  .room-tab .count-pill {
    background: var(--accent, var(--blue));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1.4;
  }
  .room-tab.active .count-pill {
    background: rgba(255,255,255,0.18);
  }

  .room-panel-wrap {
    max-width: 980px;
    margin: 0 auto;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .room-panel-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--panel-accent, var(--blue));
    transition: background 0.3s ease;
  }
  .room-panel-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .room-panel-header .room-icon-big {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--panel-accent, var(--blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .room-panel-header h3 {
    font-size: 1.55rem;
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .room-panel-header .room-meta {
    color: var(--grey);
    font-size: 13.5px;
    margin-top: 2px;
  }

  .room-panel {
    display: none;
    animation: panel-fade 0.35s ease;
  }
  .room-panel.active { display: block; }
  @keyframes panel-fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .checklist-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
    list-style: none;
  }
  .checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.5;
    padding: 6px 0;
  }
  .check-tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--panel-accent, var(--blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .checklist-disclaimer {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--grey);
    text-align: center;
    line-height: 1.6;
  }
  .checklist-disclaimer strong {
    color: var(--navy);
  }


  .about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
  }
  .about-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue), var(--purple) 50%, var(--pink));
    box-shadow: 0 24px 60px rgba(15, 24, 48, 0.18);
  }
  .about-visual img.founder-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 1;
  }
  .about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 24, 48, 0.75) 100%);
    z-index: 2;
  }
  .founder-nameplate {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
  }
  .founder-name-block .founder-tag {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
  .founder-name-block .founder-role {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    opacity: 0.95;
  }
  .founder-tenure {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    white-space: nowrap;
  }
  .about-content h2 { text-align: left; }
  .about-content > p {
    color: var(--grey);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 18px;
  }
  .about-content > p strong { color: var(--navy); font-weight: 700; }
  .mission-block {
    background: var(--cream);
    border-radius: 20px;
    padding: 28px 30px;
    margin-top: 28px;
    border-left: 4px solid var(--orange);
  }
  .mission-block strong {
    display: block;
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .mission-block p {
    color: var(--navy);
    font-size: 16px;
    margin: 0;
    line-height: 1.65;
    font-weight: 500;
  }
  .values-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
  }
  .values-head h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .values-head p { color: var(--grey); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .value-card {
    background: var(--cream);
    border-radius: 22px;
    padding: 32px 26px;
    text-align: left;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
  }
  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,24,48,0.06);
    background: var(--white);
  }
  .value-num {
    font-family: 'Caveat', cursive;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .value-card:nth-child(1) { --accent-from: var(--red); --accent-to: var(--orange); }
  .value-card:nth-child(2) { --accent-from: var(--orange); --accent-to: var(--yellow); }
  .value-card:nth-child(3) { --accent-from: var(--blue); --accent-to: var(--teal); }
  .value-card:nth-child(4) { --accent-from: var(--purple); --accent-to: var(--pink); }
  .value-card h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
  }
  .value-card p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ===== BEFORE & AFTER ===== */
  .before-after {
    background: var(--cream);
  }
  .ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .ba-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
  }
  .ba-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15,24,48,0.08);
  }
  .ba-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ba-card h3::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent, var(--blue));
  }
  .ba-card:nth-child(1) { --accent: var(--blue); }
  .ba-card:nth-child(2) { --accent: var(--orange); }
  .ba-card:nth-child(3) { --accent: var(--green); }
  .ba-card:nth-child(4) { --accent: var(--pink); }
  .ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ba-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2f8, #d8e0ec);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ba-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .ba-img-wrap.placeholder {
    background-image:
      linear-gradient(45deg, rgba(15,24,48,0.04) 25%, transparent 25%),
      linear-gradient(-45deg, rgba(15,24,48,0.04) 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, rgba(15,24,48,0.04) 75%),
      linear-gradient(-45deg, transparent 75%, rgba(15,24,48,0.04) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    color: var(--grey-light);
  }
  .ba-placeholder-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 12px;
  }
  .ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15,24,48,0.85);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
  }
  .ba-label.after { background: var(--green); }
  .ba-card .ba-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--grey);
    text-align: center;
    font-style: italic;
  }

  /* ===== FAQ ===== */
  .faq {
    background: var(--white);
  }
  .faq-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .faq-tab {
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
  }
  .faq-tab:hover { border-color: var(--blue); }
  .faq-tab.active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }
  .faq-panel {
    max-width: 820px;
    margin: 0 auto;
    display: none;
  }
  .faq-panel.active { display: block; }
  .faq-item {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
  }
  .faq-item.open {
    background: var(--white);
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(42,157,244,0.08);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--blue); }
  .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--line);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }
  .faq-item.open .faq-icon {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: rotate(180deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.7;
  }
  .faq-item.open .faq-answer { max-height: 400px; }

  /* ===== JOIN OUR TEAM ===== */
  .join-team {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .join-team::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(244, 160, 32, 0.1), transparent 70%);
    border-radius: 50%;
  }
  .join-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .join-content .section-eyebrow { color: var(--orange); }
  .join-content h2 { text-align: left; }
  .join-content > p {
    color: var(--grey);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .join-perks {
    display: grid;
    gap: 14px;
  }
  .perk {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--line);
  }
  .perk-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  .perk:nth-child(1) .perk-icon { background: var(--orange); }
  .perk:nth-child(2) .perk-icon { background: var(--blue); }
  .perk:nth-child(3) .perk-icon { background: var(--green); }
  .perk:nth-child(4) .perk-icon { background: var(--pink); }
  .perk strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 1px;
  }
  .perk span {
    color: var(--grey);
    font-size: 13px;
  }

  /* ===== CONTACT ===== */
  .contact {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 78, 142, 0.08), transparent 70%);
    border-radius: 50%;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    position: relative;
    z-index: 1;
  }
  .contact-info h2 { text-align: left; }
  .contact-info > p {
    color: var(--grey);
    font-size: 1.05rem;
    margin-bottom: 32px;
  }
  .contact-blocks {
    display: grid;
    gap: 18px;
  }
  .contact-block {
    background: var(--white);
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.25s ease;
  }
  .contact-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 24, 48, 0.06);
    border-color: var(--blue);
  }
  .contact-block .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
  }
  .contact-block:nth-child(1) .ci-icon { background: var(--green); }
  .contact-block:nth-child(2) .ci-icon { background: var(--blue); }
  .contact-block:nth-child(3) .ci-icon { background: var(--orange); }
  .contact-block strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 3px;
  }
  .contact-block span {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
  }

  /* Form */
  .form-card {
    background: var(--white);
    border-radius: 32px;
    padding: 44px;
    box-shadow: 0 24px 60px rgba(15, 24, 48, 0.06);
    border: 1px solid var(--line);
  }
  .form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .form-card .form-sub {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 28px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
  }
  label .req { color: var(--red); }
  input, textarea, select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    background: var(--cream);
    transition: all 0.2s;
  }
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(42, 157, 244, 0.1);
  }
  textarea {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
  }
  .form-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .form-note {
    text-align: center;
    font-size: 12px;
    color: var(--grey);
    margin-top: 14px;
  }
  .form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
  }
  .form-success.show { display: block; }
  .form-success .check {
    width: 64px;
    height: 64px;
    background: var(--green);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
  }
  .form-success h4 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .form-success p { color: var(--grey); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--ink);
    color: var(--grey-light);
    padding: 70px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  .footer-brand img {
    height: 60px;
    margin-bottom: 18px;
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
  }
  footer h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 10px; }
  footer ul a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  footer ul a:hover { color: var(--blue); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
  }
  .socials {
    display: flex;
    gap: 10px;
  }
  .socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-light);
    transition: all 0.2s;
    text-decoration: none;
  }
  .socials a:hover { background: var(--blue); color: white; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 968px) {
    .hero { padding: 120px 0 70px; }
    .hero-grid, .why-grid, .contact-grid, .about-grid, .join-grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    .services-grid, .testimonial-grid, .ba-grid {
      grid-template-columns: 1fr;
    }
    .values-grid {
      grid-template-columns: 1fr 1fr;
    }
    .calc-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .calc-results {
      position: static;
    }
    .calc-wrapper { padding: 28px; }
    .biz-callout {
      padding: 30px 22px;
      margin-top: 40px;
    }
    .biz-cards {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .biz-card {
      padding: 24px 22px;
    }
    .checklist-items {
      grid-template-columns: 1fr;
      gap: 4px;
    }
    .room-panel-wrap {
      padding: 24px;
    }
    .room-panel-header {
      gap: 14px;
    }
    .room-panel-header h3 { font-size: 1.25rem; }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
    .hero-visual { max-width: 460px; margin: 0 auto; }
    section { padding: 80px 0; }
    .nav-links {
      position: fixed;
      top: 78px;
      left: 0;
      right: 0;
      background: var(--white);
      flex-direction: column;
      gap: 0;
      padding: 20px;
      border-bottom: 1px solid var(--line);
      transform: translateY(-120%);
      transition: transform 0.3s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 0; }
    .menu-btn { display: block; }
    .nav-quote-menu {
      position: static;
      box-shadow: none;
      border: none;
      background: var(--cream);
      margin-top: 8px;
      min-width: 0;
      opacity: 1;
      transform: none;
      pointer-events: auto;
      max-height: 0;
      overflow: hidden;
      padding: 0;
      transition: max-height 0.25s ease, padding 0.25s ease;
    }
    .nav-quote-menu.open {
      max-height: 500px;
      padding: 8px;
    }
    .nav-quote-btn {
      width: 100%;
      justify-content: center;
    }
    .stats-panel { padding: 32px; }
    .form-card { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    /* On phones, lift the floating cards off the logo so they don't collide */
    .hero-visual {
      aspect-ratio: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      max-width: 360px;
    }
    .logo-showcase {
      position: static;
      transform: none;
      width: 100%;
      order: 1;
    }
    .visual-card {
      position: static;
      width: 100%;
      max-width: 320px;
      transform: none !important;
    }
    .card-1 {
      order: 2;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
    }
    .card-1 .stat {
      font-size: 2rem;
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .card-1 .stat-label {
      font-size: 12.5px;
    }
    .card-2 {
      order: 3;
      padding: 16px 18px;
    }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .nav-logo img { height: 42px; }
    .stats-row { grid-template-columns: 1fr; }
    h1 { font-size: 2.4rem; }
    .values-grid { grid-template-columns: 1fr; }
  }

  /* ===== NEW MULTI-PAGE STYLES ===== */
  /* Active nav state */
  .nav-links a.active {
    color: var(--blue);
    position: relative;
  }
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
  }

  /* Page hero (used on services / gallery / faq / contact) */
  .page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
  }
  .page-hero::before,
  .page-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
  .page-hero::before {
    top: -120px; right: -120px;
    width: 380px; height: 380px;
  }
  .page-hero::after {
    bottom: -100px; left: -100px;
    width: 280px; height: 280px;
  }
  .page-hero-blue::before { background: radial-gradient(circle, rgba(42, 157, 244, 0.13), transparent 70%); }
  .page-hero-blue::after  { background: radial-gradient(circle, rgba(46, 184, 114, 0.10), transparent 70%); }
  .page-hero-green::before { background: radial-gradient(circle, rgba(46, 184, 114, 0.13), transparent 70%); }
  .page-hero-green::after  { background: radial-gradient(circle, rgba(244, 160, 32, 0.10), transparent 70%); }
  .page-hero-purple::before { background: radial-gradient(circle, rgba(139, 92, 191, 0.13), transparent 70%); }
  .page-hero-purple::after  { background: radial-gradient(circle, rgba(42, 157, 244, 0.10), transparent 70%); }
  .page-hero-pink::before { background: radial-gradient(circle, rgba(233, 78, 142, 0.13), transparent 70%); }
  .page-hero-pink::after  { background: radial-gradient(circle, rgba(244, 160, 32, 0.10), transparent 70%); }
  .page-hero-orange::before { background: radial-gradient(circle, rgba(244, 160, 32, 0.13), transparent 70%); }
  .page-hero-orange::after  { background: radial-gradient(circle, rgba(233, 78, 142, 0.10), transparent 70%); }

  .page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
  }
  .page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 22px;
  }
  .page-hero h1 .script {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-right: 0.18em;
    line-height: 1.15;
  }
  .page-hero-green h1 .script { background: linear-gradient(135deg, var(--green), var(--teal)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .page-hero-pink h1 .script { background: linear-gradient(135deg, var(--pink), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .page-hero-purple h1 .script { background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .page-hero-orange h1 .script { background: linear-gradient(135deg, var(--orange), var(--pink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .page-hero .lede {
    font-size: 1.15rem;
    color: var(--grey);
    max-width: 640px;
    line-height: 1.65;
  }

  /* Services quick-nav chips (jump links to in-page services) */
  .svc-quicknav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }
  .svc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--line);
    transition: all 0.2s ease;
  }
  .svc-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 24, 48, 0.08);
  }
  .svc-chip-blue:hover { color: white; background: var(--blue); border-color: var(--blue); }
  .svc-chip-orange:hover { color: white; background: var(--orange); border-color: var(--orange); }
  .svc-chip-pink:hover { color: white; background: var(--pink); border-color: var(--pink); }

  /* Service block (residential / commercial / medical) */
  .svc-block {
    padding: 90px 0;
    scroll-margin-top: 80px;
  }
  .svc-residential { background: var(--white); }
  .svc-commercial { background: var(--cream); }
  .svc-medical { background: var(--white); }

  .svc-header {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
  }
  .svc-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
  }
  .svc-residential .svc-icon { background: var(--blue); }
  .svc-commercial .svc-icon { background: var(--orange); }
  .svc-medical .svc-icon { background: var(--pink); }
  .svc-header-text { flex: 1; }
  .svc-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .svc-residential .svc-eyebrow { color: var(--blue); }
  .svc-commercial .svc-eyebrow { color: var(--orange); }
  .svc-medical .svc-eyebrow { color: var(--pink); }
  .svc-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .svc-header p {
    color: var(--grey);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 680px;
  }

  /* Section title within a service block (e.g. "what's included") */
  .svc-section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
  }
  .svc-section-title h3 {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .svc-section-title p { color: var(--grey); }
  .svc-section-title .under-behind { margin-top: 14px; }
  .svc-calc-intro { margin-top: 70px; }

  /* Feature grid (commercial/medical) */
  .svc-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 40px;
  }
  .svc-feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .svc-commercial .svc-feature { background: var(--white); }
  .svc-medical .svc-feature { background: var(--cream); }
  .svc-feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    color: white;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .svc-feature h4 {
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
  }
  .svc-feature p {
    color: var(--grey);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
  }

  /* CTA band inside commercial/medical */
  .svc-quote-band {
    border-radius: 22px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .svc-quote-band-orange {
    background: linear-gradient(135deg, rgba(244, 160, 32, 0.13), rgba(244, 160, 32, 0.04));
    border: 1px solid rgba(244, 160, 32, 0.3);
  }
  .svc-quote-band-pink {
    background: linear-gradient(135deg, rgba(233, 78, 142, 0.13), rgba(233, 78, 142, 0.04));
    border: 1px solid rgba(233, 78, 142, 0.3);
  }
  .svc-quote-band-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .svc-quote-band p {
    color: var(--grey);
    font-size: 14.5px;
    margin: 0;
    max-width: 540px;
  }

  /* Homepage final CTA card */
  .home-cta { padding: 80px 0; background: var(--cream); }
  .home-cta-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: 0 12px 40px rgba(15, 24, 48, 0.04);
  }
  .home-cta-text { flex: 1; min-width: 280px; }
  .home-cta-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .home-cta-text p { color: var(--grey); max-width: 540px; }
  .home-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* Mobile tweaks for the new components */
  @media (max-width: 768px) {
    .page-hero { padding: 120px 0 50px; }
    .svc-block { padding: 60px 0; }
    .svc-header {
      flex-direction: column;
      gap: 18px;
      margin-bottom: 36px;
      padding-bottom: 26px;
    }
    .svc-icon { width: 60px; height: 60px; }
    .svc-feature-grid { grid-template-columns: 1fr; gap: 16px; }
    .svc-quote-band {
      padding: 26px 24px;
      flex-direction: column;
      text-align: left;
      align-items: flex-start;
    }
    .home-cta-card {
      padding: 32px 26px;
      flex-direction: column;
      text-align: left;
      align-items: flex-start;
    }
    .svc-quicknav { gap: 8px; }
    .svc-chip { padding: 8px 14px; font-size: 13px; }
  }

  /* When checklist/calculator are nested inside residential service block,
     reset their padding/background since the parent svc-block already provides those. */
  .svc-residential .checklist,
  .svc-residential .calculator {
    padding: 0;
    background: transparent;
  }
  .svc-residential .checklist::before,
  .svc-residential .checklist::after { display: none; }
  /* Hide the original section-head from checklist (we use svc-section-title instead) */
  .svc-residential .checklist > .container > .section-head:first-child {
    display: none;
  }
  /* Also hide the legacy 'other-services-callout' or any biz-callout that was inside the calculator section */
  .svc-residential .biz-callout,
  .svc-residential .other-services-callout {
    display: none;
  }

  /* ===== Service header quote CTA ===== */
  .svc-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    color: white;
    flex-shrink: 0;
    align-self: center;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(15, 24, 48, 0.10);
  }
  .svc-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 24, 48, 0.18);
  }
  .svc-header-cta svg {
    transition: transform 0.25s ease;
  }
  .svc-header-cta:hover svg {
    transform: translateX(3px);
  }
  .svc-header-cta-blue { background: var(--blue); }
  .svc-header-cta-blue:hover { background: var(--navy); }
  .svc-header-cta-orange { background: var(--orange); }
  .svc-header-cta-orange:hover { background: var(--navy); }
  .svc-header-cta-pink { background: var(--pink); }
  .svc-header-cta-pink:hover { background: var(--navy); }

  /* Make svc-header use flex so CTA sits on the right of the text on desktop,
     while keeping icon on the left */
  .svc-header {
    flex-wrap: wrap;
  }

  @media (max-width: 768px) {
    .svc-header-cta {
      align-self: flex-start;
      padding: 11px 20px;
    }
  }

  /* ===== COMMERCIAL / MEDICAL ESTIMATOR ===== */
  .est-card {
    max-width: 1100px;
    margin: 50px auto 36px;
    background: var(--white);
    border-radius: 28px;
    padding: 44px 40px;
    border: 2px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .est-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 5px;
    background: var(--est-accent, var(--orange));
  }
  .est-commercial { --est-accent: var(--orange); background: var(--white); }
  .est-medical    { --est-accent: var(--pink); background: var(--cream); }

  .est-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
  }
  .est-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--est-accent);
    margin-bottom: 10px;
  }
  .est-head h3 {
    font-size: clamp(1.4rem, 2.6vw, 1.7rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .est-head p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.6;
  }

  .est-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
  }

  .est-areas {
    display: grid;
    gap: 10px;
  }
  .est-area {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }
  .est-medical .est-area { background: var(--white); }
  .est-area-label strong {
    display: block;
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .est-area-label span {
    color: var(--grey);
    font-size: 12px;
  }
  .est-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 4px;
    flex-shrink: 0;
  }
  .est-medical .est-stepper { background: var(--cream); }
  .est-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--est-accent);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s ease;
  }
  .est-btn:hover:not(:disabled) {
    background: var(--est-accent);
    color: white;
  }
  .est-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .est-count {
    min-width: 24px;
    text-align: center;
    color: var(--navy);
    font-weight: 700;
    font-size: 14.5px;
  }

  .est-results { position: sticky; top: 100px; }
  .est-results-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 20px;
    padding: 26px;
    position: relative;
    overflow: hidden;
  }
  .est-results-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 140px; height: 140px;
    background: radial-gradient(circle, var(--est-accent), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
  }
  .est-freq-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .est-freq {
    flex: 1;
    min-width: 60px;
    padding: 8px 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--grey-light);
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .est-freq:hover { background: rgba(255,255,255,0.15); color: white; }
  .est-freq.active {
    background: var(--est-accent);
    border-color: var(--est-accent);
    color: white;
  }
  /* "Initial" frequency button — visually marks it as a one-off, teal accent */
  .est-freq-initial {
    border-left: 2px solid var(--teal) !important;
  }
  .est-freq-initial.active {
    background: var(--teal);
    border-color: var(--teal) !important;
  }
  .est-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
  }
  .est-price-row:last-of-type { border-bottom: none; }
  .est-price-label strong {
    display: block;
    color: var(--white);
    font-size: 14.5px;
    font-weight: 700;
  }
  .est-price-label span {
    color: var(--grey-light);
    font-size: 11.5px;
  }
  .est-price-value {
    color: var(--est-accent);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: right;
    white-space: nowrap;
  }
  .est-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,0.15);
    font-size: 12.5px;
    position: relative;
    z-index: 1;
  }
  .est-hours-label { color: var(--grey-light); }
  .est-hours { color: var(--white); font-weight: 700; }
  .est-disclaimer {
    margin-top: 18px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--est-accent);
    border-radius: 8px;
    color: var(--grey-light);
    font-size: 12px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .est-card { padding: 30px 22px; }
    .est-grid { grid-template-columns: 1fr; gap: 24px; }
    .est-results { position: static; }
    .est-area { padding: 11px 14px; }
    .est-freq-row { gap: 4px; }
    .est-freq { min-width: 0; font-size: 11px; padding: 7px 4px; }
    .est-price-value { font-size: 1.15rem; }
  }

  /* ===== Estimator extras (windows add-on + weekend + min-visit note) ===== */
  .est-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .est-extras {
    background: var(--white);
    border: 1px dashed var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .est-medical .est-extras { background: var(--cream); }
  .est-extras-title {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--est-accent);
    margin-bottom: 2px;
  }
  .est-extra-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 4px 0;
    cursor: default;
  }
  .est-toggle-row { cursor: pointer; }

  /* Toggle switch */
  .est-toggle {
    position: relative;
    width: 46px;
    height: 26px;
    display: inline-block;
    flex-shrink: 0;
  }
  .est-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .est-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--line);
    border-radius: 999px;
    transition: background 0.2s ease;
    cursor: pointer;
  }
  .est-toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
  }
  .est-toggle input:checked + .est-toggle-slider {
    background: var(--est-accent);
  }
  .est-toggle input:checked + .est-toggle-slider::before {
    transform: translateX(20px);
  }

  /* Minimum-visit note (appears inside the results card when triggered) */
  .est-min-note {
    margin-top: 14px;
    padding: 10px 12px;
    background: rgba(255, 210, 63, 0.12);
    border-left: 3px solid var(--yellow);
    border-radius: 8px;
    color: var(--yellow);
    font-size: 12px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .est-extras { padding: 14px 16px; }
  }

  /* ===== Sensory slogan (hero, beneath the four sense chips) ===== */
  .senses-slogan {
    margin-top: 18px;
    margin-bottom: 26px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .slogan-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    margin: 0 2px;
  }
  .slogan-every {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1.5em;
    line-height: 1;
    color: var(--navy);
    transform: translateY(2px);
  }
  .slogan-inch {
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--red), var(--orange) 25%, var(--green) 50%, var(--blue) 75%, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
  }
  @media (max-width: 560px) {
    .senses-slogan { font-size: 1.05rem; margin-top: 14px; margin-bottom: 22px; }
  }

  /* ===== Specialist add-ons note (below residential calculator) ===== */
  .specialist-addons {
    max-width: 1100px;
    margin: 32px auto 0;
    background: linear-gradient(135deg, rgba(244, 160, 32, 0.06), rgba(46, 184, 114, 0.06));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .specialist-addons-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .specialist-addons-body strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .specialist-addons-body p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }
  .specialist-addons-body a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
  }
  .specialist-addons-body a:hover { color: var(--navy); }

  @media (max-width: 560px) {
    .specialist-addons {
      flex-direction: column;
      gap: 12px;
      padding: 20px;
    }
  }
