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

        :root {
          --primary-color: 'rgba(255, 255, 255, 0.98)';      /* A blue tone */
          --secondary-color: '#1a202c';    /* A green tone */
          --accent-color:'red';
          --text-color: '#2d3748';       /* Dark gray */
          --text-color-secondary: '#1a202c';
          --background-light: '#fafafa';
          --logo-color: '#1a202c';
          --font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
        }

        body {
            font-family: var(--font-family);
            line-height: 1.7;
            color: var(--text-color);
            background: var(--background-light);;
            font-weight: 300;
        }

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

        header {
            background: var(--primary-color);
            backdrop-filter: blur(20px);
            padding: 1.5rem 0;
            /* position: sticky;
            top: 0;
            z-index: 100; */
            border-bottom: 1px solid #e2e8f0;
            color:var(--logo-color);
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--logo-color);
            letter-spacing: -0.025em;
        }

        .hero {
            background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
            padding: 5rem 0 6rem;
        }

        .hero-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 480px;
            gap: 4rem;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-text {
            padding-top: 2rem;
        }

        .hero-image {
            width: 200px;
            height: 120px;
            object-fit: cover;
            /* border-radius: 12px; */
            margin-bottom: 1rem;
            /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
            /* border: 1px solid #e2e8f0; */
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            font-weight: 200;
            color: var(--text-color-secondary);
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.25rem;
            /* margin-bottom: 3rem; */
            color: #4a5568;
            font-weight: 300;
            line-height: 1.6;
        }

        .zone-stats {

            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;

            /* border: 1px solid #e2e8f0; */
        }
        .arrow {
          color:var(--accent-color) !important;
        }


        .zone-stats h3 {
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--text-color-secondary);
            margin-bottom: 1.5rem;
            text-align: center;
            letter-spacing: -0.025em;
        }

        .stats-grid {
            /* display: grid;
            grid-template-columns: 1fr 1fr; */
            /* gap: 1.5rem; */
            gap: 1rem;
            display: flex;
        }

        .zone-stat {
            text-align: center;
            flex-grow: 1;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
        }
        .zone-stat.pro {
          border: 3px solid var(--accent-color);
          color: var(--accent-color);
          box-shadow:  0 2px 4px -1px rgba(255, 20, 20, 0.15);
        }

        .zone-stat-number {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--text-color-secondary);
            display: block;
            letter-spacing: -0.025em;
        }

        .zone-stat.pro .zone-stat-number {
          color: var(--accent-color);
          font-weight: 500;
        }
        .zone-stat.pro .zone-stat-label {
          color: var(--accent-color);
          font-weight: 400;
        }

        .zone-stat-label {
            color: #718096;
            font-weight: 300;
            margin-top: 0.25rem;
            font-size: 0.8rem;
        }

        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
            /* display: none; <- Crashes Chrome on hover */
            -webkit-appearance: none;
            margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
        }

        input[type=number] {
            -moz-appearance:textfield; /* Firefox */
        }
        .btn {
            display: inline-block;
            cursor:pointer;
            font-weight: 400;
            color: #212529;
            text-align: center;
            vertical-align: middle;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: transparent;
            border: 1px solid transparent;
            padding: .375rem .75rem;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: .25rem;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        }
        .btn:hover {
            color: #212529;
            text-decoration: none;
        }
        .btn-success {
            color: #fff;
            background-color: #28a745;
            border-color: #28a745;
        }
        .btn-success:hover {
            color: #fff;
            background-color: #218838;
            border-color: #1e7e34;
        }


        .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle {
            color: #fff;
            background-color: #1e7e34;
            border-color: #1c7430;
        }
        .whatsapp-popup {
          position: fixed;
          bottom:10px;
          right:10px;
          z-index: 100;
        }
        .hidden {
          display:none;
        }

        .property-value-btn {
            display: inline-block;
            background: var(--text-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            letter-spacing: 0.025em;
            text-align: center;
            width: 100%;
        }

        .property-value-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(45, 55, 72, 0.15);
        }

        .lead-form {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            height: fit-content;
            /* position: sticky; */
            top: 2rem;
        }

        .lead-form h2 {
            color: var(--text-color-secondary);
            margin-bottom: 2rem;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: -0.025em;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #4a5568;
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 0.025em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            background: var(--background-light);
            font-weight: 300;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #718096;
            background: white;
            box-shadow: 0 0 0 3px rgba(113, 128, 150, 0.1);
        }

        .price-range {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .price-input-wrapper {
            position: relative;
        }

        .price-input-wrapper::before {
            content: '$';
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #718096;
            font-weight: 400;
            z-index: 1;
        }

        .price-input-wrapper input {
            padding-left: 2rem;
        }

        .submit-btn, .next-btn {
            background: var(--secondary-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 400;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            letter-spacing: 0.025em;
        }
        .next-btn.outline {
          background:white;
          color: var(--secondary-color);
          border: 2px solid var(--secondary-color);
        }
        .submit-btn:hover, .next-btn:hover {
            background: var(--text-color);
            transform: translateY(-1px);
        }
        .next-btn.outline:hover {
            background: white;
            font-weight: 500;
            transform: translateY(-1px);
        }

        .benefits {
            background: white;
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.25rem;
            margin-bottom: 1rem;
            color: var(--text-color-secondary);
            font-weight: 200;
            letter-spacing: -0.025em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto 4rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .benefit-card {
            text-align: left;
            padding: 2.5rem 2rem;
            border-radius: 12px;
            background: var(--background-light);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .benefit-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: #f7fafc;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: 1px solid #e2e8f0;
        }

        .benefit-card h3 {
            color: var(--text-color-secondary);
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: -0.025em;
        }

        .benefit-card p {
            color: #4a5568;
            font-weight: 300;
            line-height: 1.6;
        }

        .social-proof {
            background: #f7fafc;
            padding: 4rem 0;
            text-align: center;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            /* max-width: 800px; */
            margin-left: auto;
            margin-right: auto;
        }

        .stat {
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 200;
            color: var(--text-color-secondary);
            display: block;
            letter-spacing: -0.025em;
        }

        .stat-label {
            color: #718096;
            font-weight: 300;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        .cta-section {
            background: var(--secondary-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .cta-text {
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.9;
        }

        footer {
            background: #2d3748;
            color: #a0aec0;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.85rem;
            font-weight: 300;
        }

        @media (max-width: 968px) {
            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .lead-form {
                /* position: static; */
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.25rem;
            }
            .hero {
                padding: 2rem 0 0rem;
            }
            .hero .subtitle {
                font-size: 1.1rem;
            }

            .lead-form {
                padding: 2rem;
            }

            .price-range {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                flex-direction: column;
                gap: 1rem;
            }
            .fa-arrow-right {
                transform: rotate(90deg);
              /* justify-content: center; */
                width: 100% !important;
            }

            .hero-image {
                width: 150px;
                height: 90px;
            }
        }

        @media (max-width: 480px) {
            .hero-image {
                width: 120px;
                height: 75px;
            }
            .lead-form {
              width: 100vw;
              margin-left: -24px;
              border-radius: 0px;
              box-shadow: none;
            }

        }

        .privacy-note {
            font-size: 0.8rem;
            color: #718096;
            margin-top: 1.5rem;
            text-align: center;
            font-weight: 300;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        @media (max-width: 480px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* Subtle animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }


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

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

        .form-container {
            animation: fadeInUp 0.8s ease 0.2s both;
        }
