.elementor-858 .elementor-element.elementor-element-6eeef44{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F7F4EE;
    --white: #FFFFFF;
    --navy: #101828;
    --slate: #334155;
    --muted: #64748B;
    --green: #12372A;
    --green-dark: #0B241B;
    --sage: #DDE7DF;
    --accent: #475569;
    --border: #E2E8F0;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--slate);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* TYPOGRAPHY */
  .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
  }
  h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--navy);
  }
  h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--navy);
  }
  h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--navy);
  }
  p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--slate);
  }
  .subheadline {
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 540px;
  }

  /* LAYOUT */
  .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 60px;
  }
  @media (max-width: 768px) {
    .container { padding: 0 22px; }
  }

  /* BUTTONS */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s ease;
    border: none;
  }
  .btn-primary {
    background: var(--green);
    color: #fff;
  }
  .btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18,55,42,0.25);
  }
  .btn-secondary {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
  }
  .btn-secondary:hover {
    background: var(--sage);
    transform: translateY(-2px);
  }
  .btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ===================== SECTION 1: HERO ===================== */
  #hero {
    background: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-left { display: flex; flex-direction: column; gap: 26px; }
  .hero-trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
  }
  .hero-trust-item::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }
  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-image-wrap {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(16,24,40,0.15);
    aspect-ratio: 4/3;
    background: #c8d8c9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #DDE7DF 0%, #B8CDBA 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .image-icon {
    width: 56px;
    height: 56px;
    opacity: 0.5;
  }

  /* ===================== SECTION 2: TRUST BAR ===================== */
  #trust-bar {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 5;
  }
  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 20px;
    box-shadow: 0 12px 50px rgba(16,24,40,0.09);
    overflow: hidden;
    margin-top: -40px;
  }
  .trust-item {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--border);
    background: var(--white);
  }
  .trust-item:last-child { border-right: none; }
  .trust-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .trust-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
  }

  /* ===================== SECTION 3: 5 REASONS ===================== */
  #reasons {
    background: var(--white);
    padding: 130px 0;
  }
  .section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 56px;
  }
  .section-header h2 { max-width: 680px; }
  .section-header .subheadline { max-width: 620px; }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .reason-card {
    background: var(--cream);
    padding: 34px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.28s ease;
  }
  .reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(16,24,40,0.1);
  }
  .card-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    opacity: 0.6;
  }

  /* ===================== SECTION 4: PAYMENT PLAN ===================== */
  #payment {
    background: var(--green);
    padding: 130px 0;
  }
  #payment .label { color: rgba(255,255,255,0.55); }
  #payment h2 { color: #fff; max-width: 600px; }
  #payment .subheadline { color: rgba(255,255,255,0.65); }
  .payment-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
  }
  .payment-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    transition: all 0.25s ease;
  }
  .payment-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
  }
  .payment-pct {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
  }
  .payment-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
  }
  .payment-note {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
  }

  /* ===================== SIGNATURE OFFER SECTION ===================== */
  #signature {
    background: var(--cream);
    padding: 130px 0;
  }
  .signature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .offer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .offer-col {
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .offer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .offer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
    line-height: 1.5;
  }
  .offer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 6px;
  }

  /* ===================== SECTION 5: COMMUNITY LIFESTYLE ===================== */
  #lifestyle {
    background: var(--white);
    padding: 130px 0;
  }
  .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .split-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(16,24,40,0.12);
    aspect-ratio: 4/3;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #DDE7DF 0%, #B8CDBA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    min-height: 340px;
  }
  .split-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--slate);
  }
  .bullet-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }

  /* ===================== SECTION 6: LOCATION ===================== */
  #location {
    background: var(--cream);
    padding: 130px 0;
  }

  /* ===================== SECTION 7: UNIT TYPES ===================== */
  #units {
    background: var(--white);
    padding: 130px 0;
  }
  .unit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .unit-card {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(16,24,40,0.05);
    transition: all 0.28s ease;
    display: flex;
    flex-direction: column;
  }
  .unit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(16,24,40,0.1);
  }
  .unit-image {
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, #DDE7DF 0%, #B8CDBA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.7;
  }
  .unit-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }
  .unit-type {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
  }
  .unit-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .unit-spec {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .spec-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
  }
  .spec-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
  }

  /* ===================== SECTION 8: GALLERY ===================== */
  #gallery {
    background: var(--cream);
    padding: 100px 0;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .gallery-item {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #DDE7DF 0%, #B8CDBA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.7;
    transition: transform 0.3s ease;
  }
  .gallery-item:hover { transform: scale(1.01); }
  .gallery-item:nth-child(3) { grid-column: span 2; aspect-ratio: 16/6; }

  /* ===================== SECTION 9: LEAD FORM ===================== */
  #lead-form {
    background: var(--green);
    padding: 130px 0;
  }
  .form-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
  }
  .form-left { display: flex; flex-direction: column; gap: 26px; }
  #lead-form .label { color: rgba(255,255,255,0.5); }
  #lead-form h2 { color: #fff; }
  #lead-form .subheadline { color: rgba(255,255,255,0.65); max-width: 420px; }
  .form-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .form-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
  }
  .form-benefits li::before {
    content: '✓';
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.2);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .form-card {
    background: var(--white);
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  }
  .form-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 28px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field.full { grid-column: span 2; }
  .form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
  }
  .form-field input,
  .form-field select {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-field input:focus,
  .form-field select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(18,55,42,0.1);
  }
  .form-field input::placeholder { color: #aab; }
  .form-submit {
    grid-column: span 2;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 17px 28px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    width: 100%;
    margin-top: 6px;
    transition: all 0.22s ease;
    letter-spacing: -0.2px;
  }
  .form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18,55,42,0.3);
  }
  .form-privacy {
    grid-column: span 2;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
  }

  /* ===================== SECTION 10: FAQ ===================== */
  #faq {
    background: var(--cream);
    padding: 120px 0;
  }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2px;
  }
  .faq-item:first-child { border-radius: 16px 16px 4px 4px; }
  .faq-item:last-child { border-radius: 4px 4px 16px 16px; }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s ease;
    gap: 16px;
  }
  .faq-question:hover { background: var(--cream); }
  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s;
    font-size: 18px;
    color: var(--green);
    font-weight: 300;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--green);
    color: #fff;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
  }
  .faq-answer.open {
    max-height: 200px;
  }
  .faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ===================== FINAL CTA ===================== */
  #final-cta {
    background: var(--green);
    padding: 100px 0;
    text-align: center;
  }
  #final-cta .label { color: rgba(255,255,255,0.5); margin-bottom: 18px; display: block; }
  #final-cta h2 { color: #fff; margin-bottom: 14px; }
  #final-cta .subheadline {
    color: rgba(255,255,255,0.65);
    margin: 0 auto 40px;
    max-width: 500px;
    text-align: center;
  }

  /* ===================== STICKY MOBILE CTA ===================== */
  #sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 14px 20px;
    box-shadow: 0 -8px 30px rgba(16,24,40,0.12);
    z-index: 999;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .sticky-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    flex: 1;
  }
  .sticky-title span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
  }
  .sticky-btns {
    display: flex;
    gap: 10px;
  }
  .sticky-btn {
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
  }
  .sticky-btn-primary {
    background: var(--green);
    color: #fff;
  }
  .sticky-btn-wa {
    background: #25D366;
    color: #fff;
  }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .split-section { grid-template-columns: 1fr; }
    .form-inner { grid-template-columns: 1fr; }
    .form-left { display: none; }
    .payment-cards { grid-template-columns: repeat(2, 1fr); }
    .unit-cards { grid-template-columns: repeat(2, 1fr); }
    .unit-cards .unit-card:last-child { grid-column: span 2; }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-bottom: 1px solid var(--border); }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3) { border-bottom: none; }
    .trust-item:nth-child(4) { border-right: none; border-bottom: none; }
    .offer-cols { grid-template-columns: 1fr; }
    .signature-inner { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    #hero { padding: 50px 0 70px; min-height: auto; }
    #reasons, #payment, #lifestyle, #location, #units, #gallery,
    #lead-form, #faq, #final-cta, #signature { padding: 80px 0; }
    .cards-grid { grid-template-columns: 1fr; }
    .payment-cards { grid-template-columns: 1fr 1fr; }
    .unit-cards { grid-template-columns: 1fr; }
    .unit-cards .unit-card:last-child { grid-column: span 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(3) { grid-column: span 1; aspect-ratio: 16/9; }
    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; text-align: center; }
    .form-card { padding: 28px 22px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field { grid-column: span 1; }
    .form-field.full { grid-column: span 1; }
    .form-submit { grid-column: span 1; }
    .form-privacy { grid-column: span 1; }
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    #sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
    .trust-bar-inner { margin-top: -20px; }
  }/* End custom CSS */