  :root {
    --blue: #1B6CB5;
    --blue-dark: #144f87;
    --blue-light: #2c83d5;
    --blue-pale: #E8F2FC;
    --charcoal: #1E2A35;
    --charcoal-mid: #2D3E4E;
    --white: #ffffff;
    --off-white: #F7F9FC;
    --gray-100: #EEF1F5;
    --gray-300: #C5CDD6;
    --gray-500: #7A8899;
    --gray-700: #3D4F5C;
    --green: #2E7D32;
    --green-light: #E8F5E9;
    --font-head: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
    --shadow: 0 4px 16px rgba(0,0,0,0.09);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
    --blue-shadow: 0 4px 18px rgba(27,108,181,0.22);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.6; }

  /* ===== ANNOUNCEMENT BAR ===== */
  .announcement-bar {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    text-align: center;
    padding: 9px 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .announcement-bar a {
    color: #7DC3F5;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
  }
  .announcement-bar a:hover { text-decoration: underline; }

  /* ===== NAV ===== */
  nav {
    background: var(--white);
    border-bottom: 2px solid var(--blue);
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
  }

  .nav-logo-fallback-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 8px;
    color: var(--white);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    white-space: nowrap;
    margin-left: 10px;
  }

  .nav-logo-name em {
    font-style: normal;
    color: var(--blue);
  }

  @media (max-width: 1399px) {
    .nav-logo-name { display: none; }
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all 0.15s;
    white-space: nowrap;
  }

  .nav-links a:hover { background: var(--blue-pale); color: var(--blue-dark); }

  .nav-links .nav-rentals {
    color: var(--green) !important;
    background: var(--green-light) !important;
    font-weight: 700 !important;
    border: 1.5px solid #b2dfb4;
  }

  .nav-links .nav-rentals:hover { background: #c8e6c9 !important; }

  .nav-links .nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 9px 18px !important;
    margin-left: 8px;
    border-radius: var(--radius);
  }

  .nav-links .nav-cta:hover { background: var(--blue-dark) !important; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }

  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 1150px) {
    .nav-toggle { display: flex; }

    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      background: var(--white);
      padding: 0.75rem 1rem 1.25rem;
      box-shadow: var(--shadow-lg);
      max-height: calc(100vh - 60px);
      overflow-y: auto;
    }

    .nav-links.open { display: flex; }

    .nav-links a { padding: 12px 10px; }

    .nav-links .nav-rentals { margin-top: 12px; }

    .nav-links .nav-cta { margin-left: 0; margin-top: 10px; text-align: center; }
  }

  /* ===== RENTERS BANNER ===== */
  .renters-banner {
    background: linear-gradient(135deg, #1B4F72 0%, var(--blue) 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .renters-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
  }

  .renters-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }

  .renters-banner-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .renters-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.25);
  }

  .renters-text h2 {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: var(--font-head);
  }

  .renters-text p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
  }

  .renters-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
  }

  .btn-renters-primary {
    background: var(--white);
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: var(--blue-shadow);
  }

  .btn-renters-primary:hover { background: #f0f7ff; transform: translateY(-1px); }

  .btn-renters-outline {
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
    white-space: nowrap;
  }

  .btn-renters-outline:hover { border-color: rgba(255,255,255,0.8); color: white; }

  /* ===== HERO ===== */
  .hero {
    background: var(--off-white);
    padding: 4.5rem 2rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--blue);
  }

  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-weight: 700;
  }

  .hero h1 span { color: var(--blue); }

  .hero-desc {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .btn-primary {
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary:hover { background: var(--blue-dark); box-shadow: var(--blue-shadow); transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 2px solid var(--blue);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover { background: var(--blue-pale); }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-badges-footnote {
    font-size: 11.5px;
    color: var(--gray-500);
    margin-top: 8px;
  }

  .hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--gray-700);
  }

  .hero-badge-icon {
    width: 28px;
    height: 28px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }

  /* Hero sidebar card */
  .hero-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
  }

  .sidebar-header {
    background: var(--blue);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sidebar-header-icon { font-size: 20px; }

  .sidebar-header-text { color: var(--white); font-weight: 700; font-size: 14.5px; }

  .sidebar-header-sub { color: rgba(255,255,255,0.7); font-size: 12px; margin-top: 1px; }

  .sidebar-body { padding: 1.5rem; }

  .sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .sidebar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
  }

  .sidebar-check {
    width: 18px;
    height: 18px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--green);
    flex-shrink: 0;
    font-weight: 700;
  }

  .sidebar-divider { border: none; border-top: 1px solid var(--gray-100); margin: 1.25rem 0; }

  .sidebar-phone-row { display: flex; align-items: center; gap: 12px; }

  .sidebar-phone-icon {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .sidebar-phone-info { display: flex; flex-direction: column; }

  .sidebar-phone-number {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 16px;
    text-decoration: none;
  }

  .sidebar-phone-number:hover { color: var(--blue); }

  .sidebar-phone-label { font-size: 12px; color: var(--gray-500); }

  .sidebar-cta {
    margin-top: 1rem;
    display: block;
    text-align: center;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    padding: 11px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
  }

  .sidebar-cta:hover { background: var(--blue-dark); }

  .sidebar-guarantee {
    margin-top: 1rem;
    background: var(--green-light);
    border: 1px solid #b2dfb4;
    border-radius: var(--radius);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--green);
    font-weight: 600;
  }

  /* ===== AVAILABLE UNITS ===== */
  .units-section {
    background: var(--white);
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--gray-100);
  }

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

  .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .section-desc {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
  }

  .section-header {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .section-header-left { flex: 1; }

  /* ===== APPFOLIO EMBED ===== */
  .appfolio-embed-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    background: var(--white);
    min-height: 520px;
  }

  /* ===== SERVICES ===== */
  .services {
    background: var(--off-white);
    padding: 5rem 2rem;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
  }

  .service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    border: 1px solid var(--gray-100);
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .service-card:hover { box-shadow: var(--shadow); border-color: rgba(27,108,181,0.25); }

  .service-icon-box {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(27,108,181,0.12);
  }

  .service-text-block h3 { font-size: 14.5px; font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }

  .service-text-block p { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

  /* ===== GUARANTEE STRIP ===== */
  .guarantee-strip {
    background: var(--charcoal);
    padding: 1.75rem 2rem;
  }

  .guarantee-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .guarantee-left { display: flex; align-items: center; gap: 1rem; }

  .guarantee-icon-big { font-size: 2rem; line-height: 1; }

  .guarantee-text h3 { color: var(--white); font-weight: 700; font-size: 16px; margin-bottom: 2px; }

  .guarantee-text p { color: rgba(255,255,255,0.6); font-size: 13px; }

  .guarantee-strip a {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .guarantee-strip a:hover { background: var(--blue-light); }

  /* ===== WHY US ===== */
  .why-us { padding: 5rem 2rem; background: var(--white); }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  .why-list { display: flex; flex-direction: column; gap: 0; }

  .why-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .why-item:first-child { padding-top: 0; }
  .why-item:last-child { border-bottom: none; }

  .why-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-pale);
    line-height: 1;
    font-family: var(--font-head);
    min-width: 2.5rem;
    padding-top: 2px;
  }

  .why-content h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 5px; }

  .why-content p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

  /* ===== PORTAL PREVIEW (AppFolio-style light theme) ===== */
  .portal-preview-box {
    background: #f4f5f7;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    font-family: var(--font-body);
  }

  .portal-light-header {
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .portal-light-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
  }

  .portal-light-brand img {
    height: 26px;
    width: auto;
    object-fit: contain;
  }

  .portal-light-user {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--gray-500);
  }

  .portal-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FFF3E0;
    color: #E65100;
    border: 1px solid #FFCC80;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
  }

  .portal-light-body {
    display: flex;
    min-height: 340px;
  }

  .portal-light-sidebar {
    width: 110px;
    background: #1E2A35;
    flex-shrink: 0;
    padding: 10px 0;
  }

  .portal-nav-item {
    padding: 9px 14px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
    cursor: default;
    transition: all 0.1s;
  }

  .portal-nav-item:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); }
  .portal-nav-item.active { color: var(--white); background: rgba(255,255,255,0.1); font-weight: 600; border-left: 3px solid var(--blue-light); padding-left: 11px; }

  .portal-light-main {
    flex: 1;
    padding: 14px 16px;
    overflow: hidden;
  }

  .portal-light-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
  }

  .portal-kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .portal-kpi-card {
    background: var(--white);
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #e8e8e8;
    border-left-width: 4px;
  }

  .portal-kpi-card.green-border { border-left-color: #2E7D32; }
  .portal-kpi-card.red-border   { border-left-color: #C62828; }
  .portal-kpi-card.blue-border  { border-left-color: var(--blue); }

  .pkpi-amount { font-size: 15px; font-weight: 800; margin-bottom: 1px; }
  .pkpi-amount.green { color: #2E7D32; }
  .pkpi-amount.red   { color: #C62828; }
  .pkpi-amount.blue  { color: var(--blue); }

  .pkpi-label { font-size: 10px; color: var(--gray-500); }

  .portal-gauge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .portal-gauge-card {
    background: var(--white);
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #e8e8e8;
    text-align: center;
  }

  .gauge-card-title {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
    text-align: left;
  }

  .gauge-card-sub {
    font-size: 9.5px;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-align: left;
  }

  /* ===== AREAS ===== */
  .areas {
    padding: 4rem 2rem;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
  }

  .areas-wrap { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }

  .area-tag {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 13.5px;
    color: var(--gray-700);
    transition: all 0.15s;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }

  .area-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); cursor: default; }
  .area-tag.primary { background: var(--blue); color: var(--white); border-color: var(--blue); font-weight: 600; }

  /* ===== TESTIMONIALS ===== */
  .testimonials { padding: 5rem 2rem; background: var(--white); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testimonial {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    background: var(--off-white);
  }

  .testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }

  .star { color: #F9A825; font-size: 14px; }

  .testimonial-body { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }

  .testimonial-author { font-weight: 700; color: var(--charcoal); font-size: 14px; }

  .testimonial-role { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }

  /* ===== FAQ ===== */
  .faq {
    padding: 5rem 2rem;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
  }

  .faq-col { max-width: 780px; margin-top: 2.5rem; }

  .faq-item {
    border: 1px solid var(--gray-100);
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
  }

  .faq-q {
    padding: 1.1rem 1.4rem;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--charcoal);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
  }

  .faq-q::after { content: '+'; font-size: 18px; color: var(--blue); font-weight: 400; flex-shrink: 0; }

  .faq-a { padding: 0 1.4rem 1.1rem; font-size: 14px; color: var(--gray-500); line-height: 1.7; }

  /* ===== CONTACT ===== */
  .contact {
    padding: 5rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info .section-desc { max-width: 100%; }

  .contact-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

  .contact-item { display: flex; align-items: center; gap: 1rem; }

  .ci-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(27,108,181,0.15);
  }

  .ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-500); margin-bottom: 2px; }
  .ci-value { font-size: 15px; font-weight: 600; color: var(--charcoal); text-decoration: none; }
  .ci-value:hover { color: var(--blue); }

  .contact-form-box {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
  }

  .contact-form-box h3 { font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 1.5rem; font-family: var(--font-head); }

  .form-group { margin-bottom: 1rem; }

  .form-label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-700); letter-spacing: 0.3px; text-transform: uppercase; margin-bottom: 5px; }

  .form-field {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 10px 13px;
    font-size: 14px;
    color: var(--charcoal);
    font-family: var(--font-body);
    transition: border-color 0.15s;
    outline: none;
  }

  .form-field:focus { border-color: var(--blue); }
  .form-field::placeholder { color: var(--gray-300); }
  textarea.form-field { height: 90px; resize: none; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .sms-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
  }

  .sms-consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--blue);
  }

  .sms-consent-label span {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray-500);
  }

  .sms-consent-label a {
    color: var(--blue);
    text-decoration: underline;
  }

  .form-submit {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--blue-dark); }

  /* ===== FOOTER ===== */
  footer { background: var(--charcoal); padding: 3.5rem 2rem 1.5rem; }

  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }

  .footer-logo-col img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
  }

  .footer-logo-col p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 240px; }

  .footer-col-head { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

  .footer-col a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 13.5px; transition: color 0.15s; }

  .footer-col a:hover { color: rgba(255,255,255,0.85); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; }
  .footer-legal a:hover { color: rgba(255,255,255,0.65); }

  /* ===== PHOTO GALLERY ===== */
  .photo-gallery {
    padding: 0;
    overflow: hidden;
  }
  .photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 280px;
  }
  .photo-gallery-item {
    position: relative;
    overflow: hidden;
  }
  .photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .photo-gallery-item:hover img { transform: scale(1.04); }
  .photo-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,40,53,0.45) 0%, transparent 55%);
    pointer-events: none;
  }
  .photo-gallery-caption {
    position: absolute;
    bottom: 14px;
    left: 16px;
    color: rgba(255,255,255,0.88);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1;
    text-transform: uppercase;
  }
  @media (max-width: 768px) {
    .photo-gallery-grid { grid-template-columns: 1fr 1fr; height: 340px; }
  }
  @media (max-width: 480px) {
    .photo-gallery-grid { grid-template-columns: 1fr 1fr; height: 260px; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-sidebar { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .portal-preview-box { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    nav { padding: 0 1rem; }
    .renters-banner-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .announcement-bar {
      font-size: 12px;
      flex-wrap: wrap;
      row-gap: 4px;
      column-gap: 10px;
    }
  }

/* ===== BLOG ===== */
.post-list {
  display: grid;
  gap: 1.25rem;
  max-width: 780px;
}

.post-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.post-card:hover { box-shadow: var(--shadow); border-color: rgba(27,108,181,0.25); }

.post-card-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.post-card-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.post-card-desc {
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.post-card-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 13.5px;
}

.blog-article {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.8;
}

.blog-article h2 {
  font-family: var(--font-head);
  color: var(--charcoal);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.blog-article p { margin-bottom: 1.1rem; }

.blog-article ul, .blog-article ol {
  margin: 0 0 1.1rem 1.25rem;
}

.blog-article li { margin-bottom: 0.4rem; }

.blog-article a { color: var(--blue); }

.blog-article hr {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 2rem 0;
}
