
  :root {
    --forest: #1a3a2a;
    --forest-light: #234d38;
    --sage: #7ba68a;
    --sage-light: #a3c9b0;
    --gold: #d4a843;
    --gold-light: #e8c86e;
    --cream: #f7f3ec;
    --cream-dark: #ede6d9;
    --white: #ffffff;
    --charcoal: #2c2c2c;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(26, 58, 42, 0.08);
    --shadow-lg: 0 12px 48px rgba(26, 58, 42, 0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ========== NAV ========== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(247, 243, 236, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.06);
    transition: all 0.3s ease;
  }

  nav.scrolled {
    padding: 12px 48px;
    box-shadow: 0 2px 20px rgba(26, 58, 42, 0.06);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-logo-icon svg {
    width: 100%;
    height: 100%;
  }

  .nav-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--forest);
    letter-spacing: -0.5px;
  }

  .nav-logo-text span {
    color: var(--gold);
  }

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

  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a:hover { color: var(--forest); }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
  }

  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--forest) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--forest) !important;
  }

  .nav-cta:hover {
    background: transparent !important;
    color: var(--forest) !important;
  }

  .nav-cta::after { display: none !important; }

  .nav-fb {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: rgba(26, 58, 42, 0.06) !important;
    color: var(--forest) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .nav-fb:hover {
    background: var(--forest) !important;
    color: var(--gold) !important;
  }

  .nav-fb::after { display: none !important; }

  /* Mobile menu */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
  }

  .mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(123, 166, 138, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-left {
    animation: fadeInUp 0.8s ease-out;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26, 58, 42, 0.06);
  }

  .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: 24px;
    letter-spacing: -1px;
  }

  .hero h1 em {
    color: var(--gold);
    font-style: italic;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 300;
  }

  /* Address Form */
  .address-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }

  .address-input-wrap {
    flex: 1;
    position: relative;
  }

  .address-input-wrap svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sage);
    width: 20px;
    height: 20px;
  }

  .address-input {
    width: 100%;
    padding: 18px 18px 18px 48px;
    border: 2px solid rgba(26, 58, 42, 0.1);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
  }

  .address-input:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 4px rgba(26, 58, 42, 0.08);
  }

  .address-input::placeholder { color: #b0b0b0; }

  .btn-primary {
    padding: 18px 36px;
    background: var(--forest);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .btn-primary:hover::before { left: 100%; }

  .btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.2);
  }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-light);
  }

  .hero-trust-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 16px;
  }

  .hero-trust strong {
    color: var(--forest);
    font-weight: 600;
  }

  /* Hero Card */
  .hero-right {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid rgba(26, 58, 42, 0.04);
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--sage), var(--forest));
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    opacity: 0.15;
  }

  .hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .hero-card-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 4px;
  }

  .hero-card-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    color: var(--forest);
    letter-spacing: -2px;
  }

  .hero-card-tag {
    background: rgba(212, 168, 67, 0.12);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .hero-card-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 58, 42, 0.06);
  }

  .hero-card-row:last-child { border: none; }

  .hero-card-row-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
  }

  .hero-card-row-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--forest);
  }

  .hero-card-row-value.highlight { color: var(--gold); }

  .hero-card-timeline {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .timeline-icon {
    width: 44px;
    height: 44px;
    background: var(--forest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
  }

  .timeline-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
  }

  .timeline-text strong {
    color: var(--forest);
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
  }

  /* Floating Elements */
  .float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .float-badge-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
  }

  .float-badge-2 {
    bottom: -20px;
    left: -30px;
    animation-delay: 2s;
  }

  .float-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .float-badge-icon.green {
    background: rgba(123, 166, 138, 0.15);
    color: var(--forest);
  }

  .float-badge-icon.gold {
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold);
  }

  /* ========== HOW IT WORKS ========== */
  .section {
    padding: 100px 48px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--forest);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-light), var(--gold-light), var(--sage-light));
    opacity: 0.4;
    z-index: 0;
  }

  .step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(26, 58, 42, 0.04);
    transition: all 0.4s ease;
  }

  .step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }

  .step-number {
    width: 56px;
    height: 56px;
    background: var(--forest);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    margin: 0 auto 24px;
    position: relative;
  }

  .step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    border: 2px dashed var(--sage-light);
    opacity: 0.4;
  }

  .step-icon {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .step-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--forest);
    margin-bottom: 12px;
  }

  .step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ========== BENEFITS ========== */
  .benefits {
    background: var(--forest);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  .benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .benefits::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
  }

  .benefits .section-label { color: var(--gold); }
  .benefits .section-title { color: var(--white); }
  .benefits .section-sub { color: rgba(255, 255, 255, 0.6); }

  .benefits-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    gap: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
  }

  .benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.2);
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }

  .benefit-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
  }

  .benefit-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ========== COMPARISON ========== */
  .comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26, 58, 42, 0.04);
  }

  .comp-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--forest);
    padding: 20px 32px;
  }

  .comp-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
  }

  .comp-header span:first-child { text-align: left; }

  .comp-header .homevly-col {
    color: var(--gold);
  }

  .comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 32px;
    border-bottom: 1px solid rgba(26, 58, 42, 0.05);
    align-items: center;
    transition: background 0.2s;
  }

  .comp-row:hover { background: rgba(26, 58, 42, 0.02); }

  .comp-row:last-child { border: none; }

  .comp-row span {
    font-size: 15px;
    text-align: center;
  }

  .comp-row span:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
  }

  .comp-check {
    color: var(--forest);
    font-size: 20px;
    font-weight: 700;
  }

  .comp-x {
    color: #d4544a;
    font-size: 20px;
    font-weight: 700;
  }

  .comp-maybe {
    color: var(--text-light);
    font-size: 13px;
  }

  /* ========== TESTIMONIALS ========== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(26, 58, 42, 0.04);
    transition: all 0.4s ease;
    position: relative;
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: 'DM Serif Display', serif;
    font-size: 72px;
    color: var(--sage-light);
    opacity: 0.3;
    line-height: 1;
  }

  .testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
  }

  .testimonial-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 700;
  }

  .testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--forest);
  }

  .testimonial-location {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 300;
  }

  /* ========== CTA ========== */
  .cta {
    padding: 100px 48px;
  }

  .cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    border-radius: 28px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .cta-inner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 166, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

  .cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  .cta-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .cta-form .address-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
  }

  .cta-form .address-input::placeholder { color: rgba(255, 255, 255, 0.45); }

  .cta-form .address-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.15);
  }

  .cta-form svg { color: rgba(255, 255, 255, 0.4); }

  .btn-gold {
    padding: 18px 36px;
    background: var(--gold);
    color: var(--forest);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--charcoal);
    padding: 64px 48px 32px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand .nav-logo-text {
    color: var(--white);
    margin-bottom: 16px;
    display: block;
  }

  .footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 300px;
    font-weight: 300;
  }

  .footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
    font-weight: 300;
  }

  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
  }

  .footer-social {
    display: flex;
    gap: 16px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
  }

  .footer-social a:hover {
    background: var(--gold);
    color: var(--forest);
  }

  /* ========== LEAD CAPTURE ========== */
  .address-input.error,
  .lead-field.error {
    border-color: #d4544a;
    box-shadow: 0 0 0 4px rgba(212, 84, 74, 0.1);
  }

  .lead-step-2 {
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 0.5s ease-out;
  }

  .lead-step-2.show { display: flex; }

  .lead-step-2 .lead-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .lead-field {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid rgba(26, 58, 42, 0.1);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
  }

  .lead-field:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 4px rgba(26, 58, 42, 0.08);
  }

  .lead-field::placeholder { color: #b0b0b0; }

  .lead-address-confirm {
    font-size: 13px;
    color: var(--sage);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .lead-address-confirm svg {
    width: 14px;
    height: 14px;
    color: var(--sage);
  }

  /* CTA dark bg variant */
  .cta .lead-field {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
  }

  .cta .lead-field::placeholder { color: rgba(255, 255, 255, 0.45); }

  .cta .lead-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.15);
  }

  .cta .lead-address-confirm { color: rgba(255, 255, 255, 0.5); }
  .cta .lead-address-confirm svg { color: var(--gold); }

  .lead-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-radius: var(--radius);
    background: rgba(45, 90, 61, 0.08);
    border: 1px solid rgba(45, 90, 61, 0.15);
    font-size: 15px;
    color: var(--forest);
    font-weight: 500;
    animation: fadeInUp 0.4s ease-out;
  }

  .lead-success.show { display: flex; }
  .lead-success svg { flex-shrink: 0; color: var(--forest); }

  .cta .lead-success {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    position: relative;
    z-index: 1;
  }

  .cta .lead-success svg { color: var(--gold); }

  @media (max-width: 768px) {
    .lead-step-2 .lead-fields { grid-template-columns: 1fr; }
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { max-width: 500px; }
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .steps-grid::before { display: none; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 12px 24px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .section { padding: 60px 24px; }
    .benefits { padding: 60px 24px; }
    .cta { padding: 60px 24px; }
    .cta-inner { padding: 48px 28px; }
    .address-form { flex-direction: column; }
    .cta-form { flex-direction: column; }
    .comp-header, .comp-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 14px 16px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .float-badge { display: none; }
    footer { padding: 48px 24px 24px; }
  }


  /* ========== PAGE HERO (inner pages) ========== */
  .page-hero {
    padding: 140px 48px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 166, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .page-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .page-hero-sub {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
  }

  /* ========== CONTENT BLOCKS ========== */
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
  }

  .content-block h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--forest);
    margin-bottom: 16px;
  }

  .content-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
  }

  /* ========== LEGAL CONTENT ========== */
  .legal-content {
    max-width: 720px;
    margin: 0 auto;
  }

  .legal-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--forest);
    margin: 32px 0 12px;
  }

  .legal-content h2:first-child {
    margin-top: 0;
  }

  .legal-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
  }

  @media (max-width: 768px) {
    .page-hero { padding: 100px 24px 48px; }
    .content-grid { grid-template-columns: 1fr; gap: 32px; }
  }
