/* ========== CSS VARIABLES ========== */
    :root {
      --green-dark: #4a6b2a;
      --green-mid: #5a7f30;
      --green-light: #8db45e;
      --green-pale: #e8f0d8;
      --green-wash: #f4f8ee;
      --charcoal: #1a1a1a;
      --slate: #3a3a3a;
      --warm-gray: #5a5a5a;
      --light-gray: #f5f5f2;
      --cream: #fafaf7;
      --white: #ffffff;
      --accent-gold: #c9a94e;
      --font-display: 'DM Serif Display', serif;
      --font-body: 'Outfit', sans-serif;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
      --radius: 8px;
      --radius-lg: 16px;
    }

    /* ========== RESET & BASE ========== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-size: 1rem;
      font-family: var(--font-body);
      color: var(--charcoal);
      background: var(--cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    p { line-height: 1.7; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }

    /* ========== UTILITY ========== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

    /* ========== ANNOUNCEMENT BAR ========== */
    .announcement-bar {
      background: var(--green-dark);
      color: var(--white);
      text-align: center;
      padding: 10px 24px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .announcement-bar a {
      color: var(--green-pale);
      text-decoration: underline;
      font-weight: 600;
    }
    .announcement-bar a:hover { color: var(--white); }

    /* ========== HEADER / NAV ========== */
    .header {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow-sm);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .logo-link { display: flex; align-items: center; gap: 10px; }
    .logo-img { height: 64px; width: auto; }
    .nav-links { display: flex; gap: 8px; align-items: center; }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--slate);
      padding: 8px 14px;
      border-radius: var(--radius);
      transition: all 0.25s;
    }
    .nav-links a:hover { background: var(--green-wash); color: var(--green-dark); }

    .nav-portals {
      display: flex;
      gap: 8px;
      margin-left: 12px;
    }
    .nav-portal-btn {
      padding: 8px 16px;
      border-radius: var(--radius);
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
      white-space: nowrap;
    }
    .nav-portal-btn.apply {
      background: var(--green-dark);
      color: var(--white);
      padding: 10px 20px;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(74,107,42,0.2);
    }
    .nav-portal-btn.apply:hover {
      background: var(--green-mid);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(74,107,42,0.3);
    }
    .nav-portal-btn.login {
      background: transparent;
      color: var(--warm-gray);
      font-size: 0.8rem;
      font-weight: 500;
      padding: 8px 10px;
    }
    .nav-portal-btn.login:hover {
      color: var(--green-dark);
    }
    .nav-portal-sep {
      color: rgba(0,0,0,0.15);
      font-size: 0.75rem;
      user-select: none;
    }

    .nav-cta {
      background: var(--green-dark) !important;
      color: var(--white) !important;
      font-weight: 600 !important;
      padding: 10px 20px !important;
      border-radius: var(--radius) !important;
    }
    .nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

    /* Mobile nav */
    .mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
    .mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 6px 0; transition: all 0.3s; border-radius: 2px; }
    .mobile-menu {
      display: none;
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white);
      z-index: 9999;
      flex-direction: column;
      padding: 80px 32px 32px;
      gap: 8px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 1.1rem;
      padding: 16px;
      border-radius: var(--radius);
      font-weight: 500;
      color: var(--slate);
      border-bottom: 1px solid var(--light-gray);
    }
    .mobile-menu a:hover { background: var(--green-wash); }
    .mobile-close {
      position: absolute; top: 20px; right: 24px;
      background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--charcoal);
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      background: linear-gradient(135deg, var(--charcoal) 0%, #2a3a1a 50%, var(--green-dark) 100%);
      color: var(--white);
      overflow: hidden;
      min-height: 85vh;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(ellipse, rgba(107,143,60,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(to top, var(--cream), transparent);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 100px 0 120px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(107,143,60,0.2);
      border: 1px solid rgba(107,143,60,0.35);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 24px;
    }
    .hero-badge::before {
      content: '★';
      font-size: 0.82rem;
    }
    .hero h1 {
      font-size: clamp(2.6rem, 5vw, 4rem);
      line-height: 1.08;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--green-light);
    }
    .hero-sub {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 36px;
      max-width: 640px;
      line-height: 1.7;
      font-weight: 300;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 28px;
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }
    .btn-primary {
      background: var(--green-mid);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(107,143,60,0.35);
    }
    .btn-primary:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(107,143,60,0.45);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.3);
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.08);
    }

    /* Hero right — stats card */
    .hero-card {
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 40px;
    }
    .hero-card h3 {
      font-size: 1.1rem;
      font-family: var(--font-body);
      font-weight: 600;
      color: var(--green-light);
      margin-bottom: 28px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .stat-row { display: flex; flex-direction: column; gap: 24px; }
    .stat-item {
      display: flex; align-items: center; gap: 16px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
    .stat-icon {
      width: 48px; height: 48px;
      background: rgba(107,143,60,0.2);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .stat-text .stat-number {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--white);
    }
    .stat-text .stat-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.85);
      font-weight: 400;
    }

    /* ========== QUICK LINKS BAR ========== */
    .quick-links {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      padding: 0;
      margin-top: -60px;
      position: relative;
      z-index: 10;
    }
    .quick-links-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1000px;
      margin: 0 auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .ql-item {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 28px 20px;
      text-align: center;
      gap: 8px;
      background: var(--white);
      transition: all 0.3s;
      border-right: 1px solid var(--light-gray);
    }
    .ql-item:last-child { border-right: none; }
    .ql-item:hover { background: var(--green-wash); }
    .ql-icon { font-size: 1.6rem; }
    .ql-label { font-weight: 600; font-size: 0.85rem; color: var(--slate); }
    .ql-sub { font-size: 0.82rem; color: var(--warm-gray); }

    /* ========== WHY OWNERS ========== */
    .why-owners { background: var(--white); }
    .wo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
    }
    .wo-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .wo-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px;
      background: var(--green-wash);
      border-radius: var(--radius);
      transition: all 0.3s;
    }
    .wo-item:hover {
      background: var(--white);
      box-shadow: var(--shadow-md);
      transform: translateX(4px);
    }
    .wo-check {
      width: 28px; height: 28px;
      background: var(--green-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 0.88rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .wo-item-text h4 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--charcoal);
      margin-bottom: 2px;
    }
    .wo-item-text p {
      font-size: 0.85rem;
      color: var(--warm-gray);
      line-height: 1.5;
    }
    .wo-highlight {
      background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
      border-radius: var(--radius-lg);
      padding: 40px;
      color: var(--white);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .wo-highlight h3 {
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 20px;
    }
    .wo-highlight p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .wo-highlight .btn { margin-top: 16px; }
    .wo-tagline {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--green-light);
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    @media(max-width:768px){
      .nav-portals { display: none; } .wo-grid{grid-template-columns:1fr;} }

    /* ========== TRUST STRIP ========== */
    .trust-strip { background: var(--white); padding: 0; position: relative; z-index: 9; }
    .trust-strip-inner { display:flex; align-items:center; justify-content:center; gap:48px; padding:28px 24px; max-width:1000px; margin:0 auto; flex-wrap:wrap; }
    .ts-item { display:flex; align-items:center; gap:12px; position:relative; }
    .ts-item:not(:last-child)::after { content:''; position:absolute; right:-24px; top:50%; transform:translateY(-50%); width:1px; height:32px; background:rgba(0,0,0,0.08); }
    .ts-icon { font-size:1.6rem; line-height:1; }
    .ts-text { display:flex; flex-direction:column; }
    .ts-number { font-family:var(--font-display); font-size:1.15rem; color:var(--charcoal); }
    .ts-label { font-size:0.82rem; color:var(--warm-gray); font-weight:500; }
    @media(max-width:768px){ .trust-strip-inner{gap:24px;} .ts-item:not(:last-child)::after{display:none;} }

    /* ========== SECTION SHARED ========== */
    .section { padding: 100px 0; }
    .section-label {
      text-align: center;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      width: 32px; height: 2px;
      background: currentColor;
      border-radius: 2px;
      opacity: 0.5;
    }
    .section-title {
      text-align: center;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--charcoal);
      margin-bottom: 20px;
    }
    .section-subtitle {
      text-align: center;
      margin: 0 auto;
      font-size: 1.12rem;
      color: var(--warm-gray);
      max-width: 700px;
      line-height: 1.75;
      font-weight: 300;
      margin: 0 auto;
    }

    /* ========== SERVICES ========== */
    .services { background: var(--cream); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 48px;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      border: 1px solid rgba(0,0,0,0.04);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green-mid), var(--green-light));
      opacity: 0;
      transition: opacity 0.35s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 52px; height: 52px;
      background: var(--green-wash);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
    .service-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--charcoal);
    }
    .service-card p {
      font-size: 0.92rem;
      color: var(--warm-gray);
      line-height: 1.65;
    }

    /* ========== WHY US / TRUST ========== */
    .trust { background: var(--white); }
    .trust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 48px;
    }
    .trust-features { display: flex; flex-direction: column; gap: 24px; }
    .trust-feature {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px;
      border-radius: var(--radius);
      transition: background 0.3s;
    }
    .trust-feature:hover { background: var(--green-wash); }
    .tf-icon {
      width: 44px; height: 44px;
      background: var(--green-wash);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .tf-text h4 {
      font-size: 1.05rem;
      margin-bottom: 4px;
      color: var(--charcoal);
      font-family: var(--font-body);
      font-weight: 600;
    }
    .tf-text p {
      font-size: 0.88rem;
      color: var(--warm-gray);
      line-height: 1.6;
    }
    .trust-visual {
      background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
      border-radius: var(--radius-lg);
      padding: 48px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .trust-visual::before {
      content: '';
      position: absolute;
      top: -30%; right: -30%;
      width: 60%; height: 60%;
      background: radial-gradient(ellipse, rgba(255,255,255,0.1), transparent);
      pointer-events: none;
    }
    .tv-stat {
      text-align: center;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .tv-stat:last-child { border-bottom: none; }
    .tv-stat .number {
      font-family: var(--font-display);
      font-size: 2.4rem;
      display: block;
    }
    .tv-stat .label {
      font-size: 0.85rem;
      opacity: 0.75;
      font-weight: 300;
    }

    /* ========== SECTION 8 HIGHLIGHT ========== */
    .s8-section {
      background: linear-gradient(to right, var(--charcoal), #2c3c1e);
      color: var(--white);
    }
    .s8-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .s8-grid h2 {
      color: var(--white);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      margin-bottom: 20px;
    }
    .s8-grid h2 em {
      font-style: normal;
      color: var(--green-light);
    }
    .s8-text p {
      color: rgba(255,255,255,0.85);
      margin-bottom: 16px;
      line-height: 1.7;
      font-weight: 300;
    }
    .s8-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 24px 0 32px;
    }
    .s8-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.85);
    }
    .s8-list li::before {
      content: '✓';
      width: 24px; height: 24px;
      background: rgba(107,143,60,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.82rem;
      color: var(--green-light);
      flex-shrink: 0;
    }
    .s8-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 40px;
    }
    .s8-card h3 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 1rem;
      color: var(--green-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 20px;
    }
    .s8-step {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .s8-step:last-child { border-bottom: none; }
    .s8-num {
      width: 32px; height: 32px;
      background: var(--green-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      flex-shrink: 0;
    }
    .s8-step-text h4 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 2px;
    }
    .s8-step-text p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.85);
      margin: 0;
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials { background: var(--green-wash); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--green-pale);
      position: absolute;
      top: 16px; left: 24px;
      line-height: 1;
    }
    .stars { color: var(--accent-gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
    .testimonial-card blockquote {
      font-size: 0.92rem;
      color: var(--slate);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }
    .testimonial-author {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--charcoal);
    }
    .testimonial-role {
      font-size: 0.88rem;
      color: var(--warm-gray);
    }

    /* Featured testimonials row */
    .testimonials-featured {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
      margin-bottom: 24px;
    }
    .featured-card {
      background: var(--white);
      border-left: 4px solid var(--green-mid) !important;
    }
    .featured-card blockquote { font-size: 0.95rem; }

    /* Compact review cards */
    .testimonials-compact {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    .compact-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0,0,0,0.04);
      transition: all 0.3s;
    }
    .compact-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .compact-card .stars {
      font-size: 0.82rem;
      margin-bottom: 10px;
    }
    .compact-card blockquote {
      font-size: 0.84rem;
      line-height: 1.6;
      margin-bottom: 12px;
      font-style: italic;
      color: var(--slate);
    }
    .compact-card .testimonial-author {
      font-size: 0.82rem;
    }

    /* ========== RESIDENT BENEFITS ========== */
    .res-benefits { background: var(--green-wash); }
    .rb-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .rb-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border: 1px solid rgba(0,0,0,0.04);
    }
    .rb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .rb-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
    .rb-card h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--charcoal); margin-bottom: 8px; }
    .rb-card p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.6; margin-bottom: 16px; }
    .rb-card a { font-size: 0.82rem; font-weight: 600; color: var(--green-mid); }
    .rb-card a:hover { color: var(--green-dark); }
    .rb-note { text-align: center; margin-top: 32px; font-size: 0.92rem; color: var(--slate); }
    @media(max-width:1024px){ .rb-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(max-width:768px){ .rb-grid { grid-template-columns: 1fr; } }

    /* ========== APPLICATION CRITERIA ========== */
    .app-criteria { background: var(--white); }
    .criteria-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; margin-top:40px; }
    .criteria-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
    .criteria-item { display:flex; align-items:flex-start; gap:14px; padding:18px 20px; background:var(--cream); border-radius:var(--radius); border-left:3px solid var(--green-mid); }
    .criteria-icon { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
    .criteria-item h4 { font-family:var(--font-body); font-weight:600; font-size:0.95rem; color:var(--charcoal); margin-bottom:2px; }
    .criteria-item p { font-size:0.85rem; color:var(--warm-gray); line-height:1.5; }
    .criteria-cta-card { background:var(--green-wash); border-radius:var(--radius-lg); padding:40px; text-align:center; border:2px solid var(--green-pale); }
    .criteria-cta-card h3 { font-size:1.3rem; margin-bottom:12px; color:var(--charcoal); }
    .criteria-cta-card p { font-size:0.92rem; color:var(--warm-gray); line-height:1.6; margin-bottom:24px; max-width:400px; margin-left:auto; margin-right:auto; }
    .criteria-note { text-align:center; margin-top:28px; font-size:0.82rem; color:var(--warm-gray); font-style:italic; }
    @media(max-width:768px){ .criteria-grid{grid-template-columns:1fr;} }

    /* ========== AVAILABLE HOMES ========== */
    .available-homes { background: var(--white); overflow: hidden; }
    .homes-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .homes-header .btn { flex-shrink: 0; }
    .homes-embed-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(0,0,0,0.06);
      position: relative;
      background: var(--green-wash);
    }
    .homes-embed-wrap iframe {
      width: 100%;
      min-height: 700px;
      border: none;
      display: block;
    }
    .homes-embed-overlay {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(180deg, var(--green-wash) 0%, transparent 100%);
      pointer-events: none;
      z-index: 1;
      display: none;
    }
    .homes-cta-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 24px;
      background: var(--green-wash);
      border-radius: var(--radius);
      margin-top: 32px;
      flex-wrap: wrap;
      text-align: center;
    }
    .homes-cta-bar p {
      font-size: 0.95rem;
      color: var(--slate);
    }
    .homes-cta-bar p strong {
      color: var(--charcoal);
    }
    @media(max-width:768px){
      .homes-embed-wrap iframe { min-height: 500px; }
    }

    /* ========== ACQUISITION ========== */
    .acquisition { background: var(--cream); position: relative; overflow: hidden; }
    .acq-intro { max-width: 720px; margin-bottom: 48px; }
    .acq-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 48px;
    }
    .acq-col {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      border: 1px solid rgba(0,0,0,0.04);
    }
    .acq-col h3 {
      font-size: 1.15rem;
      margin-bottom: 16px;
      color: var(--charcoal);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .acq-col h3 span {
      font-size: 1.3rem;
    }
    .acq-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .acq-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--slate);
      line-height: 1.5;
    }
    .acq-list li::before {
      content: '✓';
      color: var(--green-mid);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    /* Process timeline */
    .acq-process {
      background: linear-gradient(135deg, var(--charcoal) 0%, #2a3a1a 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      color: var(--white);
      margin-bottom: 48px;
    }
    .acq-process h3 {
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 28px;
      text-align: center;
    }
    .acq-timeline {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }
    .acq-step {
      text-align: center;
      position: relative;
    }
    .acq-step::after {
      content: '→';
      position: absolute;
      right: -12px;
      top: 18px;
      color: rgba(255,255,255,0.85);
      font-size: 1.1rem;
    }
    .acq-step:last-child::after { display: none; }
    .acq-step-num {
      width: 36px; height: 36px;
      background: var(--green-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      margin: 0 auto 10px;
    }
    .acq-step-title {
      font-weight: 600;
      font-size: 0.82rem;
      margin-bottom: 4px;
    }
    .acq-step-desc {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.4;
    }
    /* S8 benefits grid */
    .s8-benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .s8-benefit {
      background: var(--white);
      border-radius: var(--radius);
      padding: 24px;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.04);
      transition: all 0.3s;
    }
    .s8-benefit:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--green-mid);
    }
    .s8-benefit-icon {
      font-size: 1.8rem;
      margin-bottom: 10px;
      display: block;
    }
    .s8-benefit h4 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--charcoal);
      margin-bottom: 6px;
    }
    .s8-benefit p {
      font-size: 0.82rem;
      color: var(--warm-gray);
      line-height: 1.5;
    }
    .acq-cta {
      text-align: center;
      margin-top: 48px;
      padding: 40px;
      background: var(--green-wash);
      border-radius: var(--radius-lg);
      border: 2px dashed var(--green-mid);
    }
    .acq-cta h3 {
      font-size: 1.4rem;
      margin-bottom: 12px;
      color: var(--charcoal);
    }
    .acq-cta p {
      font-size: 0.95rem;
      color: var(--warm-gray);
      margin-bottom: 24px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    @media(max-width:1024px){
      .acq-timeline { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .acq-step:nth-child(3)::after { display: none; }
      .s8-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media(max-width:768px){
      .acq-two-col { grid-template-columns: 1fr; }
      .acq-timeline { grid-template-columns: repeat(2, 1fr); }
      .acq-step:nth-child(2n)::after { display: none; }
      .s8-benefits-grid { grid-template-columns: 1fr; }
    }

    /* ========== RENT ESTIMATE ========== */
    .rent-estimate { background:var(--green-wash); position:relative; overflow:hidden; }
    .re-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:flex-start; }
    .rent-table { width:100%; border-collapse:separate; border-spacing:0; margin-top:24px; }
    .rent-table th { background:var(--green-dark); color:var(--white); font-family:var(--font-body); font-size:0.82rem; font-weight:600; text-transform:uppercase; letter-spacing:0.04em; padding:14px 18px; text-align:left; }
    .rent-table th:first-child { border-radius:var(--radius) 0 0 0; }
    .rent-table th:last-child { border-radius:0 var(--radius) 0 0; }
    .rent-table td { padding:14px 18px; font-size:0.92rem; color:var(--slate); border-bottom:1px solid rgba(0,0,0,0.06); }
    .rent-table tr:nth-child(even) td { background:rgba(255,255,255,0.6); }
    .range-highlight { font-weight:600; color:var(--green-dark); }
    .rent-disclaimer { font-size:0.85rem; color:var(--warm-gray); margin-top:12px; font-style:italic; }
    .estimate-card { background:var(--white); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-md); }
    .estimate-card h3 { font-size:1.3rem; margin-bottom:8px; }
    .estimate-card .card-sub { font-size:0.9rem; color:var(--warm-gray); margin-bottom:24px; line-height:1.6; }
    .estimate-badge { display:inline-flex; align-items:center; gap:6px; background:var(--green-wash); padding:6px 14px; border-radius:100px; font-size:0.85rem; font-weight:600; color:var(--green-dark); margin-bottom:20px; }
    /* ========== FREE CONSULTATION ========== */
    .consultation { background:linear-gradient(135deg,var(--charcoal) 0%,#2a3a1a 60%,var(--green-dark) 100%); color:var(--white); position:relative; overflow:hidden; }
    .consult-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
    .consult-content h2 { color:var(--white); font-size:clamp(1.8rem,3.5vw,2.6rem); margin-bottom:16px; }
    .consult-content h2 em { font-style:normal; color:var(--green-light); }
    .consult-content p { color:rgba(255,255,255,0.85); line-height:1.7; font-weight:300; margin-bottom:16px; }
    .consult-benefits { list-style:none; display:flex; flex-direction:column; gap:12px; margin:24px 0; }
    .consult-benefits li { display:flex; align-items:center; gap:12px; font-size:0.95rem; color:rgba(255,255,255,0.85); }
    .consult-benefits li::before { content:'✓'; width:24px; height:24px; background:rgba(107,143,60,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.82rem; color:var(--green-light); flex-shrink:0; }
    .consult-form-card { background:rgba(255,255,255,0.06); backdrop-filter:blur(20px); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius-lg); padding:36px; }
    .consult-form-card h3 { font-family:var(--font-body); font-weight:600; font-size:1.1rem; color:var(--white); margin-bottom:6px; }
    .consult-form-card .card-sub { font-size:0.85rem; color:rgba(255,255,255,0.85); margin-bottom:20px; }
    .consult-form-card .form-group label { color:rgba(255,255,255,0.9); }
    .consult-form-card .form-group input, .consult-form-card .form-group select, .consult-form-card .form-group textarea { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.15); color:var(--white); }
    .consult-form-card .form-group input::placeholder, .consult-form-card .form-group textarea::placeholder { color:rgba(255,255,255,0.85); }
    .consult-form-card .form-group input:focus, .consult-form-card .form-group select:focus, .consult-form-card .form-group textarea:focus { border-color:var(--green-light); }
    .consult-form-card .form-group select option { background:var(--charcoal); color:var(--white); }
    .btn-consult { width:100%; padding:16px; background:var(--green-mid); color:var(--white); border:none; border-radius:var(--radius); font-family:var(--font-body); font-size:1rem; font-weight:600; cursor:pointer; transition:all 0.3s; box-shadow:0 4px 16px rgba(107,143,60,0.3); }
    .btn-consult:hover { background:var(--green-light); transform:translateY(-1px); }
    .consult-note { text-align:center; margin-top:14px; font-size:0.85rem; color:rgba(255,255,255,0.8); }
    @media(max-width:768px){ .re-grid{grid-template-columns:1fr;} .consult-grid{grid-template-columns:1fr;} }

    /* ========== ARTICLES / BLOG ========== */
    .articles { background: var(--cream); }
    .articles-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .articles-filter {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .filter-btn {
      padding: 8px 18px;
      border-radius: 100px;
      border: 1.5px solid rgba(0,0,0,0.1);
      background: var(--white);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--warm-gray);
      cursor: pointer;
      transition: all 0.3s;
    }
    .filter-btn:hover,
    .filter-btn.active {
      background: var(--green-dark);
      color: var(--white);
      border-color: var(--green-dark);
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .article-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.04);
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .article-thumb {
      height: 180px;
      position: relative;
      overflow: hidden;
    }
    .article-thumb-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }
    .article-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .article-tag {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 4px 10px;
      border-radius: 4px;
    }
    .tag-landlord { background: rgba(107,143,60,0.12); color: var(--green-dark); }
    .tag-tenant { background: rgba(201,169,78,0.15); color: #8a7430; }
    .tag-market { background: rgba(74,107,42,0.1); color: var(--green-mid); }
    .tag-section8 { background: rgba(26,26,26,0.08); color: var(--slate); }
    .article-date { font-size: 0.85rem; color: var(--warm-gray); }
    .article-card h3 {
      font-size: 1.1rem;
      line-height: 1.35;
      margin-bottom: 10px;
      color: var(--charcoal);
    }
    .article-excerpt {
      font-size: 0.88rem;
      color: var(--warm-gray);
      line-height: 1.6;
      flex: 1;
    }
    .article-read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--green-mid);
    }
    .article-read-more:hover { color: var(--green-dark); gap: 10px; }
    .show-more-articles { text-align: center; margin-top: 32px; }
    .btn-show-more {
      padding: 14px 32px;
      border-radius: var(--radius);
      border: 1.5px solid var(--green-mid);
      background: transparent;
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--green-mid);
      cursor: pointer;
      transition: all 0.3s;
    }
    .btn-show-more:hover {
      background: var(--green-dark);
      color: var(--white);
      border-color: var(--green-dark);
    }
    .articles-hidden { display: none; }
    .articles-hidden.show { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }

    /* ========== AREAS SERVED ========== */
    .areas { background: var(--white); }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
    }
    .area-tag {
      background: var(--green-wash);
      padding: 20px;
      border-radius: var(--radius);
      text-align: center;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--green-dark);
      transition: all 0.3s;
      border: 1px solid transparent;
    }
    .area-tag:hover {
      border-color: var(--green-mid);
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* ========== FAQ ========== */
    .faq { background: var(--cream); }
    .faq-list {
      max-width: 760px;
      margin: 48px auto 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid rgba(0,0,0,0.05);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--charcoal);
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }
    .faq-question:hover { background: var(--green-wash); }
    .faq-question::after {
      content: '+';
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--green-mid);
      transition: transform 0.3s;
    }
    .faq-item.open .faq-question::after { content: '−'; }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px;
    }
    .faq-answer p {
      font-size: 0.92rem;
      color: var(--warm-gray);
      line-height: 1.7;
    }

    /* ========== CONTACT ========== */
    .contact { background: var(--white); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 48px;
    }
    .contact-info { display: flex; flex-direction: column; gap: 28px; }
    .ci-item { display: flex; gap: 16px; align-items: flex-start; }
    .ci-icon {
      width: 44px; height: 44px;
      background: var(--green-wash);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .ci-text h4 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--charcoal);
      margin-bottom: 2px;
    }
    .ci-text p, .ci-text a {
      font-size: 0.9rem;
      color: var(--warm-gray);
      line-height: 1.6;
    }
    .ci-text a:hover { color: var(--green-mid); }
    .ci-social { display: flex; gap: 12px; margin-top: 8px; }
    .ci-social a {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      background: var(--green-dark);
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s;
    }
    .ci-social a:hover { background: var(--green-mid); transform: translateY(-2px); }
    .ci-social a svg { width: 20px; height: 20px; fill: var(--white); }
    .contact-form {
      background: var(--green-wash);
      border-radius: var(--radius-lg);
      padding: 36px;
    }
    .contact-form h3 {
      font-size: 1.3rem;
      margin-bottom: 24px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--slate);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid rgba(0,0,0,0.1);
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 0.92rem;
      background: var(--white);
      color: var(--charcoal);
      transition: border-color 0.3s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--green-mid);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .btn-submit {
      width: 100%;
      padding: 16px;
      background: var(--green-dark);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .btn-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

    /* ========== CTA BANNER ========== */
    .cta-banner {
      background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
      color: var(--white);
      text-align: center;
      padding: 80px 24px;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-banner h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
    }
    .cta-banner p {
      font-size: 1.1rem;
      opacity: 0.8;
      margin-bottom: 32px;
      font-weight: 300;
      position: relative;
    }
    .cta-banner .btn { position: relative; }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.8);
      padding: 64px 0 28px;
    }
    .footer-brand {
      text-align: center;
      margin-bottom: 44px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand img { margin: 0 auto; display: block; }
    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 14px auto 0;
      color: rgba(255,255,255,0.6);
      max-width: 520px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 44px;
    }
    .footer h4 {
      font-family: var(--font-body);
      font-weight: 600;
      color: var(--white);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .footer-links a:hover { color: var(--green-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
    }
    .footer-legal-notice { flex: 1 1 auto; }
    .footer-legal-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    .footer-legal-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.25s ease;
    }
    .footer-legal-links a:hover { color: var(--green-light); }
    .footer-legal-links .sep { color: rgba(255,255,255,0.25); }
    .footer-bottom img { height: 40px; opacity: 0.7; }

    /* ========== ANIMATIONS ========== */
    .fade-up {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-compact { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .mobile-toggle { display: block; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 100px; }
      .hero-card { display: none; }
      .quick-links-inner { grid-template-columns: repeat(2, 1fr); }
      .ql-item:nth-child(2) { border-right: none; }
      .services-grid { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: 1fr; }
      .s8-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonials-featured { grid-template-columns: 1fr; }
      .testimonials-compact { grid-template-columns: 1fr; }
      .articles-grid, .articles-hidden.show { grid-template-columns: 1fr; }
      .article-thumb { height: 140px; }
      .areas-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .section { padding: 60px 0; }
      .hero-title { font-size: clamp(2rem, 6vw, 3.2rem); }
      .hero-subtitle { font-size: 1rem; }
      .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
      .section-subtitle { font-size: 0.95rem; }
      .announcement-bar { font-size: 0.82rem; padding: 10px 16px; }
      .container { padding: 0 16px; }
      .ci-grid { grid-template-columns: 1fr; }
      .faq-question { font-size: 0.95rem; padding: 16px 40px 16px 16px; }
      .faq-answer p { font-size: 0.92rem; }
      .wo-item-text h4 { font-size: 0.95rem; }
      .wo-item-text p { font-size: 0.88rem; }
      .wo-highlight { padding: 28px 20px; }
      .trust-item h4 { font-size: 0.95rem; }
      .trust-item p { font-size: 0.88rem; }
      .s8-stats { flex-direction: column; gap: 24px; }
    }
    @media (max-width: 480px) {
      .quick-links-inner { grid-template-columns: 1fr; }
      .ql-item { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.06); padding: 14px 16px; }
      .ql-item:last-child { border-bottom: none; }
      .acq-timeline { grid-template-columns: 1fr !important; }
      .acq-step::after { display: none !important; }
      .areas-grid { grid-template-columns: 1fr !important; }
      .hero-ctas { flex-direction: column; gap: 12px; }
      .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
      .btn { padding: 14px 24px; font-size: 0.92rem; min-height: 48px; display: inline-flex; align-items: center; }
      .section { padding: 48px 0; }
      .s8-grid { padding: 40px 20px; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .mobile-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
      blockquote { font-size: 0.92rem !important; }
      .blog-content { padding: 32px 16px 48px; }
      .blog-content h2 { font-size: 1.3rem; margin: 28px 0 12px; }
      .blog-content p { font-size: 0.98rem; }
      .blog-content li { font-size: 0.95rem; }
      .blog-cta { padding: 24px 20px; }
      .blog-nav { flex-direction: column; gap: 12px; }
    }
  
    .sub-hero { padding: 120px 0 60px; background: linear-gradient(135deg, var(--charcoal) 0%, #1a2e0a 60%, var(--green-dark) 100%); color: var(--white); text-align: center; }
    .sub-hero .hero-tag { color: var(--green-light); }
    .sub-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 12px 0; }
    .sub-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,0.92); font-size: 1.1rem; line-height: 1.7; }
    .breadcrumb { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-bottom: 16px; }
    .breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
    .blog-content { max-width: 780px; margin: 0 auto; padding: 48px 20px 64px; }
    .blog-content h2 { font-size: 1.5rem; color: var(--charcoal); margin: 36px 0 16px; }
    .blog-content h3 { font-size: 1.2rem; color: var(--charcoal); margin: 28px 0 12px; }
    .blog-content p { font-size: 1.05rem; line-height: 1.8; color: var(--warm-gray); margin-bottom: 20px; }
    .blog-content ul, .blog-content ol { margin: 16px 0 24px 24px; }
    .blog-content li { font-size: 1rem; line-height: 1.7; color: var(--warm-gray); margin-bottom: 8px; }
    .blog-content a { color: var(--green-mid); font-weight: 600; }
    .blog-content a.btn { color: var(--white); }
    .blog-content a.btn:hover { color: var(--white); }
    .blog-content blockquote { border-left: 4px solid var(--green-mid); padding: 16px 24px; margin: 24px 0; background: var(--cream); border-radius: 0 8px 8px 0; }
    .blog-meta { display: flex; gap: 12px 16px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; font-size: 0.9rem; color: var(--warm-gray); }
    .blog-tag { background: var(--green-wash); color: var(--green-dark); padding: 4px 12px; border-radius: 20px; font-size: 0.88rem; font-weight: 600; }
    .blog-cta { background: var(--cream); border-radius: 16px; padding: 32px; margin: 40px 0; text-align: center; }
    .blog-cta h3 { margin: 0 0 8px; }
    .blog-cta p { margin-bottom: 16px; }
    .blog-nav { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08); }
    .blog-nav a { color: var(--green-mid); font-weight: 600; font-size: 0.95rem; text-decoration: none; }
    .nav-link-page.active { color: var(--green-mid); }

  
    /* Fix btn-outline: default dark for light backgrounds */
    .btn-outline {
      color: var(--green-dark) !important;
      border-color: var(--green-dark) !important;
      background: transparent !important;
    }
    .btn-outline:hover {
      background: var(--green-dark) !important;
      color: var(--white) !important;
    }
    /* White btn-outline only on dark backgrounds */
    .hero .btn-outline,
    .cta-banner .btn-outline,
    .consultation .btn-outline,
    [style*="charcoal"] .btn-outline,
    [style*="green-dark"] .btn-outline {
      color: var(--white) !important;
      border-color: rgba(255,255,255,0.4) !important;
      background: rgba(255,255,255,0.08) !important;
    }
    .hero .btn-outline:hover,
    .cta-banner .btn-outline:hover,
    .consultation .btn-outline:hover,
    [style*="charcoal"] .btn-outline:hover,
    [style*="green-dark"] .btn-outline:hover {
      background: var(--white) !important;
      color: var(--green-dark) !important;
      border-color: var(--white) !important;
    }
    
    /* ========== STICKY MOBILE CTA BAR (visible on mobile only) ========== */
    .sticky-cta-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: var(--white);
      border-top: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
      padding: 12px 16px;
      gap: 10px;
    }
    .sticky-cta-bar a {
      flex: 1;
      text-align: center;
      padding: 13px 8px;
      border-radius: 8px;
      font-size: 0.92rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.01em;
    }
    .sticky-cta-bar .sticky-primary {
      background: var(--green-mid);
      color: var(--white);
    }
    .sticky-cta-bar .sticky-secondary {
      background: var(--cream, #f5f1e8);
      color: var(--green-dark);
      border: 1.5px solid var(--green-mid);
    }
    @media (max-width: 768px) {
      .sticky-cta-bar { display: flex; }
      body { padding-bottom: 76px; } /* prevent footer overlap */
    }