﻿/* ============================================================
   MAIN PAGE - index.html
   Custom component styles (CSS vars, layout, sections)
   ============================================================ */

:root {
        --color-forest: #016339;
        --color-forest-deep: #01492a;
        --color-mint: #28c47a;
        --color-mint-light: #7dffc7;
        --color-mint-bg: #a8f5c8;
        --color-gold: #c8a45e;
        --color-gold-light: #dfc88a;
        --color-charcoal: #1a1a1a;
        --color-text: #2c2c2c;
        --color-text-light: #5a5a5a;
        --color-white: #ffffff;
        --color-border: #e2ddd5;
        --font-display: "Space Grotesk", sans-serif;
        --font-body: "Outfit", sans-serif;
        --font-serif: "DM Serif Display", Georgia, serif;
        --radius-sm: 8px;
        --radius-md: 14px;
        --radius-lg: 22px;
        --radius-xl: 30px;
        --shadow-card: 0 8px 40px rgba(1, 99, 57, 0.1);
        --shadow-elevated: 0 20px 60px rgba(1, 99, 57, 0.14);
      }
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--font-body);
        color: var(--color-text);
        background: var(--color-white);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }
      a {
        color: inherit;
      }

      /* HEADER */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 12px 48px;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transition: box-shadow 0.3s;
      }
      .header.scrolled {
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
      }
      .logo-area {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
      }
      .logo-icon {
        width: 66px;
        height: 66px;
        background: var(--color-forest);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-family: var(--font-display);
        font-size: 36px;
        font-weight: 700;
        letter-spacing: -1px;
      }
      .logo-badge {
        width: 78px;
        height: 78px;
        flex-shrink: 0;
      }
      .logo-text {
        font-family: var(--font-display);
        font-size: 39px;
        font-weight: 700;
        color: var(--color-forest);
        letter-spacing: -0.5px;
      }
      .logo-text .dot {
        color: var(--color-mint);
      }
      .logo-tagline {
        font-family: var(--font-serif);
        font-size: 14px;
        font-style: italic;
        color: var(--color-text-light);
      }
      .header-nav {
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .header-link {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 500;
        color: var(--color-text);
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 100px;
        transition: all 0.25s;
      }
      .header-link:hover {
        color: var(--color-forest);
        background: rgba(1, 99, 57, 0.06);
      }
      .header-cta {
        background: var(--color-forest);
        color: white !important;
        padding: 10px 22px !important;
        font-weight: 600;
      }
      .header-cta:hover {
        background: var(--color-forest-deep);
        color: white !important;
      }

      /* HERO */
      .hero {
        padding: 130px 48px 60px;
        background: var(--color-white);
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -300px;
        width: 900px;
        height: 900px;
        background: radial-gradient(
          circle,
          rgba(125, 255, 199, 0.12) 0%,
          transparent 65%
        );
        border-radius: 50%;
        pointer-events: none;
      }
      .hero::after {
        content: "";
        position: absolute;
        bottom: -150px;
        left: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(200, 164, 94, 0.08) 0%,
          transparent 65%
        );
        border-radius: 50%;
        pointer-events: none;
      }
      .hero-inner {
        max-width: 1320px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 440px;
        gap: 72px;
        align-items: center;
        position: relative;
        z-index: 1;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--color-forest);
        color: var(--color-mint-light);
        padding: 8px 18px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 28px;
      }
      .hero-eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--color-mint-light);
      }
      .hero-title {
        font-family: var(--font-display);
        font-size: clamp(40px, 4.9vw, 65px);
        font-weight: 700;
        color: var(--color-charcoal);
        line-height: 1.05;
        margin-bottom: 24px;
        letter-spacing: -2px;
      }
      .hero-title .accent {
        color: var(--color-mint);
      }
      .hero-subtitle {
        font-size: 17px;
        color: var(--color-text-light);
        line-height: 1.6;
        max-width: 540px;
        margin-bottom: 32px;
        font-weight: 400;
      }
      .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 560px;
      }
      .stat-card {
        background: #fafafa;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        padding: 22px 20px;
        position: relative;
        overflow: hidden;
      }
      .stat-card::after {
        content: "";
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 12px;
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--color-forest),
          var(--color-mint)
        );
        border-radius: 2px;
      }
      .stat-num {
        font-family: var(--font-display);
        font-size: 34px;
        font-weight: 700;
        color: var(--color-charcoal);
        letter-spacing: -1px;
      }
      .stat-num sup {
        font-size: 15px;
        font-weight: 600;
        color: var(--color-text-light);
        margin-left: 2px;
        vertical-align: super;
      }
      .stat-num .star {
        color: var(--color-gold);
        font-size: 20px;
        margin-left: 4px;
      }
      .stat-label {
        font-size: 12px;
        color: var(--color-text-light);
        margin-top: 2px;
        font-weight: 500;
      }

      /* FORM CARD */
      .form-card {
        background: var(--color-white);
        border-radius: var(--radius-xl);
        padding: 36px;
        box-shadow: var(--shadow-elevated);
        border: 1px solid rgba(0, 0, 0, 0.06);
        position: relative;
      }
      .form-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--color-forest),
          var(--color-mint),
          var(--color-gold)
        );
        border-radius: 0 0 4px 4px;
      }
      .form-card-title {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 700;
        color: var(--color-forest);
        margin-bottom: 6px;
      }
      .form-card > p {
        font-size: 13px;
        color: var(--color-text-light);
        margin-bottom: 22px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .form-group {
        margin-bottom: 14px;
      }
      .form-group label {
        display: block;
        font-size: 11px;
        font-weight: 700;
        color: var(--color-text);
        margin-bottom: 6px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1.5px solid #e5e5e5;
        border-radius: var(--radius-sm);
        font-size: 14px;
        background: #f9f9f9;
        font-family: inherit;
        transition: all 0.2s;
      }
      .form-group textarea {
        resize: vertical;
        min-height: 80px;
      }
      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--color-mint);
        background: white;
      }

      /* FILE UPLOAD */
      .file-upload {
        position: relative;
      }
      .file-upload input[type="file"] {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
      }
      .file-upload-drop {
        border: 1.5px dashed #c8c8c8;
        background: #f9f9f9;
        border-radius: var(--radius-sm);
        padding: 18px 16px;
        text-align: center;
        transition: all 0.2s;
        cursor: pointer;
      }
      .file-upload:hover .file-upload-drop,
      .file-upload.dragover .file-upload-drop {
        border-color: var(--color-mint);
        background: #f0fdf4;
      }
      .file-upload-icon {
        font-size: 24px;
        margin-bottom: 6px;
        display: block;
      }
      .file-upload-text {
        font-size: 13px;
        color: var(--color-text);
        font-weight: 600;
      }
      .file-upload-hint {
        font-size: 11.5px;
        color: var(--color-text-light);
        margin-top: 4px;
      }
      .file-previews {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
      }
      .file-preview {
        position: relative;
        width: 64px;
        height: 64px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        background: #f0f0f0;
        border: 1px solid var(--color-border);
      }
      .file-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .file-preview-remove {
        position: absolute;
        top: 2px;
        right: 2px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.65);
        color: white;
        border: none;
        font-size: 11px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
      }
      .file-preview-remove:hover {
        background: rgba(0, 0, 0, 0.85);
      }
      .btn {
        width: 100%;
        padding: 15px;
        background: var(--color-forest);
        color: white;
        border: none;
        border-radius: var(--radius-sm);
        font-weight: 600;
        cursor: pointer;
        font-size: 15px;
        font-family: inherit;
        transition: all 0.2s;
      }
      .btn:hover {
        background: var(--color-forest-deep);
        transform: translateY(-1px);
      }
      .btn:disabled {
        opacity: 0.75;
        cursor: wait;
        transform: none;
      }
      .eco-pill-wrap {
        text-align: center;
        margin-top: 18px;
      }
      .eco-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, #e6fff2, #d0fce5);
        color: var(--color-forest);
        padding: 6px 14px;
        border-radius: 100px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        border: 1.5px solid var(--color-mint);
      }
      .eco-pill::before {
        content: "🌿";
        font-size: 12px;
      }
      .recaptcha-wrap {
        margin: 16px 0 10px;
      }
      .form-status {
        display: none;
        margin-top: 12px;
        padding: 11px 12px;
        border-radius: var(--radius-sm);
        font-size: 13px;
        font-weight: 500;
      }
      .form-status.is-visible {
        display: block;
      }
      .form-status.is-success {
        background: #e8f9ef;
        color: var(--color-forest-deep);
        border: 1px solid #bfe8cf;
      }
      .form-status.is-error {
        background: #fff1f1;
        color: #8f2727;
        border: 1px solid #f2c3c3;
      }

      /* SECTIONS */
      .section-wrap {
        padding: 72px 48px;
      }
      .section-inner {
        max-width: 1320px;
        margin: 0 auto;
      }
      .section-eyebrow {
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
        color: var(--color-forest);
      }
      .section-title {
        font-family: var(--font-display);
        font-size: clamp(30px, 3.5vw, 44px);
        font-weight: 700;
        line-height: 1.08;
        margin-bottom: 14px;
        letter-spacing: -1.5px;
        color: var(--color-charcoal);
      }
      .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
        max-width: 600px;
        color: var(--color-text-light);
        font-weight: 400;
      }

      /* SERVICES */
      .services {
        background: var(--color-forest);
        color: white;
      }
      .services .section-eyebrow {
        color: var(--color-mint);
      }
      .services .section-title {
        color: white;
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        margin-top: 28px;
      }
      .service-card {
        background: var(--color-white);
        border-radius: var(--radius-md);
        padding: 18px 16px;
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        position: relative;
        overflow: hidden;
        scroll-margin-top: 130px;
      }
      .service-card:target,
      .service-card.service-card-flash {
        animation: serviceCardHighlight 1.8s ease-out;
      }
      @keyframes serviceCardHighlight {
        0% {
          box-shadow: 0 0 0 0 rgba(40, 196, 122, 0.6);
          transform: translateY(0);
        }
        15% {
          box-shadow: 0 0 0 8px rgba(40, 196, 122, 0.4);
          transform: translateY(-4px);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(40, 196, 122, 0);
          transform: translateY(0);
        }
      }
      .service-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-card);
      }
      .service-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--color-forest),
          var(--color-mint)
        );
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .service-card:hover::after {
        transform: scaleX(1);
      }
      .service-icon {
        width: 32px;
        height: 32px;
        color: var(--color-forest);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
      }
      .service-icon svg {
        width: 26px;
        height: 26px;
      }
      .service-card-title {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 700;
        color: var(--color-charcoal);
        margin-bottom: 6px;
        letter-spacing: -0.2px;
        line-height: 1.25;
      }
      .service-card p {
        font-size: 12.5px;
        color: var(--color-text-light);
        line-height: 1.5;
      }

      /* WHY DIFFERENT */
      .why {
        background: var(--color-forest);
        color: white;
      }
      .why .section-eyebrow {
        color: var(--color-mint-light);
      }
      .why .section-title {
        color: white;
      }
      .why-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
      }
      .why-lead {
        font-size: 15px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.82);
        margin: 20px 0 28px;
        max-width: 520px;
      }
      .why-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .why-feature {
        display: flex;
        gap: 18px;
        align-items: flex-start;
      }
      .why-feature-icon {
        width: 40px;
        height: 40px;
        color: var(--color-mint);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .why-feature-icon svg {
        width: 28px;
        height: 28px;
      }
      .why-feature-title {
        font-family: var(--font-display);
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 6px;
        color: white;
      }
      .why-feature p {
        font-size: 14.5px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.75);
      }
      .why-stats-card {
        background: white;
        border-radius: var(--radius-xl);
        padding: 22px 24px;
        color: var(--color-text);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }
      .why-stat {
        padding: 10px 6px;
        border: none;
        text-align: center;
        border-right: 1px solid #eee;
      }
      .why-stat:last-child {
        border-right: none;
      }
      .why-stat-num {
        font-family: var(--font-display);
        font-size: 34px;
        font-weight: 700;
        color: var(--color-forest);
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 8px;
      }
      .why-stat-label {
        font-size: 12px;
        color: var(--color-gold);
        font-weight: 500;
        line-height: 1.35;
      }

      /* REALTOR SECTION */
      .realtor {
        background: linear-gradient(135deg, #f4f9f4 0%, #eaf5ef 100%);
        position: relative;
        overflow: hidden;
      }
      .realtor::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(40, 196, 122, 0.12) 0%,
          transparent 70%
        );
        border-radius: 50%;
        pointer-events: none;
      }
      .realtor-inner {
        position: relative;
        z-index: 1;
      }
      .realtor-header {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
        align-items: end;
        margin-bottom: 36px;
      }
      .realtor-header .section-subtitle {
        margin-top: 16px;
      }
      .realtor-callout {
        background: white;
        border-radius: var(--radius-lg);
        padding: 28px 32px;
        box-shadow: var(--shadow-card);
        border-left: 4px solid var(--color-gold);
      }
      .realtor-callout-label {
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-gold);
        margin-bottom: 8px;
      }
      .realtor-callout-text {
        font-size: 16px;
        line-height: 1.55;
        color: var(--color-text);
        font-style: italic;
        margin-bottom: 12px;
      }
      .realtor-callout-cite {
        font-size: 13px;
        color: var(--color-text-light);
      }
      .realtor-callout-cite strong {
        color: var(--color-charcoal);
        font-weight: 600;
      }

      .realtor-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 36px;
      }
      .realtor-card {
        background: white;
        border-radius: var(--radius-md);
        padding: 22px 20px;
        border: 1px solid var(--color-border);
        transition: all 0.3s;
        position: relative;
      }
      .realtor-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-card);
        border-color: var(--color-mint);
      }
      .realtor-card-icon {
        width: 44px;
        height: 44px;
        background: var(--color-forest);
        color: var(--color-mint-light);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 18px;
        font-family: var(--font-display);
        font-weight: 700;
      }
      .realtor-card .realtor-card-title {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 700;
        color: var(--color-charcoal);
        margin-bottom: 6px;
        letter-spacing: -0.2px;
        line-height: 1.25;
      }
      .realtor-card p {
        font-size: 14px;
        line-height: 1.55;
        color: var(--color-text-light);
      }

      .realtor-footer {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
        background: var(--color-forest);
        border-radius: var(--radius-xl);
        padding: 36px 40px;
        color: white;
        align-items: center;
      }
      .realtor-footer-title {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
        line-height: 1.15;
      }
      .realtor-footer p {
        font-size: 15px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 24px;
      }
      .realtor-footer-ctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .realtor-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--color-mint);
        color: var(--color-forest-deep);
        text-decoration: none;
        font-weight: 700;
        padding: 13px 24px;
        border-radius: 100px;
        transition: all 0.2s;
        font-size: 14px;
      }
      .realtor-btn-primary:hover {
        background: var(--color-mint-light);
      }
      .realtor-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 12px 22px;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        border-radius: 100px;
        transition: all 0.2s;
        font-size: 14px;
      }
      .realtor-btn-secondary:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.08);
      }
      .realtor-perks {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .realtor-perk {
        display: flex;
        gap: 12px;
        align-items: center;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.92);
      }
      .realtor-perk-dot {
        width: 8px;
        height: 8px;
        background: var(--color-mint);
        border-radius: 50%;
        flex-shrink: 0;
      }
      .realtor-perk strong {
        color: white;
        font-weight: 600;
      }

      /* HOARDER FEATURE SECTION */
      .hoarder {
        background: var(--color-white);
        position: relative;
        overflow: hidden;
      }
      .hoarder-inner {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 56px;
        align-items: center;
      }
      .hoarder-visual {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        aspect-ratio: 4/3;
        background: linear-gradient(135deg, #4a4035 0%, #2c2520 100%);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hoarder-visual svg {
        width: 100%;
        height: 100%;
      }
      .hoarder-visual-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(8px);
        color: white;
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
      }
      .hoarder-lead {
        font-size: 16px;
        line-height: 1.6;
        color: var(--color-text-light);
        margin: 16px 0 24px;
      }
      .hoarder-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 28px;
      }
      .hoarder-list li {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        font-size: 15px;
        line-height: 1.5;
        color: var(--color-text);
      }
      .hoarder-check {
        width: 26px;
        height: 26px;
        background: var(--color-forest);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        flex-shrink: 0;
      }
      .hoarder-check::before {
        content: "✓";
      }
      .hoarder-list li strong {
        color: var(--color-charcoal);
        display: block;
        margin-bottom: 2px;
        font-weight: 600;
      }
      .hoarder-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--color-forest);
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 14px 28px;
        border-radius: 100px;
        transition: all 0.2s;
      }
      .hoarder-cta:hover {
        background: var(--color-forest-deep);
        transform: translateY(-1px);
      }
      .hoarder-note {
        display: flex;
        gap: 14px;
        padding: 18px 20px;
        background: #fef8ec;
        border-left: 3px solid var(--color-gold);
        border-radius: var(--radius-sm);
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.55;
        color: var(--color-text);
      }
      .hoarder-note strong {
        color: var(--color-forest);
      }

      /* TESTIMONIALS */
      .testimonials {
        background: var(--color-white);
        padding-top: 48px;
        padding-bottom: 48px;
      }
      .testimonials .section-inner {
        text-align: center;
      }
      /* Testimonials — auto-scrolling marquee */
      .testimonials-viewport {
        max-width: 100%;
        margin: 0 -48px;
        overflow: hidden;
        position: relative;
        -webkit-mask-image: linear-gradient(
          to right,
          transparent,
          black 6%,
          black 94%,
          transparent
        );
        mask-image: linear-gradient(
          to right,
          transparent,
          black 6%,
          black 94%,
          transparent
        );
      }
      .testimonials-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: testimonialScroll 90s linear infinite;
      }
      .testimonials-viewport:hover .testimonials-track,
      .testimonials-track:focus-within {
        animation-play-state: paused;
      }
      @keyframes testimonialScroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .testimonial-card {
        background: #fafafa;
        border-radius: var(--radius-lg);
        padding: 26px 24px;
        border: 1px solid var(--color-border);
        flex: 0 0 360px;
        text-align: left;
      }
      @media (prefers-reduced-motion: reduce) {
        .testimonials-track {
          animation: none;
          transform: translateX(0);
        }
        .testimonials-viewport {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          scroll-snap-type: x mandatory;
        }
        .testimonial-card {
          scroll-snap-align: start;
        }
      }
      .testimonial-quote-mark {
        font-family: var(--font-serif);
        font-size: 32px;
        color: var(--color-mint);
        line-height: 1;
        margin-bottom: 8px;
      }
      .testimonial-stars {
        color: var(--color-gold);
        font-size: 16px;
        margin-bottom: 16px;
        letter-spacing: 2px;
      }
      .testimonial-text {
        font-size: 15px;
        line-height: 1.65;
        color: var(--color-text);
        margin-bottom: 24px;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .author-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--color-forest);
        color: var(--color-mint-light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.5px;
      }
      .author-name {
        font-weight: 600;
        font-size: 14px;
        color: var(--color-charcoal);
      }
      .author-role {
        font-size: 12.5px;
        color: var(--color-text-light);
        margin-top: 2px;
      }

      /* HOW IT WORKS */
      .how {
        background: var(--color-forest);
        color: white;
        text-align: center;
        padding-top: 56px;
        padding-bottom: 56px;
      }
      .how .section-eyebrow {
        color: var(--color-mint);
        margin-bottom: 10px;
      }
      .how .section-title {
        color: white;
        margin-bottom: 28px;
      }
      .how-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 0;
        text-align: left;
      }
      .how-step {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 12px;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 14px 16px;
        border-radius: var(--radius-md);
      }
      .step-number {
        width: 36px;
        height: 36px;
        background: var(--color-mint);
        color: var(--color-forest-deep);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 700;
        margin: 0;
        border: 3px solid var(--color-forest);
        flex-shrink: 0;
      }
      .how-step-title {
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 3px;
        color: white;
        letter-spacing: -0.2px;
      }
      .how-step p {
        font-size: 13px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.78);
        margin: 0;
        max-width: none;
      }

      /* CONTACT */
      .contact {
        background: var(--color-white);
      }
      .contact-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
      }
      .contact-info {
        padding-top: 20px;
      }
      .contact-details {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .contact-item {
        display: flex;
        align-items: center;
        gap: 18px;
      }
      .contact-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        background: #f9f9f9;
        border: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
      }
      .contact-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--color-text-light);
        margin-bottom: 2px;
      }
      .contact-value {
        font-size: 15px;
        font-weight: 600;
        color: var(--color-charcoal);
      }

      /* FOOTER */
      .footer {
        background: #141414;
        color: rgba(255, 255, 255, 0.7);
        padding: 80px 48px 32px;
      }
      .footer-inner {
        max-width: 1320px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 56px;
        padding-bottom: 48px;
      }
      .footer-brand .logo-icon {
        margin-bottom: 20px;
      }
      .footer-brand p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 280px;
      }
      .footer-col-title {
        font-family: var(--font-display);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: white;
        margin-bottom: 20px;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-col a {
        text-decoration: none;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        transition: color 0.2s;
        cursor: pointer;
      }
      .footer-col a:hover {
        color: var(--color-mint);
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
      }
      .social {
        display: flex;
        gap: 10px;
      }
      .social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.2s;
      }
      .social a:hover {
        border-color: var(--color-mint);
        color: var(--color-mint);
      }

      /* RESPONSIVE */
      /* Mobile hamburger menu */
      .menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 40px;
        height: 40px;
        padding: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
      }
      .menu-toggle span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--color-forest);
        border-radius: 2px;
        transition: all 0.25s;
      }
      .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .menu-toggle.open span:nth-child(2) {
        opacity: 0;
      }
      .menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      @media (max-width: 1024px) {
        .hero-inner,
        .why-inner,
        .contact-inner {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .hoarder-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .realtor-header {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .realtor-grid {
          grid-template-columns: 1fr;
        }
        .realtor-footer {
          grid-template-columns: 1fr;
          gap: 28px;
          padding: 36px;
        }
        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .how-steps {
          gap: 10px;
        }
        .testimonials-viewport {
          margin-left: -24px;
          margin-right: -24px;
        }
        .testimonial-card {
          flex: 0 0 280px;
          padding: 22px 20px;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px;
        }
        .header {
          padding: 12px 24px;
        }
        .hero,
        .section-wrap,
        .footer {
          padding-left: 24px;
          padding-right: 24px;
        }
        .logo-tagline {
          display: none;
        }
      }

      /* MOBILE COLLAPSIBLE SECTIONS (realtor + hoarder) — desktop shows everything open, no toggle */
      .mobile-collapse {
        all: unset;
        display: contents;
      }
      .mobile-collapse-summary {
        display: none;
      }
      .mobile-collapse-body {
        display: contents;
      }
      .mobile-collapse:not([open]) > .mobile-collapse-body {
        display: contents;
      }

      @media (max-width: 820px) {
        .header {
          height: 72px;
          padding: 10px 0 10px 14px;
          gap: 10px;
        }
        .service-card {
          scroll-margin-top: 90px;
        }
        .logo-icon {
          width: 42px;
          height: 42px;
          font-size: 22px;
          border-radius: 9px;
        }
        .logo-text {
          font-size: 24px;
        }
        .logo {
          gap: 10px;
        }
        .logo-area {
          flex-shrink: 0;
        }

        .menu-toggle {
          display: none;
        }
        .header-nav {
          display: flex !important;
          flex-direction: row;
          flex-wrap: nowrap;
          overflow-x: auto;
          overflow-y: hidden;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          padding: 0 14px 0 8px;
          gap: 6px;
          min-width: 0;
          mask-image: linear-gradient(
            to right,
            black calc(100% - 20px),
            transparent
          );
          -webkit-mask-image: linear-gradient(
            to right,
            black calc(100% - 20px),
            transparent
          );
        }
        .header-nav::-webkit-scrollbar {
          display: none;
        }
        .header-link {
          flex-shrink: 0;
          white-space: nowrap;
          font-size: 14px;
          padding: 8px 14px;
        }
        .header-cta {
          padding: 10px 18px !important;
        }

        .hero {
          padding-top: 100px;
        }

        /* Mobile: turn realtor + hoarder sections into tappable dropdowns */
        .mobile-collapse {
          display: block;
          background: rgba(1, 99, 57, 0.04);
          border: 1px solid rgba(1, 99, 57, 0.12);
          border-radius: var(--radius-md);
          padding: 4px 16px;
          margin-top: 8px;
        }
        .mobile-collapse[open] {
          background: transparent;
          border-color: transparent;
          padding: 0;
        }
        .mobile-collapse-summary {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
          list-style: none;
          cursor: pointer;
          padding: 14px 4px;
          font-family: var(--font-display);
          font-size: 15px;
          font-weight: 700;
          color: var(--color-forest);
          letter-spacing: 0.2px;
        }
        .mobile-collapse-summary::-webkit-details-marker {
          display: none;
        }
        .mobile-collapse-summary::after {
          content: "";
          width: 10px;
          height: 10px;
          border-right: 2px solid var(--color-forest);
          border-bottom: 2px solid var(--color-forest);
          transform: rotate(45deg);
          transition: transform 0.25s;
          margin-right: 6px;
          flex-shrink: 0;
        }
        .mobile-collapse[open] .mobile-collapse-summary {
          padding-bottom: 8px;
        }
        .mobile-collapse[open] .mobile-collapse-summary::after {
          transform: rotate(-135deg);
        }
        .mobile-collapse-body {
          display: block;
          padding-top: 4px;
        }
      }

      @media (max-width: 640px) {
        .footer-top {
          grid-template-columns: 1fr;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 16px;
        }
        /* Keep hero stats in a single row of 3 compact boxes */
        .hero-stats {
          grid-template-columns: repeat(3, 1fr);
          gap: 8px;
        }
        .stat-card {
          padding: 14px 10px;
        }
        .stat-num {
          font-size: 22px;
          letter-spacing: -0.5px;
        }
        .stat-num sup {
          font-size: 11px;
        }
        .stat-num .star {
          font-size: 14px;
          margin-left: 2px;
        }
        .stat-label {
          font-size: 10.5px;
          line-height: 1.3;
        }
        .stat-card::after {
          left: 10px;
          right: 10px;
          bottom: 8px;
          height: 2px;
        }

        /* Keep 3 how-it-works steps in one row on phones — stack number on top */
        .how-steps {
          gap: 6px;
        }
        .how-step {
          flex-direction: column;
          padding: 10px 8px;
          gap: 6px;
          text-align: center;
        }
        .how-step > div:last-child {
          width: 100%;
        }
        .step-number {
          width: 28px;
          height: 28px;
          font-size: 13px;
          border-width: 2px;
          margin: 0 auto;
        }
        .how-step h4 {
          font-size: 12px;
          margin-bottom: 2px;
          line-height: 1.2;
        }
        .how-step p {
          font-size: 10.5px;
          line-height: 1.35;
        }
        .recaptcha-wrap {
          transform: scale(0.92);
          transform-origin: left top;
        }
      }

      /* ======================================================
     NEW COMPONENTS
     ====================================================== */

      /* Desktop phone CTA in header */
      .header-phone {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 700;
        color: var(--color-forest);
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 100px;
        background: rgba(1, 99, 57, 0.06);
        transition: all 0.2s;
        letter-spacing: -0.3px;
        white-space: nowrap;
      }
      .header-phone:hover {
        background: rgba(1, 99, 57, 0.12);
      }
      .header-phone svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
      }

      /* Icon utility */
      .icon {
        width: 1em;
        height: 1em;
        display: inline-block;
        vertical-align: -0.125em;
        fill: currentColor;
        flex-shrink: 0;
      }

      /* Trust badges above hero form / below hero CTA */
      .hero-trust-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
      }
      .hero-trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: white;
        border: 1.5px solid var(--color-mint);
        color: var(--color-forest-deep);
        padding: 8px 14px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 4px 14px rgba(1, 99, 57, 0.08);
      }
      .hero-trust-badge svg {
        width: 16px;
        height: 16px;
        color: var(--color-mint);
      }
      .hero-trust-badge strong {
        font-weight: 800;
      }

      /* Price starting-at badge on hero form */
      .price-badge {
        position: absolute;
        top: -14px;
        right: 24px;
        background: var(--color-gold);
        color: white;
        padding: 8px 16px;
        border-radius: 100px;
        font-family: var(--font-display);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 6px 18px rgba(200, 164, 94, 0.35);
        z-index: 2;
      }

      /* Sticky mobile call/quote bar */
      .mobile-sticky-bar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: white;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
        padding: 10px 12px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
        gap: 8px;
      }
      .mobile-sticky-bar a {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px 10px;
        border-radius: 100px;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.2s;
      }
      .mobile-sticky-call {
        background: var(--color-forest);
        color: white;
      }
      .mobile-sticky-call:active {
        background: var(--color-forest-deep);
      }
      .mobile-sticky-quote {
        background: var(--color-mint);
        color: var(--color-forest-deep);
      }
      .mobile-sticky-quote:active {
        background: var(--color-mint-light);
      }
      .mobile-sticky-bar svg {
        width: 18px;
        height: 18px;
      }

      /* Mobile menu drawer */
      .mobile-menu-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.25s;
      }
      .mobile-menu-backdrop.open {
        display: block;
        opacity: 1;
      }
      .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: white;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        padding: 24px 24px 24px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
      }
      .mobile-menu.open {
        transform: translateX(0);
      }
      .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 16px;
      }
      .mobile-menu-close {
        background: none;
        border: none;
        cursor: pointer;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-charcoal);
      }
      .mobile-menu-close:hover {
        background: rgba(0, 0, 0, 0.05);
      }
      .mobile-menu-close svg {
        width: 22px;
        height: 22px;
      }
      .mobile-menu a {
        padding: 14px 4px;
        font-family: var(--font-body);
        font-size: 17px;
        font-weight: 500;
        color: var(--color-text);
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .mobile-menu a:last-child {
        border-bottom: none;
      }
      .mobile-menu .mobile-menu-cta {
        margin-top: 16px;
        background: var(--color-forest);
        color: white;
        border-radius: 100px;
        justify-content: center;
        font-weight: 700;
        border: none;
        padding: 14px 24px;
      }
      .mobile-menu .mobile-menu-phone {
        margin-top: 12px;
        background: var(--color-mint);
        color: var(--color-forest-deep);
        border-radius: 100px;
        justify-content: center;
        font-weight: 700;
        border: none;
        padding: 14px 24px;
      }

      /* Scroll hint for mobile nav */
      .header-nav-hint {
        display: none;
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: linear-gradient(90deg, transparent, white 60%);
        align-items: center;
        justify-content: flex-end;
        color: var(--color-forest);
        pointer-events: none;
        animation: hintPulse 1.6s ease-in-out infinite;
      }
      @keyframes hintPulse {
        0%,
        100% {
          transform: translateY(-50%) translateX(0);
          opacity: 0.8;
        }
        50% {
          transform: translateY(-50%) translateX(4px);
          opacity: 1;
        }
      }

      /* Service area — compact expandable strip */
      .service-area {
        background: linear-gradient(
          135deg,
          var(--color-forest) 0%,
          var(--color-forest-deep) 100%
        );
        color: white;
        position: relative;
        overflow: hidden;
        padding: 0;
      }
      .service-area::before {
        content: "";
        position: absolute;
        top: -200px;
        left: -150px;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(40, 196, 122, 0.15) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .service-area-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        list-style: none;
        cursor: pointer;
        padding: 28px 24px;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        transition: background 0.2s;
        text-align: left;
      }
      .service-area-toggle:hover {
        background: rgba(255, 255, 255, 0.03);
      }
      .service-area-toggle::-webkit-details-marker {
        display: none;
      }
      .service-area-toggle-pin {
        width: 40px;
        height: 40px;
        background: var(--color-mint);
        color: var(--color-forest-deep);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .service-area-toggle-pin svg {
        width: 22px;
        height: 22px;
      }
      .service-area-toggle-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .service-area-toggle-small {
        font-family: var(--font-body);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--color-mint);
      }
      .service-area-toggle-main {
        font-family: var(--font-display);
        font-size: 19px;
        font-weight: 700;
        color: white;
        letter-spacing: -0.3px;
      }
      .service-area-toggle-chevron {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: 4px;
        transition: background 0.2s;
      }
      .service-area:not([open]) .service-area-toggle-chevron:hover,
      .service-area-toggle:hover .service-area-toggle-chevron {
        background: rgba(255, 255, 255, 0.16);
      }
      .service-area-toggle-chevron::after {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(45deg) translate(-2px, -2px);
        transition: transform 0.3s;
      }
      .service-area[open] .service-area-toggle-chevron {
        background: var(--color-mint);
      }
      .service-area[open] .service-area-toggle-chevron::after {
        transform: rotate(-135deg) translate(-2px, -2px);
        border-color: var(--color-forest-deep);
      }
      .service-area-body {
        padding: 0 24px 40px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        animation: faqFadeIn 0.3s ease-out;
      }
      .service-area-lead {
        font-size: 15px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.82);
        max-width: 640px;
        margin: 0 auto 28px;
        text-align: center;
      }
      .service-area-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
        max-width: 960px;
        margin: 0 auto 20px;
        text-align: left;
      }
      .service-area-chip {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.92);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s;
      }
      .service-area-chip:hover {
        background: rgba(40, 196, 122, 0.15);
        border-color: var(--color-mint);
      }
      .service-area-chip svg {
        width: 14px;
        height: 14px;
        color: var(--color-mint);
        flex-shrink: 0;
      }
      .service-area-note {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
      }

      /* FAQ section — always visible on desktop, collapsible on mobile */
      .faq-section {
        background: #f5f2eb;
      }
      .faq-shell {
        display: block;
      }
      .faq-shell-toggle {
        display: none;
      }
      .faq-shell-body {
        padding: 0 24px;
      }
      .faq-shell-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .faq-shell-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 32px;
      }
      @keyframes faqFadeIn {
        from {
          opacity: 0;
          transform: translateY(-6px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .faq-shell-subtitle {
        text-align: center;
        font-size: 14px;
        color: var(--color-text-light);
        max-width: 560px;
        margin: 0 auto 28px;
      }
      .faq-grid {
        max-width: 820px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .faq-item {
        background: white;
        border-radius: var(--radius-md);
        border: 1px solid var(--color-border);
        overflow: hidden;
        transition: box-shadow 0.2s;
      }
      .faq-item[open] {
        box-shadow: var(--shadow-card);
        border-color: var(--color-mint);
      }
      .faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        list-style: none;
        cursor: pointer;
        padding: 18px 22px;
        font-family: var(--font-display);
        font-size: 16px;
        font-weight: 700;
        color: var(--color-charcoal);
      }
      .faq-q::-webkit-details-marker {
        display: none;
      }
      .faq-q::after {
        content: "";
        width: 11px;
        height: 11px;
        border-right: 2.5px solid var(--color-forest);
        border-bottom: 2.5px solid var(--color-forest);
        transform: rotate(45deg);
        transition: transform 0.25s;
        flex-shrink: 0;
      }
      .faq-item[open] .faq-q::after {
        transform: rotate(-135deg);
      }
      .faq-a {
        padding: 0 22px 20px;
        font-size: 14.5px;
        line-height: 1.65;
        color: var(--color-text-light);
      }
      .faq-a strong {
        color: var(--color-charcoal);
        font-weight: 600;
      }

      /* Form validation feedback */
      .form-group input:invalid:not(:placeholder-shown),
      .form-group select:invalid:not(:placeholder-shown) {
        border-color: #d9534f;
        background: #fdf5f5;
      }
      .form-group input:valid:not(:placeholder-shown):not([type="file"]) {
        border-color: var(--color-mint);
      }
      .form-error {
        display: none;
        font-size: 12px;
        color: #c9302c;
        margin-top: 4px;
        font-weight: 500;
      }
      .form-group.has-error .form-error {
        display: block;
      }
      .form-group.has-error input,
      .form-group.has-error select,
      .form-group.has-error textarea {
        border-color: #d9534f;
        background: #fdf5f5;
      }
      .required-star {
        color: #d9534f;
        margin-left: 2px;
      }

      /* Form photo upload confirmation */
      .file-upload-confirm {
        display: none;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        padding: 10px 14px;
        background: rgba(40, 196, 122, 0.1);
        border: 1px solid var(--color-mint);
        border-radius: var(--radius-sm);
        color: var(--color-forest-deep);
        font-size: 13px;
        font-weight: 600;
      }
      .file-upload-confirm.show {
        display: flex;
      }
      .file-upload-confirm svg {
        width: 16px;
        height: 16px;
        color: var(--color-forest);
        flex-shrink: 0;
      }

      /* Form success state */
      .form-success {
        display: none;
        padding: 24px;
        background: linear-gradient(135deg, #e6fff2, #d0fce5);
        border: 1.5px solid var(--color-mint);
        border-radius: var(--radius-md);
        text-align: center;
        color: var(--color-forest-deep);
      }
      .form-success.show {
        display: block;
      }
      .form-success svg {
        width: 48px;
        height: 48px;
        color: var(--color-forest);
        margin-bottom: 12px;
      }
      .form-success-title {
        font-family: var(--font-display);
        font-size: 20px;
        margin-bottom: 6px;
        color: var(--color-forest);
      }
      .form-success p {
        font-size: 14px;
        color: var(--color-text);
      }

      /* Desktop: hide mobile sticky bar, hide mobile menu trigger */
      .menu-toggle-new {
        display: none;
      }

      @media (max-width: 1024px) {
        .header-phone {
          display: none;
        }
      }

      @media (max-width: 820px) {
        /* Replace scrolling nav with hamburger drawer */
        .header-nav {
          display: none !important;
        }
        .header-nav-hint {
          display: none;
        }
        .menu-toggle-new {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 44px;
          height: 44px;
          background: none;
          border: none;
          cursor: pointer;
          color: var(--color-forest);
          padding: 0;
          margin-right: 6px;
        }
        .menu-toggle-new svg {
          width: 26px;
          height: 26px;
        }

        .mobile-sticky-bar {
          display: flex;
        }

        /* Push body content up so sticky bar doesn't cover the footer end */
        body {
          padding-bottom: 76px;
        }

        .price-badge {
          top: -12px;
          right: 16px;
          font-size: 12px;
          padding: 7px 14px;
        }
        /* Keep all 3 trust badges in one row on mobile, show just key phrase */
        .hero-trust-badges {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 6px;
          flex-wrap: nowrap;
        }
        .hero-trust-badge {
          font-size: 11px;
          padding: 7px 8px;
          gap: 5px;
          justify-content: center;
          text-align: center;
        }
        .hero-trust-badge svg {
          width: 14px;
          height: 14px;
        }
        .badge-prefix {
          display: none;
        }

        .service-area-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .service-area-toggle {
          padding: 22px 16px;
          gap: 12px;
        }
        .service-area-toggle-main {
          font-size: 16px;
        }
        .service-area-toggle-small {
          font-size: 10px;
          letter-spacing: 1.5px;
        }
        .service-area-toggle-pin {
          width: 36px;
          height: 36px;
        }
        .service-area-toggle-pin svg {
          width: 18px;
          height: 18px;
        }
        .service-area-body {
          padding: 0 16px 32px;
        }

        .faq-shell-toggle {
          padding: 8px 22px 8px 10px;
          font-size: 16px;
          gap: 10px;
        }
        .faq-shell-toggle-icon {
          width: 52px;
          min-width: 52px;
          max-width: 52px;
          height: 52px;
          min-height: 52px;
          max-height: 52px;
          font-size: 26px;
          box-shadow:
            0 6px 18px rgba(34, 197, 94, 0.35),
            0 0 0 4px rgba(34, 197, 94, 0.15);
        }
        .faq-shell-toggle-small {
          font-size: 10px;
          letter-spacing: 1.5px;
        }
        .faq-shell-body {
          padding: 0 16px 36px;
        }
        .faq-q {
          font-size: 14.5px;
          padding: 16px 16px;
        }
        .faq-a {
          padding: 0 16px 16px;
          font-size: 13.5px;
        }
      }

      @media (max-width: 480px) {
        .service-area-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 820px) {
        .faq-section {
          padding-top: 28px;
          padding-bottom: 28px;
        }
        .faq-shell {
          max-width: 1200px;
          margin: 0 auto;
        }
        .faq-shell-toggle {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 14px;
          list-style: none;
          cursor: pointer;
          width: fit-content;
          max-width: calc(100% - 32px);
          margin: 0 auto;
          padding: 10px 28px 10px 14px;
          font-family: var(--font-display);
          font-size: 19px;
          font-weight: 700;
          color: var(--color-forest-deep);
          letter-spacing: -0.3px;
          background: white;
          border: 1px solid rgba(1, 99, 57, 0.14);
          border-radius: 100px;
          box-shadow: 0 10px 30px rgba(1, 99, 57, 0.08);
          transition: all 0.25s;
          text-align: left;
        }
        .faq-shell[open] .faq-shell-toggle {
          margin: 0 auto 24px;
        }
        .faq-shell-toggle::-webkit-details-marker {
          display: none;
        }
        .faq-shell-toggle-icon {
          width: 64px;
          min-width: 64px;
          max-width: 64px;
          height: 64px;
          min-height: 64px;
          max-height: 64px;
          border-radius: 50%;
          background: #22c55e;
          color: var(--color-forest-deep);
          display: flex;
          align-items: center;
          justify-content: center;
          font-family: var(--font-display);
          font-weight: 700;
          font-size: 34px;
          line-height: 1;
          flex-shrink: 0;
          box-shadow:
            0 8px 24px rgba(34, 197, 94, 0.35),
            0 0 0 6px rgba(34, 197, 94, 0.15);
        }
        .faq-shell-toggle-label {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          text-align: left;
          gap: 2px;
        }
        .faq-shell-toggle-small {
          font-family: var(--font-body);
          font-size: 11px;
          font-weight: 700;
          letter-spacing: 2px;
          text-transform: uppercase;
          color: var(--color-mint);
        }
        .faq-shell-toggle-main {
          color: var(--color-forest);
        }
        .faq-shell-toggle-chevron {
          width: 28px;
          height: 28px;
          border-radius: 50%;
          background: rgba(1, 99, 57, 0.08);
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          margin-left: 4px;
          transition: background 0.2s;
        }
        .faq-shell-toggle-chevron::after {
          content: "";
          width: 8px;
          height: 8px;
          border-right: 2px solid var(--color-forest);
          border-bottom: 2px solid var(--color-forest);
          transform: rotate(45deg) translate(-2px, -2px);
          transition: transform 0.3s;
        }
        .faq-shell[open] .faq-shell-toggle-chevron {
          background: var(--color-mint);
        }
        .faq-shell[open] .faq-shell-toggle-chevron::after {
          transform: rotate(-135deg) translate(-2px, -2px);
          border-color: var(--color-forest-deep);
        }
        .faq-shell-body {
          animation: faqFadeIn 0.3s ease-out;
        }
      }

/* ============================================================
   SUB-PAGES - Shared custom styles
   (probate-cleanout-marin, estate-cleanout-marin-county,
    garage-cleanout, hoarder-house-cleanout, junk-removal-marin)
   ============================================================ */

body {
        font-family: "Outfit", sans-serif;
      }
      .form-grad::before {
        content: "";
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 4px;
        background: linear-gradient(90deg, #016339, #28c47a, #c8a45e);
        border-radius: 0 0 4px 4px;
      }
      details summary::-webkit-details-marker {
        display: none;
      }
      details[open] summary .arr {
        transform: rotate(-135deg);
      }
      .arr {
        display: inline-block;
        width: 9px;
        height: 9px;
        border-right: 2.5px solid #016339;
        border-bottom: 2.5px solid #016339;
        transform: rotate(45deg);
        transition: transform 0.25s;
      }
      .fstatus {
        display: none;
      }
      .fstatus.vis {
        display: block;
      }
      .fsuccess {
        display: none;
      }
      .fsuccess.show {
        display: block;
      }
      .fg.has-err input,
      .fg.has-err select,
      .fg.has-err textarea {
        border-color: #d9534f !important;
        background: #fdf5f5;
      }
      .fg.has-err .ferr {
        display: block;
      }
      .ferr {
        display: none;
        font-size: 11px;
        color: #c9302c;
        margin-top: 3px;
        font-weight: 500;
      }

/* ============================================================
   SUB-PAGE SPECIFIC - Probate Cleanout Marin
   ============================================================ */

/* Gold underline on heading */
      .gold-underline {
        position: relative;
        display: inline-block;
      }
      .gold-underline::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        right: 0;
        height: 3px;
        background: #c8a45e;
        border-radius: 2px;
      }

/* ============================================================
   SUB-PAGE SPECIFIC - Garage Cleanout
   ============================================================ */

.num-label {
        font-variant-numeric: tabular-nums;
      }

/* ============================================================
   SUB-PAGE SPECIFIC - Hoarder House Cleanout
   ============================================================ */

.timeline-item:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 19px;
        top: 48px;
        bottom: -24px;
        width: 2px;
        background: linear-gradient(to bottom, #28c47a, #016339);
      }