.branch-hero {
      background: var(--dark);
      min-height: 480px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .branch-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 90% at 30% 50%, rgba(255,91,105,.12) 0%, transparent 70%);
    }
    .branch-hero-content { position: relative; z-index: 1; }
    .branch-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,91,105,.15);
      color: var(--brand);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid rgba(255,91,105,.3);
      margin-bottom: 16px;
    }
    .branch-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
    .branch-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; line-height: 1.15; }
    .branch-hero .sub { color: rgba(255,255,255,.55); font-size: 1rem; margin-top: 12px; max-width: 480px; }
    .hero-meta { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
    .hero-meta-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; }
    .hero-meta-item i { color: var(--brand); font-size: 16px; }
 
    /* QUICK INFO CARD */
    .quick-info-card {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 28px;
      box-shadow: 0 8px 40px rgba(0,0,0,.12);
    }
    .quick-info-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; }
    .info-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
    .info-row i { color: var(--brand); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .info-row strong { display: block; font-weight: 600; color: #222; }
    .info-row span { color: #666; font-size: 13px; }
    .btn-primary-brand { background: var(--brand); color: #fff; font-weight: 700; font-size: 14px; border: none; border-radius: 8px; padding: 13px 24px; width: 100%; text-align: center; display: block; text-decoration: none; transition: background .2s; }
    .btn-primary-brand:hover { background: var(--brand-dark); color: #fff; }
    .btn-outline-brand { background: transparent; color: var(--brand); font-weight: 700; font-size: 14px; border: 2px solid var(--brand); border-radius: 8px; padding: 11px 24px; width: 100%; text-align: center; display: block; text-decoration: none; transition: all .2s; margin-top: 8px; }
    .btn-outline-brand:hover { background: var(--brand); color: #fff; }
 
    /* AMENITIES */
    .amenity-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
    .amenity-item:last-child { border-bottom: none; }
    .amenity-item i { color: var(--brand); font-size: 18px; width: 22px; flex-shrink: 0; }
 
    /* NEARBY */
    .nearby-pill { display: inline-flex; align-items: center; gap: 6px; background: #f5f5f5; border-radius: 100px; padding: 6px 14px; font-size: 13px; color: #444; margin: 4px; }
    .nearby-pill i { color: var(--brand); font-size: 14px; }
 
    /* SECTION STYLES */
    .section-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
    .section-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
 
    /* CTA STRIP */
    .cta-strip { background: var(--brand); padding: 48px 0; }
    .cta-strip h2 { color: #fff; font-weight: 800; font-size: 1.8rem; margin-bottom: 8px; }
    .cta-strip p { color: rgba(255,255,255,.8); margin-bottom: 0; }
    .btn-white { background: #fff; color: var(--brand); font-weight: 700; font-size: 14px; border-radius: 8px; padding: 13px 28px; text-decoration: none; display: inline-block; transition: all .2s; }
    .btn-white:hover { background: var(--dark); color: #fff; }
 


    .btn-trial:hover { background: var(--brand-dark); color: #fff; }
 
    /* ── HERO ── */
    .locations-hero {
      background: var(--dark);
      padding: 90px 0 70px;
      position: relative;
      overflow: hidden;
    }
    .locations-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,91,105,.13) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(255,91,105,.15);
      color: var(--brand);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      border: 1px solid rgba(255,91,105,.3);
      margin-bottom: 20px;
    }
    .locations-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
    }
    .locations-hero h1 span { color: var(--brand); }
    .locations-hero p {
      color: rgba(255,255,255,.6);
      font-size: 1.1rem;
      max-width: 520px;
    }
 
    /* ── LOCATION CARDS ── */
    .location-card {
      border-radius: var(--card-radius);
      overflow: hidden;
      border: 1px solid #e8e8e8;
      transition: transform .25s, box-shadow .25s;
      height: 100%;
    }
    .location-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,.12);
    }
    .location-card-img {
      height: 240px;
      object-fit: cover;
      width: 100%;
      background: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #aaa;
    }
    .location-card-img.downtown-bg {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
    }
    .location-card-img.parkside-bg {
      background: linear-gradient(135deg, #0d2137 0%, #1a3a52 100%);
    }
    .img-placeholder-label {
      text-align: center;
      color: rgba(255,255,255,.4);
      font-size: 13px;
    }
    .img-placeholder-label strong {
      display: block;
      color: rgba(255,255,255,.7);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .location-card-body { padding: 28px; }
    .branch-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 8px;
      display: block;
    }
    .location-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .location-card .area-label {
      color: var(--text-muted-custom);
      font-size: .9rem;
      margin-bottom: 16px;
    }
    .feature-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      color: #444;
      background: #f5f5f5;
      border-radius: 100px;
      padding: 5px 12px;
      margin: 3px 3px 3px 0;
    }
    .feature-pill i { color: var(--brand); font-size: 14px; }
    .divider-subtle { border-top: 1px solid #f0f0f0; margin: 20px 0; }
    .address-line {
      font-size: .875rem;
      color: #555;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .address-line i { color: var(--brand); margin-top: 2px; flex-shrink: 0; }
    .btn-visit {
      background: var(--brand);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      text-decoration: none;
      display: inline-block;
      transition: background .2s;
    }
    .btn-visit:hover { background: var(--brand-dark); color: #fff; }
    .btn-visit-outline {
      background: transparent;
      color: var(--brand);
      font-weight: 700;
      font-size: 14px;
      border: 2px solid var(--brand);
      border-radius: 8px;
      padding: 10px 20px;
      text-decoration: none;
      display: inline-block;
      transition: all .2s;
    }
    .btn-visit-outline:hover { background: var(--brand); color: #fff; }
 
    /* ── COMPARE TABLE ── */
    .compare-section { background: #f8f9fb; }
    .compare-table th {
      background: var(--dark);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 16px 20px;
    }
    .compare-table th:first-child { border-radius: 0; }
    .compare-table td {
      padding: 14px 20px;
      font-size: 14px;
      border-bottom: 1px solid #eee;
      vertical-align: middle;
    }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table td:not(:first-child) { text-align: center; }
    .compare-table .feature-col { font-weight: 500; color: #333; }
    .check-yes { color: #28a745; font-size: 18px; }
    .check-no  { color: #ccc; font-size: 18px; }
    .coming-soon-badge {
      font-size: 11px;
      background: #fff3cd;
      color: #856404;
      border-radius: 100px;
      padding: 2px 10px;
      font-weight: 600;
    }
 
    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--brand);
      padding: 28px 0;
    }
    .stat-item { text-align: center; }
    .stat-item .stat-num {
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .stat-item .stat-label {
      font-size: 13px;
      color: rgba(255,255,255,.8);
      margin-top: 4px;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,.25);
      height: 40px;
      margin: auto;
    }
 
    /* ── MAP SECTION ── */
    .map-section { background: #fff; }
    .map-tab-btn {
      border: 2px solid #e0e0e0;
      background: #fff;
      color: #555;
      font-weight: 600;
      font-size: 14px;
      border-radius: 8px;
      padding: 10px 24px;
      cursor: pointer;
      transition: all .2s;
    }
    .map-tab-btn.active {
      border-color: var(--brand);
      background: var(--brand);
      color: #fff;
    }
    .map-embed {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e0e0e0;
    }
    .map-placeholder {
      height: 360px;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      color: #aaa;
    }
    .map-placeholder i { font-size: 36px; color: var(--brand); opacity: .5; }
 
    /* ── CTA ── */
    .cta-section {
      background: var(--dark);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,91,105,.07);
      top: -150px; right: -100px;
      pointer-events: none;
    }
    .cta-section h2 { color: #fff; font-weight: 800; font-size: 2rem; }
    .cta-section p  { color: rgba(255,255,255,.6); }
    .btn-cta-white {
      background: #fff;
      color: var(--dark);
      font-weight: 800;
      font-size: 14px;
      border-radius: 8px;
      padding: 14px 28px;
      text-decoration: none;
      display: inline-block;
      transition: all .2s;
    }
    .btn-cta-white:hover { background: var(--brand); color: #fff; }
 