@font-face {
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 400 800;
      font-display: swap;
      src: url(/fonts/montserrat.woff2) format('woff2');
    }

:root {
      --green: #1a5c1a;
      --green-hover: #145214;
      --green-light: #2a7a2a;
      --green-bg: #edf7ed;
      --blue: #0044cc;
      --gold: #f5d800;
      --gold-hover: #e6cb00;
      --dark: #1a1a1a;
      --dark-mid: #2a2a2a;
      --text: #444;
      --text-light: #777;
      --border: #e0e0e0;
      --light: #f5f6f8;
      --white: #ffffff;
      --red: #dc2626;
    }

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

    html {
      overflow-x: clip;
    }
    body {
      overflow-x: clip;
      width: 100%;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      background: var(--white);
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; }
    a { text-decoration: none; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; display: block; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 36px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      border-radius: 0;
    }
    .btn-green { background: var(--green); color: white; }
    .btn-green:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,92,26,0.35); }
    .btn-gold { background: var(--gold); color: var(--dark); }
    .btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
    .btn-white { background: white; color: var(--dark); font-weight: 800; }
    .btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
    .btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
    .btn-outline-white:hover { background: white; color: var(--dark); border-color: white; }
    .btn-dark { background: var(--dark); color: white; }
    .btn-dark:hover { background: #333; transform: translateY(-2px); }

    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--white);
      padding: 10px 0;
      font-size: 13px;
      color: var(--text-light);
      border-bottom: 1px solid var(--border);
    }
    .topbar .container { display: flex; justify-content: flex-end; align-items: center; }
    .topbar a { color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
    .topbar a:hover { color: var(--green); }
    .topbar-left { display: flex; gap: 28px; }
    .topbar-right { display: flex; align-items: center; gap: 8px; margin-left: 28px; }
    .topbar-right a { font-weight: 800; color: var(--dark); font-size: 14px; }

    /* ===== HEADER ===== */
    .header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      padding: 12px 0;
    }
    .header .container { display: flex; justify-content: space-between; align-items: center; }
    .header .logo { display: flex; align-items: center; gap: 12px; }
    .header .logo img { height: 55px; }
    .header .logo-text { font-size: 16px; font-weight: 900; color: var(--dark); line-height: 1.2; }
    .header .logo-text span { display: block; font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
    .header-nav-wrap { display: flex; align-items: center; gap: 8px; }
    .desktop-nav { display: flex; align-items: center; gap: 0; }
    .nav-item { position: relative; }
    .nav-item > a {
      color: var(--green);
      font-weight: 700;
      font-size: 13px;
      padding: 10px 14px;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 4px;
     
    }
    .nav-item > a:hover { color: var(--green-hover); }
    .nav-item > a .caret { font-size: 10px; opacity: 0.5; }
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 220px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      border-radius: 8px;
      padding: 8px 0;
      z-index: 100;
    }
    .nav-item:hover .dropdown { display: block; }
    .dropdown a {
      display: block;
      padding: 10px 20px;
      color: var(--dark);
      font-size: 13px;
      font-weight: 600;
      transition: background 0.2s;
    }
    .dropdown a:hover {
      background: #f0faf0;
      color: var(--green);
    }
    .header .btn-book {
      background: var(--green);
      color: white;
      padding: 12px 28px;
      font-weight: 800;
      font-size: 14px;
      border-radius: 6px;
      text-transform: none;
      letter-spacing: 0;
      margin-left: 8px;
    }
    .header .btn-book:hover { background: var(--green-hover); }

    /* ===== HAMBURGER ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 8px; }
    .hamburger span { width: 24px; height: 3px; background: var(--green); border-radius: 2px; transition: all 0.3s ease; }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, #eaf5ea 0%, #f0f7f0 40%, #ffffff 60%, #ffffff 100%);
      padding: 80px 0 100px;
      position: relative;
      overflow: hidden;
      min-height: 560px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 55% 45%;
      gap: 40px;
      align-items: center;
    }
    .hero-label {
      color: var(--green);
      font-weight: 800;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      display: block;
    }
    .hero h1 {
      font-size: 48px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 16px;
      line-height: 1.08;
      text-transform: uppercase;
    }
    .hero .hero-subtitle {
      font-size: 18px;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 28px;
      font-weight: 500;
    }
    .hero-checks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }
    .hero-checks li {
      font-size: 17px;
      font-weight: 500;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-checks .check {
      color: var(--green);
      font-weight: 900;
      font-size: 20px;
    }

    /* Hero Funnel */
    .hero-funnel {
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 12px;
      padding: 28px 32px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      max-width: 480px;
    }
    .funnel-title {
      font-size: 18px;
      font-weight: 900;
      text-align: center;
      margin-bottom: 6px;
      color: var(--dark);
      text-transform: uppercase;
    }
    .funnel-sub {
      text-align: center;
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 20px;
    }
    .funnel-steps {
      display: flex;
      gap: 0;
      margin-bottom: 20px;
    }
    .funnel-step-indicator {
      flex: 1;
      text-align: center;
      position: relative;
      padding-bottom: 12px;
    }
    .funnel-step-indicator::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--border);
      border-radius: 2px;
    }
    .funnel-step-indicator.active::after { background: var(--green); }
    .funnel-step-indicator .step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--border);
      color: var(--text-light);
      font-size: 12px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }
    .funnel-step-indicator.active .step-num { background: var(--green); color: white; }
    .funnel-step-indicator .step-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
    .funnel-step-indicator.active .step-label { color: var(--green); }
    .funnel-body input, .funnel-body select {
      width: 100%;
      padding: 16px 18px;
      border: 2px solid var(--border);
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 12px;
      background: var(--light);
      color: var(--dark);
    }
    .funnel-body input:focus, .funnel-body select:focus { border-color: var(--green); outline: none; background: white; }
    .funnel-body input::placeholder { color: #aaa; }
    .funnel-body .btn-funnel {
      width: 100%;
      padding: 18px;
      background: var(--green);
      color: white;
      border: none;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .funnel-body .btn-funnel:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,92,26,0.3); }
    .funnel-trust { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 12px; }
    .funnel-trust strong { color: var(--text); }

    /* Hero Photo */
    .hero-photo-side { position: relative; }
    .hero-photo-side img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    .hero-review {
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      padding: 14px 28px;
      border-radius: 8px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 2;
     
    }
    .hero-review .stars { color: #fbbf24; font-size: 18px; letter-spacing: 1px; }
    .hero-review strong { color: var(--dark); font-size: 18px; }
    .hero-review span { color: var(--text-light); font-size: 13px; }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--white);
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }
    .trust-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .trust-badge {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-badge svg { width: 24px; height: 24px; }
    .trust-badge.green { background: var(--green-bg); }
    .trust-badge.blue { background: #e8f0fe; }
    .trust-badge.gold { background: #fef9e7; }
    .trust-text { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); line-height: 1.3; }
    .trust-text span { display: block; font-weight: 500; font-size: 11px; color: var(--text-light); text-transform: none; letter-spacing: 0; }

    /* ===== SECTION BASE ===== */
    .section { padding: 90px 0; }
    .section-light { background: var(--light); }
    .section-green-bg { background: var(--green-bg); }
    .section-dark { background: var(--dark); color: white; }
    .section-header { text-align: center; margin-bottom: 55px; }
    .section-label {
      display: block;
      color: var(--green);
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }
    .section-dark .section-label { color: var(--gold); }
    .section-header h2 { font-size: 38px; font-weight: 900; margin-bottom: 16px; }
    .section-dark h2 { color: white; }
    .section-header p { color: var(--text-light); font-size: 17px; max-width: 600px; margin: 0 auto; line-height: 1.7; }
    .section-dark .section-header p { color: #aaa; }

    /* ===== SERVICES HUB GRID ===== */
    .services-hub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-hub-card {
      background: white;
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .service-hub-card:hover {
      border-color: var(--green);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .service-hub-card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }
    .service-hub-card-body {
      padding: 24px 24px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .service-hub-card-body h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--dark);
    }
    .service-hub-card-body p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
      flex: 1;
    }
    .service-hub-btn {
      display: inline-block;
      margin-top: 14px;
      padding: 10px 20px;
      background: var(--green);
      color: white;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      text-align: center;
    }
    .service-hub-btn:hover {
      background: var(--green-hover);
      transform: translateY(-1px);
    }

    /* ===== COIL METHODS GRID ===== */
    .coil-methods-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .coil-method-card {
      background: white;
      border: 1px solid var(--border);
      padding: 28px 20px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .coil-method-card:hover {
      border-color: var(--green);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .coil-method-icon-wrap {
      width: 56px;
      height: 56px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }
    .coil-method-icon-wrap svg {
      width: 26px;
      height: 26px;
    }
    .coil-method-card h4 {
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--dark);
    }
    .coil-method-card p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ===== WHY CHOOSE US GRID ===== */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .why-card {
      background: white;
      border: 1px solid var(--border);
      padding: 32px 28px;
      transition: all 0.3s ease;
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }
    .why-card:hover {
      border-color: var(--green);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .why-icon-wrap {
      width: 56px;
      height: 56px;
      min-width: 56px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-icon-wrap svg {
      width: 26px;
      height: 26px;
    }
    .why-card h3 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--dark);
    }
    .why-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ===== WHY MIAMI SECTION ===== */
    .why-hollywood-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }
    .why-hollywood-text h2 {
      font-size: 34px;
      font-weight: 900;
      margin-bottom: 20px;
    }
    .why-hollywood-text p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .concern-card {
      background: white;
      border: 1px solid var(--border);
      padding: 28px;
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }
    .concern-card:hover {
      border-color: var(--green);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .concern-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .concern-card h3 .icon { font-size: 22px; }
    .concern-card p { font-size: 15px; line-height: 1.7; color: var(--text); }
    .concern-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* ===== SERVICES INCLUDED ===== */
    .included-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .included-item {
      background: white;
      border: 1px solid var(--border);
      padding: 32px 28px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .included-item:hover {
      border-color: var(--green);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .included-icon {
      width: 56px;
      height: 56px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 24px;
    }
    .included-img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; }
    .included-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
    .included-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

    /* ===== PRICING ===== */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 900px;
      margin: 0 auto;
    }
    .price-card {
      background: white;
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    }
    .price-card-popular {
      border: 2px solid var(--green);
    }
    .price-card-popular .price-card-top {
      background: var(--green);
    }
    .price-card-popular .price-card-top h3,
    .price-card-popular .price-card-top .price-now {
      color: white;
    }
    .popular-tag {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 12px;
      margin-bottom: 10px;
    }
    .price-card-top {
      padding: 32px;
      background: var(--green-bg);
      text-align: center;
    }
    .price-card-top h3 {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 16px;
    }
    .price-row-card {
      display: flex;
      align-items: baseline;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .price-original { text-decoration: line-through; color: #999; font-size: 20px; }
    .price-now { font-size: 52px; font-weight: 900; color: var(--green); }
    .price-badge {
      display: inline-block;
      background: var(--red);
      color: white;
      padding: 5px 14px;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .price-card-body {
      padding: 28px 32px;
    }
    .price-card-body ul {
      list-style: none;
    }
    .price-card-body li {
      padding: 8px 0;
      font-size: 15px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--light);
    }
    .price-card-body li:last-child { border-bottom: none; }
    .price-card-body li::before { content: '\2713'; color: var(--green); font-weight: 900; font-size: 18px; }
    .price-card-body { flex: 1; }
    .price-card-cta { padding: 0 32px 32px; margin-top: auto; }
    .price-card-cta .btn { width: 100%; padding: 16px; font-size: 15px; border-radius: 6px; }
    .pricing-note {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      color: var(--text-light);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    /* ===== PROCESS (Zig-Zag) ===== */
    .process-zigzag { display: flex; flex-direction: column; gap: 60px; }
    .process-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      position: relative;
    }
    .process-row.reverse .process-row-text { order: 2; }
    .process-row.reverse .process-row-image { order: 1; }
    .process-row-image { position: relative; }
    .process-row-image img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .process-row-text { position: relative; padding: 20px 0; }
    .process-watermark {
      position: absolute;
      top: -20px;
      left: -10px;
      font-size: 160px;
      font-weight: 900;
      color: rgba(245, 216, 0, 0.12);
      line-height: 1;
      z-index: 0;
      pointer-events: none;
      user-select: none;
    }
    .process-row-text .step-num-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: white;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .process-row-text h3 {
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 14px;
      color: var(--dark);
      position: relative;
      z-index: 1;
    }
    .process-row-text p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text);
      position: relative;
      z-index: 1;
    }

    /* ===== WHAT IS SECTION ===== */
    .what-is-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .what-is-text h2 {
      font-size: 34px;
      font-weight: 900;
      margin-bottom: 20px;
    }
    .what-is-text p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .what-is-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

    /* ===== HEALTH FEATURE IMAGE ===== */
    .health-feature-img {
      margin-bottom: 50px;
      border-radius: 12px;
      overflow: hidden;
      max-height: 400px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .health-feature-img img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    /* ===== WHO NEEDS BANNER ===== */
    .who-needs-banner {
      margin-bottom: 50px;
      border-radius: 12px;
      overflow: hidden;
      max-height: 360px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .who-needs-banner img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
    }

    /* ===== ADDON CARD IMAGE ===== */
    .addon-card-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    /* ===== BEFORE/AFTER BANNER ===== */
    .ba-banner { position: relative; overflow: hidden; }
    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 500px;
    }
    .ba-image { position: relative; }
    .ba-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 500px;
    }
    .ba-content-side {
      background: var(--dark);
      color: white;
      padding: 70px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .ba-content-side .section-label { color: var(--gold); text-align: left; }
    .ba-content-side h2 { font-size: 34px; font-weight: 900; color: white; margin-bottom: 18px; }
    .ba-content-side p { font-size: 16px; line-height: 1.8; color: #bbb; margin-bottom: 28px; }
    .ba-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 32px;
    }
    .ba-stat {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 20px;
      text-align: center;
    }
    .ba-stat .num { font-size: 32px; font-weight: 900; color: var(--green-light); }
    .ba-stat .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-top: 4px; }

    /* ===== WHO NEEDS DUCT CLEANING ===== */
    .who-needs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .who-needs-card {
      background: white;
      border: 1px solid var(--border);
      padding: 32px 28px;
      transition: all 0.3s ease;
    }
    .who-needs-card:hover {
      border-color: var(--green);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .who-needs-icon {
      width: 56px;
      height: 56px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 24px;
    }
    .who-needs-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--green); }
    .who-needs-card p { font-size: 14px; color: var(--text); line-height: 1.7; }

    /* ===== HEALTH BENEFITS ===== */
    .health-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .health-card {
      background: white;
      border: 1px solid var(--border);
      padding: 36px 28px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .health-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--green);
    }
    .health-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }
    .health-icon {
      width: 72px;
      height: 72px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 32px;
    }
    .health-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--green); }
    .health-card p { font-size: 14px; color: var(--text); line-height: 1.7; }

    /* ===== ADDITIONAL HVAC SERVICES ===== */
    .addon-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .addon-card {
      background: white;
      border: 1px solid var(--border);
      padding: 28px 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: all 0.3s ease;
    }
    .addon-card:hover {
      border-color: var(--green);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .addon-icon {
      width: 48px;
      height: 48px;
      background: var(--green-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 20px;
    }
    .addon-info h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
    .addon-price { font-size: 15px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
    .addon-btn { display: inline-block; margin-top: 10px; padding: 8px 20px; background: var(--green); color: white; font-size: 13px; font-weight: 700; text-decoration: none; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; }
    .addon-btn:hover { background: var(--green-hover); transform: translateY(-1px); }
    .credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
    .sanit-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    @media (max-width: 768px) {
      .process-grid { grid-template-columns: 1fr !important; }
      .truck-services-grid { grid-template-columns: 1fr !important; }
      .pricing-hero-grid { grid-template-columns: 1fr !important; }
      .credentials-grid { grid-template-columns: 1fr; }
      .sanit-stats-grid { grid-template-columns: 1fr 1fr; }
      .cleaning-compare-grid { grid-template-columns: 1fr !important; }
    }
    .addon-info p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

    /* ===== DIY VS PROFESSIONAL ===== */
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 900px;
      margin: 0 auto;
    }
    .compare-col {
      padding: 36px 32px;
      border-radius: 0;
    }
    .compare-col.diy {
      background: #fef2f2;
      border: 1px solid #fecaca;
      border-top: 4px solid var(--red);
    }
    .compare-col.pro {
      background: var(--green-bg);
      border: 1px solid #c6e7c6;
      border-top: 4px solid var(--green);
    }
    .compare-col h3 { font-size: 20px; font-weight: 900; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
    .compare-col.diy h3 { color: var(--red); }
    .compare-col.pro h3 { color: var(--green); }
    .compare-col ul { list-style: none; padding: 0; }
    .compare-col ul li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      font-size: 15px;
      font-weight: 500;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }
    .compare-col ul li:last-child { border-bottom: none; }
    .compare-col .compare-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
    .compare-col .compare-cost {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 2px solid rgba(0,0,0,0.08);
      font-size: 16px;
      font-weight: 800;
    }
    .compare-verdict {
      text-align: center;
      margin-top: 36px;
      font-size: 17px;
      line-height: 1.7;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===== HOW OFTEN SECTION ===== */
    .how-often-content { max-width: 800px; margin: 0 auto; }
    .climate-callout {
      background: var(--green-bg);
      border-left: 4px solid var(--green);
      padding: 28px 32px;
      margin-bottom: 36px;
    }
    .climate-callout h3 { font-size: 18px; font-weight: 800; color: var(--green); margin-bottom: 12px; }
    .climate-callout p { font-size: 15px; line-height: 1.8; }
    .signs-list { list-style: none; padding: 0; margin-bottom: 36px; }
    .signs-list li {
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .signs-list li:last-child { border-bottom: none; }
    .signs-check { color: var(--green); font-weight: 900; font-size: 18px; flex-shrink: 0; }
    .energy-box {
      background: white;
      border: 2px solid var(--green);
      padding: 32px;
    }
    .energy-box h3 { font-size: 18px; font-weight: 800; color: var(--green); margin-bottom: 14px; }
    .energy-box p { font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
    .energy-box ul { padding-left: 20px; line-height: 1.8; }
    .energy-box ul li { margin-bottom: 4px; font-size: 15px; }

    /* ===== FAQ ===== */
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item { border: 1px solid var(--border); margin-bottom: 8px; background: white; }
    .faq-q {
      padding: 20px 28px;
      font-weight: 700;
      font-size: 16px;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }
    .faq-q:hover { background: var(--green-bg); }
    .faq-q .plus { color: var(--green); font-size: 22px; font-weight: 800; transition: transform 0.3s; }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 28px;
      font-size: 15px;
      line-height: 1.8;
    }
    .faq-item.open .faq-a { max-height: 400px; padding: 0 28px 24px; }
    .faq-item.open .plus { transform: rotate(45deg); }

    /* ===== NEIGHBORHOODS ===== */
    .neighborhoods-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .neighborhood-card {
      background: white;
      border: 1px solid var(--border);
      padding: 20px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--dark);
      transition: all 0.3s ease;
      font-weight: 700;
    }
    .neighborhood-card:hover { border-color: var(--green); background: var(--green-bg); transform: translateY(-2px); }
    .neighborhood-card h4 { font-size: 15px; font-weight: 700; }
    .neighborhood-card .arrow { color: var(--green); font-weight: 800; font-size: 18px; }

    /* ===== TESTIMONIALS ===== */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial {
      background: white;
      padding: 36px;
      border: 1px solid var(--border);
      position: relative;
    }
    .testimonial::before {
      content: '\201C';
      font-size: 72px;
      color: var(--green-bg);
      position: absolute;
      top: 8px;
      right: 20px;
      font-family: Georgia, serif;
      line-height: 1;
    }
    .testimonial .stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
    .testimonial .text { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 20px; font-style: italic; }
    .testimonial .author { font-weight: 800; font-size: 15px; color: var(--dark); }
    .testimonial .location { font-size: 13px; color: var(--text-light); }

    /* ===== BOTTOM FORM ===== */
    .bottom-form-section { background: var(--green-bg); }
    .bottom-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .bottom-form-photo img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .bottom-form {
      background: white;
      padding: 44px;
      border: 1px solid var(--border);
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    }
    .bottom-form h3 { font-size: 24px; font-weight: 900; margin-bottom: 6px; text-align: center; text-transform: uppercase; }
    .bottom-form .form-sub { text-align: center; font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
    .bottom-form input, .bottom-form select {
      width: 100%;
      padding: 15px 18px;
      border: 1px solid var(--border);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 12px;
      background: var(--light);
    }
    .bottom-form input:focus, .bottom-form select:focus { border-color: var(--green); outline: none; background: white; }
    .bottom-form .btn { width: 100%; padding: 18px; font-size: 16px; }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark);
      color: #aaa;
      padding: 60px 0 24px;
      font-size: 14px;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer h3 { color: white; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
    .footer ul { list-style: none; }
    .footer li { margin-bottom: 10px; }
    .footer a { color: #999; font-size: 14px; }
    .footer a:hover { color: var(--gold); }
    .footer-brand p { line-height: 1.7; margin-bottom: 16px; font-size: 14px; }
    .footer-phone { color: var(--green-light); font-size: 22px; font-weight: 900; display: inline-block; }
    .footer-phone:hover { color: var(--gold); }
    .footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; color: #555; }

    /* ===== MOBILE BAR ===== */
    .mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
      flex-wrap: wrap;
    }
    .mobile-bar a {
      flex: 1;
      text-align: center;
      padding: 18px;
      font-weight: 800;
      font-size: 15px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .mobile-bar .call-btn { background: white; color: var(--green); }
    .mobile-bar .book-btn { background: var(--gold); color: var(--dark); }
    .mobile-brand-strip {
      width: 100%;
      background: var(--green);
      color: white;
      text-align: center;
      font-size: 9px;
      font-weight: 600;
      padding: 5px 8px;
      letter-spacing: 0.3px;
     
      overflow: hidden;
      text-overflow: ellipsis;
      order: 3;
    }
    .mascot-wrapper {
      position: absolute;
      top: -36px;
      right: 10px;
    }
    .mobile-bar-mascot {
      width: 48px;
      height: 48px;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
      animation: mascotBounce 2s ease-in-out infinite;
    }
    .mascot-bubble {
      position: absolute;
      top: -30px;
      right: -8px;
      background: var(--green);
      color: white;
      font-size: 10px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 10px;
     
      animation: bubblePop 6s ease-in-out infinite;
      opacity: 0;
      white-space: nowrap;
      z-index: 10;
      box-shadow: 0 2px 8px rgba(26,92,26,0.3);
    }
    .mascot-bubble::after {
      content: '';
      position: absolute;
      bottom: -5px;
      right: 14px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid var(--green);
    }
    @keyframes mascotBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }
    @keyframes bubblePop {
      0%, 100% { opacity: 0; transform: scale(0.8); }
      15%, 85% { opacity: 1; transform: scale(1); }
    }

    /* ===== RESPONSIVE ===== */
    /* ===== MEGA MENU ===== */
    .mega-menu { position: fixed; top: 0; right: -100%; width: 100%; height: calc(100vh - 110px); background: var(--white); z-index: 9999; transition: right 0.35s ease; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .mega-menu.open { right: 0; }
    .mega-menu-inner { padding: 20px 24px 80px; }
    .mega-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .mega-logo img { height: 45px; }
    .mega-close { background: none; border: none; font-size: 36px; color: var(--dark); cursor: pointer; padding: 0 8px; line-height: 1; }
    .mega-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .mega-cta-btn { width: 100%; padding: 16px; text-align: center; border-radius: 8px; font-size: 16px; }
    .mega-section-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
    .mega-services-list { margin-bottom: 28px; }
    .mega-service-group { margin-bottom: 8px; }
    .mega-service-card { display: flex; align-items: center; background: var(--light); border-radius: 10px; overflow: hidden; text-decoration: none; cursor: pointer; transition: background 0.2s ease; }
    .mega-service-card:hover { background: #eaeaea; }
    .mega-service-card img { width: 70px; height: 70px; object-fit: cover; flex-shrink: 0; }
    .mega-service-info { padding: 10px 12px; flex: 1; }
    .mega-service-info strong { display: block; font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
    .mega-service-info span { font-size: 11px; color: var(--green); font-weight: 700; }
    .mega-arrow { font-size: 24px; color: #555; padding-right: 14px; transition: transform 0.3s ease; font-weight: 300; }
    .mega-service-group.open .mega-arrow { transform: rotate(90deg); color: var(--green); }
    .mega-submenu { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--white); border-left: 3px solid var(--green); margin-left: 16px; border-radius: 0 0 8px 8px; }
    .mega-service-group.open .mega-submenu { max-height: 500px; }
    .mega-submenu a { display: block; padding: 12px 16px; color: var(--dark); font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--border); text-decoration: none; }
    .mega-submenu a:last-child { border-bottom: none; }
    .mega-submenu a:hover { color: var(--green); background: var(--green-bg); }
    .mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 28px; }
    .mega-links a { padding: 14px 0; color: var(--dark); font-weight: 700; font-size: 15px; border-bottom: 1px solid var(--border); }
    .mega-links a:hover { color: var(--green); }
    .mega-bottom { margin-top: 20px; }
    .mega-trust-bar { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
    .mega-trust-bar span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #555; }
    .mega-ads-slider { border-radius: 12px; overflow: hidden; }
    .mega-ads-track { display: flex; }
    .mega-ad-slide { min-width: 100%; position: relative; }
    .mega-ad-slide img { width: 100%; display: block; }
    .mega-ad-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }
    .mega-ad-content { position: relative; z-index: 2; }
    .mega-ad-cta-btn { position: relative; z-index: 2; }

    /* CITY CARDS */
    .city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
    .city-card { display: block; background: white; border: 2px solid var(--border); border-radius: 12px; padding: 28px 20px; text-align: center; transition: all 0.3s ease; text-decoration: none; }
    .city-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,92,26,0.12); }
    .city-card .city-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--green-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
    .city-card .city-icon svg { width: 22px; height: 22px; }
    .city-card h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
    .city-card .city-county { font-size: 12px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
    .city-card .city-zips { font-size: 11px; color: var(--text-light); line-height: 1.5; }
    .city-card:hover h3 { color: var(--green); }

    @media (max-width: 1024px) {
      .desktop-nav { display: none; }
      .header-nav-wrap { gap: 0; }
      .hamburger { display: flex; }
      .header .logo-text { display: block; font-size: 12px; }
      .header .logo-text span { font-size: 9px; }
      .hero-grid { grid-template-columns: 1fr; gap: 30px; }
      .hero h1 { font-size: 38px; }
      .hero-photo-side img { height: 380px; }
      .why-hollywood-grid { grid-template-columns: 1fr; gap: 30px; }
      .included-grid { grid-template-columns: repeat(2, 1fr); }
      .process-row { grid-template-columns: 1fr 1fr; gap: 30px; }
      .process-row-image img { height: 280px; }
      .what-is-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
      .what-is-image img { height: 320px; }
      .ba-grid { grid-template-columns: 1fr; }
      .ba-content-side { padding: 50px 40px; }
      .ba-image img { min-height: 350px; }
      .bottom-form-grid { grid-template-columns: 1fr; gap: 30px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .who-needs-grid { grid-template-columns: repeat(2, 1fr); }
      .health-grid { grid-template-columns: repeat(3, 1fr); }
      .compare-grid { grid-template-columns: 1fr 1fr; }
      .concern-cards-grid { grid-template-columns: repeat(2, 1fr); }
      .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
      .coil-methods-grid { grid-template-columns: repeat(3, 1fr); }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .city-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      .hero { padding: 40px 0 50px; min-height: auto; }
      .hero h1 { font-size: 30px; }
      .hero-photo-side img { height: 300px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .mobile-bar { display: flex; }
      body { padding-bottom: 80px; }
      .section { padding: 60px 0; }
      .topbar { display: none; }
      .trust-items { gap: 20px; }
      .ba-image img { min-height: 280px; }
      .section-header h2 { font-size: 28px; }
      .bottom-form-photo img { height: 280px; }
      .included-grid { grid-template-columns: 1fr; }
      .who-needs-grid { grid-template-columns: 1fr; }
      .health-grid { grid-template-columns: 1fr; }
      .compare-grid { grid-template-columns: 1fr; }
      .concern-cards-grid { grid-template-columns: 1fr; }
      .addon-grid { grid-template-columns: 1fr; }
      .services-hub-grid { grid-template-columns: 1fr; }
      .coil-methods-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .city-grid { grid-template-columns: repeat(2, 1fr); }
      .why-card { flex-direction: column; gap: 14px; }
      .process-row { grid-template-columns: 1fr; gap: 20px; }
      .process-row.reverse .process-row-text { order: 1; }
      .process-row.reverse .process-row-image { order: 2; }
      .process-row-image img { height: 240px; }
      .process-watermark { font-size: 100px; }
      .what-is-grid { grid-template-columns: 1fr; gap: 24px; }
      .what-is-image img { height: 260px; }
      .health-feature-img, .health-feature-img img { max-height: 240px; height: 240px; }
      .who-needs-banner, .who-needs-banner img { max-height: 220px; height: 220px; }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 24px; }
      .hero-checks { flex-direction: column; gap: 6px; }
      .neighborhoods-grid { grid-template-columns: 1fr; }
      .process-row { grid-template-columns: 1fr; }
      .ba-stats { grid-template-columns: 1fr; }
      .hero-funnel { padding: 24px 20px; }
      .coil-methods-grid { grid-template-columns: 1fr; }
    }
  
  
    .mega-ads-slider{border-radius:12px;overflow:hidden;position:relative;}.mega-ads-track{display:flex;transition:transform 0.4s ease;}.mega-ad-slide{min-width:100%;position:relative;display:flex;flex-direction:column;justify-content:flex-end;padding:24px 20px;text-decoration:none;color:white;min-height:140px;}.mega-ad-content{position:relative;z-index:2;}.mega-ad-badge{display:inline-block;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:2px;background:rgba(255,255,255,0.2);padding:3px 10px;border-radius:3px;margin-bottom:8px;}.mega-ad-title{font-size:22px;font-weight:900;margin-bottom:4px;text-shadow:0 2px 8px rgba(0,0,0,0.3);}.mega-ad-sub{font-size:13px;font-weight:500;opacity:0.9;margin-bottom:12px;}.mega-ad-cta-btn{position:relative;z-index:2;display:inline-block;background:white;color:#1a1a1a;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:1px;padding:8px 20px;border-radius:6px;}.mega-ads-dots{display:flex;justify-content:center;gap:6px;padding:10px 0 4px;}.mega-ads-dot{width:8px;height:8px;border-radius:50%;background:#e0e0e0;cursor:pointer;transition:background 0.3s;}.mega-ads-dot.active{background:#1a5c1a;}
    .mega-ads-arrows { display: flex; justify-content: center; gap: 24px; margin-top: 8px; }
    .mega-arrow.mega-arrow-left, .mega-arrow.mega-arrow-right { background: rgba(0,0,0,0.08); border: 2px solid rgba(0,0,0,0.15); color: #333; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; }

    /* ===== CONTENT SECTIONS: FLOWING LAYOUTS ===== */
    .content-flow-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }
    .content-flow-grid.reverse { direction: rtl; }
    .content-flow-grid.reverse > * { direction: ltr; }
    .content-flow-text h2 {
      font-size: 34px;
      font-weight: 900;
      margin-bottom: 20px;
    }
    .content-flow-text p {
      font-size: 16px;
      line-height: 1.85;
      margin-bottom: 18px;
      color: var(--text);
    }
    .content-flow-text .section-label {
      display: inline-block;
      margin-bottom: 10px;
    }
    .content-flow-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .content-flow-text a.link-green {
      color: var(--green);
      font-weight: 700;
      text-decoration: none;
    }
    .content-flow-text a.link-green:hover { text-decoration: underline; }

    /* Standard vs Deep comparison — inline flowing text */
    .compare-inline { margin: 24px 0; }
    .compare-inline-item {
      padding: 20px 0;
      border-bottom: 1px solid #e8e8e8;
    }
    .compare-inline-item:last-child { border-bottom: none; }
    .compare-inline-item h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--dark);
    }
    .compare-inline-item p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* Process steps — numbered list, not cards */
    .process-steps-list { counter-reset: step-counter; margin: 10px 0; }
    .process-step-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid #eee;
    }
    .process-step-item:last-child { border-bottom: none; }
    .process-step-num {
      counter-increment: step-counter;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: var(--green);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
    }
    .process-step-content h3 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 4px;
      color: var(--dark);
    }
    .process-step-content p {
      font-size: 15px;
      line-height: 1.65;
      margin: 0;
      color: var(--text-light);
    }

    /* Same-Day urgency section */
    .same-day-section {
      background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
      border-top: 3px solid var(--green);
      border-bottom: 3px solid var(--green);
    }
    .same-day-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .same-day-inner h2 {
      font-size: 34px;
      font-weight: 900;
      margin-bottom: 20px;
    }
    .same-day-inner p {
      font-size: 16px;
      line-height: 1.85;
      margin-bottom: 18px;
    }
    .same-day-phone {
      display: inline-block;
      font-size: 36px;
      font-weight: 900;
      color: var(--green);
      margin: 16px 0;
      letter-spacing: -0.5px;
    }
    .same-day-phone a { color: var(--green); text-decoration: none; }
    .same-day-phone a:hover { text-decoration: underline; }

    /* Testimonials — italic quotes, not cards */
    .testimonial-visual {
      margin-bottom: 40px;
      border-radius: 12px;
      overflow: hidden;
    }
    .testimonial-visual img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 12px;
    }
    .testimonial-item {
      padding: 28px 0;
      border-bottom: 1px solid #e8e8e8;
    }
    .testimonial-item:last-child { border-bottom: none; }
    .testimonial-stars {
      color: #f5d800;
      font-size: 16px;
      margin-bottom: 10px;
      letter-spacing: 2px;
    }
    .testimonial-item blockquote {
      font-size: 16px;
      line-height: 1.8;
      font-style: italic;
      color: var(--text);
      margin: 0 0 10px 0;
      padding: 0;
      border: none;
    }
    .testimonial-item cite {
      font-size: 15px;
      font-weight: 700;
      font-style: normal;
      color: var(--green);
    }

    @media (max-width: 991px) {
      .content-flow-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
      .content-flow-image img { height: 320px; }
    }
    @media (max-width: 768px) {
      .content-flow-grid { grid-template-columns: 1fr; gap: 24px; }
      .content-flow-grid.reverse { direction: ltr; }
      .content-flow-image img { height: 260px; }
      .content-flow-text h2 { font-size: 28px; }
      .same-day-inner h2 { font-size: 28px; }
      .same-day-phone { font-size: 28px; }
      .testimonial-visual img { height: 200px; }
    }