  .theme-commercial *, .theme-commercial *::before, .theme-commercial *::after { box-sizing: border-box; }

  :root {
    --blue-primary: #0A3E91;
    --blue-royal: #1D5FD0;
    --blue-accent: #3D8BFF;
    --navy: #11294D;
    --white: #FFFFFF;
    --gray-light: #F4F6F8;
    --gray-mid: #E2E8F0;
    --gray-text: #64748b;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  .theme-commercial { scroll-behavior: smooth; }

  .theme-commercial {
    font-family: 'Open Sans', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ===================== NAV ===================== */
  .theme-commercial header {
    background: rgba(10, 62, 145, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: box-shadow var(--transition);
    position: relative;
    z-index: 1000;
  }

  .theme-commercial nav.scrolled { box-shadow: 0 4px 32px rgba(10,62,145,0.3); }

  .theme-commercial .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .theme-commercial .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
  }
  .theme-commercial .nav-logo-icon {
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--blue-primary);
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .theme-commercial .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
  .theme-commercial .nav-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .theme-commercial .nav-logo-name span { color: var(--blue-accent); }
  .theme-commercial .nav-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .theme-commercial .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
  .theme-commercial .nav-links a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
  }
  .theme-commercial .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); }

  /* Dropdown */
  .theme-commercial .nav-item-commercial { position: relative; }
  .theme-commercial .nav-item-commercial.dropdown > a::after { content: ' ▾'; font-size: 0.65rem; border-top: none }
  .theme-commercial .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(10,62,145,0.2), 0 4px 16px rgba(0,0,0,0.1);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--gray-mid);
  }
  .theme-commercial .nav-item-commercial.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    /*transform: translateX(-50%) translateY(0);*/
  }
  .theme-commercial .dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--navy) !important;
    font-size: 0.82rem !important;
    border-radius: 8px;
    background: transparent !important;
  }
  .theme-commercial .dropdown-menu a:hover { background: var(--gray-light) !important; color: var(--blue-primary) !important; }

  .theme-commercial .nav-cta {
    background: var(--white) !important;
    color: var(--blue-primary) !important;
    border-radius: 8px !important;
    padding: 0.55rem 1.25rem !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .theme-commercial .nav-cta:hover { background: var(--gray-light) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

  .theme-commercial .nav-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .theme-commercial .nav-phone:hover { color: var(--white); }

  .theme-commercial .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  /* ===================== HERO ===================== */
  .theme-commercial .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /*padding-top: 72px;*/
  }

  .theme-commercial .hero-split {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .theme-commercial .hero-left {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-primary) 50%, var(--blue-royal) 100%);
    position: relative;
    overflow: hidden;
  }
  .theme-commercial .hero-left::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=900&q=80') center/cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: luminosity;
  }
  .theme-commercial .hero-right {
    background: #e8edf5;
    position: relative;
    overflow: hidden;
  }
  .theme-commercial .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=900&q=80') center/cover no-repeat;
    opacity: 0.55;
  }
  .theme-commercial .hero-right::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to left, transparent 30%, rgba(244,246,248,0.5) 100%);
  }

  /* Diagonal divider */
  .theme-commercial .hero-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .theme-commercial .hero-divider::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--white) 20%, var(--white) 80%, transparent);
    transform: skewX(-6deg);
  }
  .theme-commercial .hero-divider-badge {
    position: relative;
    z-index: 3;
    width: 70px; height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--blue-primary);
    box-shadow: 0 8px 32px rgba(10,62,145,0.3);
    border: 3px solid var(--blue-accent);
  }

  .theme-commercial .hero-content {
    position: relative;
    z-index: 5;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 72px);
  }

  .theme-commercial .hero-left-content { padding-right: 4rem; }
  .theme-commercial .hero-right-content { padding-left: 4rem; }

  .theme-commercial .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
  }
  .theme-commercial .hero-left-content .hero-eyebrow {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
  }
  .theme-commercial .hero-right-content .hero-eyebrow {
    background: rgba(10,62,145,0.08);
    color: var(--blue-primary);
    border: 1px solid rgba(10,62,145,0.15);
  }

  .theme-commercial .hero-h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .theme-commercial .hero-left-content .hero-h1 { color: var(--white); }
  .theme-commercial .hero-right-content .hero-h1 { color: var(--navy); }

  .theme-commercial .hero-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    display: block;
    margin-bottom: 0.75rem;
  }
  .theme-commercial .hero-left-content .hero-script { color: rgba(255,255,255,0.85); }
  .theme-commercial .hero-right-content .hero-script { color: var(--blue-royal); }

  .theme-commercial .hero-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
  }
  .theme-commercial .hero-left-content .hero-desc { color: rgba(255,255,255,0.75); }
  .theme-commercial .hero-right-content .hero-desc { color: var(--gray-text); }

  .theme-commercial .hero-services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .theme-commercial .hero-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.9);
  }
  .theme-commercial .hero-service-tag::before {
    content: '✓';
    width: 20px; height: 20px;
    background: var(--blue-accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
  }

  .theme-commercial .hero-res-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .theme-commercial .hero-res-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--navy);
  }
  .theme-commercial .hero-res-feature::before {
    content: '✓';
    width: 20px; height: 20px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    color: white;
    flex-shrink: 0;
  }

  .theme-commercial .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
  }
  .theme-commercial .btn-white {
    background: var(--white);
    color: var(--blue-primary);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  }
  .theme-commercial .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }
  .theme-commercial .btn-blue {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(10,62,145,0.3);
  }
  .theme-commercial .btn-blue:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(10,62,145,0.4); }
  .theme-commercial .btn-outline-white {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 2px solid rgba(255,255,255,0.3);
  }
  .theme-commercial .btn-outline-white:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

  .theme-commercial .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  /* Hero bottom band */
  .theme-commercial .hero-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 6;
    background: var(--white);
    border-top: 3px solid var(--blue-accent);
    display: flex;
    justify-content: center;
  }
  .theme-commercial .hero-stats {
    max-width: 1280px;
    width: 100%;
    padding: 1.25rem 2rem;
    display: flex;
    gap: 0;
    align-items: stretch;
  }
  .theme-commercial .hero-stat {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--gray-mid);
  }
  .theme-commercial .hero-stat:last-child { border-right: none; }
  .theme-commercial .hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--blue-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .theme-commercial .hero-stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--gray-text);
    letter-spacing: 0.02em;
  }

  /* ===================== SEARCH BAR ===================== */
  .theme-commercial .search-section {
    background: var(--navy);
    padding: 2.5rem 2rem 3rem;
  }
  .theme-commercial .search-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  .theme-commercial .search-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }
  .theme-commercial .search-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
  }
  .theme-commercial .search-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .theme-commercial .search-tab {
    padding: 0.5rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border-radius: 7px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
  }
  .theme-commercial .search-tab.active { background: var(--blue-primary); color: var(--white); }
  .theme-commercial .search-tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,0.08); }

  .theme-commercial .search-bar {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  }
  .theme-commercial .search-bar input, .theme-commercial .search-bar select {
    flex: 1;
    padding: 1rem 1.25rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    border: none;
    outline: none;
    background: transparent;
    border-right: 1px solid var(--gray-mid);
  }
  .theme-commercial .search-bar select { cursor: pointer; max-width: 180px; }
  .theme-commercial .search-bar button {
    padding: 1rem 2rem;
    background: var(--blue-primary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }
  .theme-commercial .search-bar button:hover { background: var(--navy); }

  /* ===================== JOURNEYS ===================== */
  .theme-commercial .journeys {
    padding: 5rem 2rem;
    background: var(--gray-light);
  }
  .theme-commercial .section-header {
    max-width: 1280px;
    margin: 0 auto 3rem;
    text-align: center;
  }
  .theme-commercial .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-royal);
    margin-bottom: 0.75rem;
  }
  .theme-commercial .section-eyebrow::before, .theme-commercial .section-eyebrow::after {
    content: '';
    width: 32px; height: 2px;
    background: var(--blue-royal);
    border-radius: 2px;
  }
  .theme-commercial .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
  }
  .theme-commercial .section-title span { color: var(--blue-primary); }
  .theme-commercial .section-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .theme-commercial .journeys-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .theme-commercial .journey-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10,62,145,0.07);
    border: 1px solid var(--gray-mid);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
  }
  .theme-commercial .journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10,62,145,0.15);
    border-color: var(--blue-primary);
  }
  .theme-commercial .journey-card-top {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
  }
  .theme-commercial .journey-card:nth-child(1) .journey-card-top { background: linear-gradient(135deg, #0A3E91, #1D5FD0); }
  .theme-commercial .journey-card:nth-child(2) .journey-card-top { background: linear-gradient(135deg, #11294D, #0A3E91); }
  .theme-commercial .journey-card:nth-child(3) .journey-card-top { background: linear-gradient(135deg, #1D5FD0, #3D8BFF); }
  .theme-commercial .journey-card:nth-child(4) .journey-card-top { background: linear-gradient(135deg, #0A3E91, #11294D); }
  .theme-commercial .journey-card-icon {
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.2);
  }
  .theme-commercial .journey-card-body { padding: 1.5rem; flex: 1; }
  .theme-commercial .journey-card-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-royal);
    margin-bottom: 0.4rem;
  }
  .theme-commercial .journey-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }
  .theme-commercial .journey-card-desc {
    font-size: 0.82rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .theme-commercial .journey-card-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--blue-primary);
    text-transform: uppercase;
    margin-top: auto;
  }
  .theme-commercial .journey-card-link svg { transition: transform var(--transition); }
  .theme-commercial .journey-card:hover .journey-card-link svg { transform: translateX(4px); }

  /* ===================== SPLIT COMMERCIAL/RESIDENTIAL ===================== */
  .theme-commercial .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .theme-commercial .split-panel {
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .theme-commercial .split-panel-commercial {
    background: var(--navy);
  }
  .theme-commercial .split-panel-commercial::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=800&q=70') center/cover no-repeat;
    opacity: 0.12;
  }
  .theme-commercial .split-panel-residential {
    background: var(--gray-light);
  }
  .theme-commercial .split-panel-residential::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=800&q=70') center/cover no-repeat;
    opacity: 0.15;
  }
  .theme-commercial .split-panel > * { position: relative; z-index: 2; }
  .theme-commercial .split-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    width: fit-content;
  }
  .theme-commercial .split-panel-commercial .split-badge { background: rgba(61,139,255,0.2); color: var(--blue-accent); border: 1px solid rgba(61,139,255,0.3); }
  .theme-commercial .split-panel-residential .split-badge { background: rgba(10,62,145,0.1); color: var(--blue-primary); border: 1px solid rgba(10,62,145,0.2); }
  .theme-commercial .split-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .theme-commercial .split-panel-commercial .split-title { color: var(--white); }
  .theme-commercial .split-panel-residential .split-title { color: var(--navy); }
  .theme-commercial .split-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }
  .theme-commercial .split-panel-commercial .split-desc { color: rgba(255,255,255,0.7); }
  .theme-commercial .split-panel-residential .split-desc { color: var(--gray-text); }
  .theme-commercial .split-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .theme-commercial .split-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
  }
  .theme-commercial .split-panel-commercial .split-feature { color: rgba(255,255,255,0.85); }
  .theme-commercial .split-panel-residential .split-feature { color: var(--navy); }
  .theme-commercial .split-feature-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .theme-commercial .split-panel-commercial .split-feature-dot { background: var(--blue-accent); }
  .theme-commercial .split-panel-residential .split-feature-dot { background: var(--blue-primary); }

  /* ===================== WHY CHOOSE US ===================== */
  .theme-commercial .why-section {
    padding: 5rem 2rem;
    background: var(--white);
  }
  .theme-commercial .pillars-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .theme-commercial .pillar-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-mid);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .theme-commercial .pillar-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-accent));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
  }
  .theme-commercial .pillar-card:hover { border-color: var(--blue-primary); box-shadow: 0 12px 40px rgba(10,62,145,0.1); }
  .theme-commercial .pillar-card:hover::before { transform: scaleX(1); }
  .theme-commercial .pillar-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-royal));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(10,62,145,0.25);
  }
  .theme-commercial .pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }
  .theme-commercial .pillar-desc {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.7;
  }

  /* ===================== FEATURED LISTINGS ===================== */
  .theme-commercial .listings-section {
    padding: 5rem 2rem;
    background: var(--gray-light);
  }
  .theme-commercial .listings-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 2.5rem;
    background: var(--white);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 12px rgba(10,62,145,0.08);
  }
  .theme-commercial .listing-tab {
    padding: 0.6rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 7px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
    color: var(--gray-text);
  }
  .theme-commercial .listing-tab.active { background: var(--blue-primary); color: var(--white); }
  .theme-commercial .listing-tab:hover:not(.active) { color: var(--navy); background: var(--gray-light); }

  .theme-commercial .listings-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .theme-commercial .listing-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,62,145,0.07);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--gray-mid);
  }
  .theme-commercial .listing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,62,145,0.15); }
  .theme-commercial .listing-img {
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .theme-commercial .listing-img-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    background: var(--gray-mid);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .theme-commercial .listing-card:hover .listing-img-bg { transform: scale(1.05); }
  .theme-commercial .listing-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    background: var(--blue-primary);
    color: var(--white);
  }
  .theme-commercial .listing-badge.commercial { background: var(--navy); }
  .theme-commercial .listing-price {
    position: absolute;
    bottom: 1rem; right: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    background: rgba(10,62,145,0.85);
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
  }
  .theme-commercial .listing-body { padding: 1.25rem 1.5rem 1.5rem; }
  .theme-commercial .listing-address {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
  }
  .theme-commercial .listing-city {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 0.9rem;
  }
  .theme-commercial .listing-specs {
    display: flex;
    gap: 1.25rem;
    font-size: 0.78rem;
    color: var(--gray-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-mid);
  }
  .theme-commercial .listing-spec { display: flex; align-items: center; gap: 0.3rem; }

  .theme-commercial .listings-cta { text-align: center; margin-top: 2.5rem; }

  /* ===================== AGENTS PREVIEW ===================== */
  .theme-commercial .agents-section {
    padding: 5rem 2rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .theme-commercial .agents-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(29,95,208,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .theme-commercial .agents-section .section-title { color: var(--white); }
  .theme-commercial .agents-section .section-desc { color: rgba(255,255,255,0.6); }
  .theme-commercial .agents-section .section-eyebrow { color: var(--blue-accent); }
  .agents-section .section-eyebrow::before,
  .theme-commercial .agents-section .section-eyebrow::after { background: var(--blue-accent); }

  .theme-commercial .agents-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .theme-commercial .agent-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(4px);
  }
  .theme-commercial .agent-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
  .theme-commercial .agent-photo {
    width: 180px;
    height: 180px;
    margin: 1.5rem auto 0;
    border-radius: 50%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(29,95,208,0.3), rgba(10,62,145,0.5));
    position: relative;
  }
  .theme-commercial .agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .theme-commercial .agent-initials {
    width: 80px; height: 80px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    border: 3px solid rgba(255,255,255,0.2);
  }
  .theme-commercial .agent-body { padding: 1.25rem 1rem; }
  .theme-commercial .agent-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .theme-commercial .agent-title {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }
  .theme-commercial .agent-specialty {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(61,139,255,0.2);
    color: var(--blue-accent);
    border: 1px solid rgba(61,139,255,0.3);
  }
  .theme-commercial .agents-cta { text-align: center; }

  /* ===================== TESTIMONIALS ===================== */
  .theme-commercial .testimonials-section {
    padding: 5rem 2rem;
    background: var(--white);
  }
  .theme-commercial .testimonials-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .theme-commercial .testimonial-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-mid);
    transition: var(--transition);
    position: relative;
  }
  .theme-commercial .testimonial-card:hover { border-color: var(--blue-primary); box-shadow: 0 12px 40px rgba(10,62,145,0.08); }
  .theme-commercial .testimonial-quote {
    font-size: 2.5rem;
    color: var(--blue-primary);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
  }
  .theme-commercial .testimonial-text {
    font-size: 0.88rem;
    color: var(--navy);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .theme-commercial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .theme-commercial .testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-royal));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--white);
    flex-shrink: 0;
  }
  .theme-commercial .testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.1rem;
  }
  .theme-commercial .testimonial-meta { font-size: 0.75rem; color: var(--gray-text); }
  .theme-commercial .testimonial-stars { color: #F59E0B; font-size: 0.8rem; letter-spacing: 0.05em; margin-top: 2px; }

  /* ===================== CTA SECTION ===================== */
  .theme-commercial .cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .theme-commercial .cta-section::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(61,139,255,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .theme-commercial .cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(29,95,208,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .theme-commercial .cta-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
  .theme-commercial .cta-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    display: block;
  }
  .theme-commercial .cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.05;
  }
  .theme-commercial .cta-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 2.5rem; line-height: 1.7; }
  .theme-commercial .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
  .theme-commercial .cta-contact {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
  }
  .theme-commercial .cta-contact a { color: var(--white); text-decoration: none; }
  .theme-commercial .cta-contact a:hover { text-decoration: underline; }

  /* ===================== OFFICE SECTION ===================== */
  .theme-commercial .office-section {
    padding: 4rem 2rem;
    background: var(--gray-light);
    border-top: 3px solid var(--blue-primary);
  }
  .theme-commercial .office-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .theme-commercial .office-info {}
  .theme-commercial .office-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-royal);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .theme-commercial .office-label::before { content: ''; width: 24px; height: 2px; background: var(--blue-royal); border-radius: 2px; }
  .theme-commercial .office-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
  }
  .theme-commercial .office-name span { color: var(--blue-primary); }
  .theme-commercial .office-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-style: italic;
  }
  .theme-commercial .office-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .theme-commercial .office-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .theme-commercial .office-detail-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-royal));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .theme-commercial .office-detail-text {}
  .theme-commercial .office-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 0.15rem;
  }
  .theme-commercial .office-detail-value {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 600;
  }
  .theme-commercial .office-detail-value a { color: var(--blue-primary); text-decoration: none; }
  .theme-commercial .office-detail-value a:hover { text-decoration: underline; }

  .theme-commercial .office-map {
    background: var(--gray-mid);
    border-radius: 16px;
    height: 360px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
    box-shadow: 0 8px 32px rgba(10,62,145,0.1);
  }
  .theme-commercial .office-map-placeholder {
    text-align: center;
    color: var(--gray-text);
  }
  .theme-commercial .office-map-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: var(--blue-primary);
  }
  .theme-commercial .office-map-placeholder small {
    font-size: 0.75rem;
    color: var(--gray-text);
    display: block;
    margin-top: 0.25rem;
  }

  /* ===================== FOOTER ===================== */
  .theme-commercial footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
  }
  .theme-commercial .footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
  .theme-commercial .footer-brand {}
  .theme-commercial .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
  }
  .theme-commercial .footer-logo-icon {
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--blue-primary);
    text-align: center;
    line-height: 1.1;
  }
  .theme-commercial .footer-logo-text {}
  .theme-commercial .footer-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
  }
  .theme-commercial .footer-logo-name span { color: var(--blue-accent); }
  .theme-commercial .footer-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
  }
  .theme-commercial .footer-tagline {
    font-style: italic;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.5);
  }
  .theme-commercial .footer-desc {
    font-size: 0.83rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .theme-commercial .footer-equal-housing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
  }
  .theme-commercial .footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
  }
  .theme-commercial .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .theme-commercial .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color var(--transition);
  }
  .theme-commercial .footer-links a:hover { color: var(--white); }
  .theme-commercial .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .theme-commercial .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
  .theme-commercial .footer-legal-links { display: flex; gap: 1.5rem; }
  .theme-commercial .footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
  }
  .theme-commercial .footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

  /* ===================== ANIMATIONS ===================== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .theme-commercial .fade-up {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  .theme-commercial .delay-1 { animation-delay: 0.1s; }
  .theme-commercial .delay-2 { animation-delay: 0.2s; }
  .theme-commercial .delay-3 { animation-delay: 0.3s; }
  .theme-commercial .delay-4 { animation-delay: 0.4s; }
  .theme-commercial .delay-5 { animation-delay: 0.5s; }
  .theme-commercial .delay-6 { animation-delay: 0.6s; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 1199.98px) {
  .theme-commercial .journeys-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-commercial .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-commercial .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-commercial .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-commercial .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 991.98px) {
    .theme-commercial .nav-phone { display: none; }
    .theme-commercial .navbar-collapse {
      background: var(--navy);
      padding: 1rem 0;
      border-radius: 12px;
      margin-top: 0.5rem;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }
    .theme-commercial .navbar-collapse .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
      width: 100%;
    }
    .theme-commercial .navbar-collapse .nav-links a {
      width: 100%;
      padding: 0.85rem 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      border-radius: 0;
    }
    .theme-commercial .navbar-collapse .nav-links a:hover {
      background: rgba(255,255,255,0.08);
    }
    .theme-commercial .nav-item-commercial.dropdown > a::after {
      float: right;
    }
    .theme-commercial .dropdown-menu {
      position: static;
      transform: none;
      width: 100%;
      background: rgba(255,255,255,0.03);
      border: none;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      display: none;
      padding: 0.5rem 0;
      border-radius: 0;
    }
    .theme-commercial .dropdown-menu.show {
      display: block;
    }
    .theme-commercial .dropdown-menu a {
      color: rgba(255,255,255,0.7) !important;
      border-bottom: none;
      padding: 0.6rem 2.5rem !important;
    }
  }

  @media (max-width: 768px) {
  .theme-commercial .hero-content { grid-template-columns: 1fr; gap: 0; padding: 3rem 1.5rem 7rem; }
  .theme-commercial .hero-split { grid-template-columns: 1fr; }
  .theme-commercial .hero-left-content { padding-right: 0; margin-bottom: 2.5rem; }
  .theme-commercial .hero-right-content { padding-left: 0; }
  .theme-commercial .hero-left { display: none; }
  .theme-commercial .hero-right { position: absolute; inset: 0; }
  .theme-commercial .hero-content { position: relative; z-index: 5; }
  .theme-commercial .hero-left-content { background: rgba(10,62,145,0.92); padding: 2rem; border-radius: 12px; }
  .theme-commercial .hero-divider { display: none; }
  .theme-commercial .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .theme-commercial .hero-stat { flex: none; width: calc(50% - 0.5rem); border-right: none; border-bottom: 1px solid var(--gray-mid); }
  .theme-commercial .hero-stat:last-child, .theme-commercial .hero-stat:nth-child(even) { border-bottom: none; }
  .theme-commercial .split-section { grid-template-columns: 1fr; }
  .theme-commercial .office-inner { grid-template-columns: 1fr; }
  .theme-commercial .testimonials-grid { grid-template-columns: 1fr; }
  .theme-commercial .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .theme-commercial .search-bar { flex-direction: column; border-radius: 12px; }
  .theme-commercial .search-bar input, .theme-commercial .search-bar select { border-right: none; border-bottom: 1px solid var(--gray-mid); }
  .theme-commercial .search-bar button { border-radius: 0 0 12px 12px; justify-content: center; }
  .theme-commercial .listings-grid { grid-template-columns: 1fr; }
  .theme-commercial .journeys-grid { grid-template-columns: 1fr; }
  .theme-commercial .pillars-grid { grid-template-columns: 1fr; }
  .theme-commercial .agents-grid { grid-template-columns: 1fr 1fr; }
  .theme-commercial .agent-photo { width: 140px; height: 140px; }
  }

  /* Mobile nav open */
  .theme-commercial .mobile-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
  }
  .theme-commercial .mobile-nav.open { display: flex; }
  .theme-commercial .mobile-nav a {
    display: block;
    padding: 0.85rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .theme-commercial .mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
  .theme-commercial .mobile-nav-cta {
    margin-top: 1rem;
    background: var(--blue-primary);
    color: var(--white) !important;
    text-align: center;
    border-radius: 10px !important;
    border-bottom: none !important;
  }


  .core_logo {
    width: 150px;
    max-width: 100%;
    object-fit: contain;
  }