/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: white;
    border-bottom: 1px solid #E2E8F0;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #64748B;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1E3A8A;
}

.nav-link-active {
    color: #1E3A8A;
    font-weight: 500;
}

.btn-logout {
    padding: 8px 16px;
    font-size: 14px;
    color: #64748B;
    background: transparent;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    color: #1E3A8A;
}

/* Navbar for Homepage */
.navbar {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #E2E8F0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1E3A8A;
}

.btn-nav-primary {
    background: #1E3A8A !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-nav-primary:hover {
    background: #1E40AF !important;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* Hero Background Decorations */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    top: 10%;
    left: -100px;
}

.hero-bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    bottom: -100px;
    right: -150px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: #DBEAFE;
    color: #1E40AF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
    color: #1E3A8A;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748B;
    margin-bottom: 32px;
}

.btn-hero {
    display: inline-block;
    background: #1E3A8A;
    color: white;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-hero:hover {
    background: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.hero-note {
    margin-top: 16px;
    margin-bottom: 48px;
    font-size: 14px;
    color: #94A3B8;
}

/* Property Showcase */
.property-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.property-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.property-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.property-showcase-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.property-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
}

/* Video Demo */
.video-demo {
    margin-top: 48px;
}

.video-container {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border-radius: 12px;
}

.video-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #64748B;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.step-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #1E3A8A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 20px;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    padding: 16px;
}

.step-image img {
    width: 100%;
    border-radius: 8px;
}

/* Comps Preview */
.comps-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-mini-card {
    display: flex;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.comp-img {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 6px;
}

.comp-info {
    flex: 1;
}

.comp-price {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.comp-details {
    font-size: 13px;
    color: #64748B;
}

/* Report Preview */
.report-preview {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.report-header {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.report-stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
}

.report-stat span {
    font-size: 14px;
    color: #64748B;
}

.report-stat strong {
    font-size: 14px;
    color: #0F172A;
}

.report-map {
    margin-top: 16px;
    height: 120px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 8px;
}

/* Analysis Preview */
.analysis-preview {
    display: flex;
    gap: 12px;
}

.analysis-box {
    flex: 1;
    background: #DBEAFE;
    padding: 20px;
    border-radius: 8px;
}

.analysis-box-alt {
    background: #D1FAE5;
}

.analysis-label {
    font-size: 13px;
    color: #1E40AF;
    margin-bottom: 8px;
}

.analysis-box-alt .analysis-label {
    color: #047857;
}

.analysis-value {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 4px;
}

.analysis-box-alt .analysis-value {
    color: #059669;
}

.analysis-desc {
    font-size: 12px;
    color: #1E40AF;
}

.analysis-box-alt .analysis-desc {
    color: #047857;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #F8FAFC;
}

/* Features Hero Image */
.features-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 64px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.features-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 32px;
}

.features-hero-overlay h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.features-hero-overlay p {
    font-size: 20px;
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #DBEAFE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

/* Social Proof Banner */
.social-proof-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 64px;
    padding: 40px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.social-proof-item {
    text-align: center;
}

.social-proof-number {
    font-size: 42px;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 8px;
    line-height: 1;
}

.social-proof-label {
    font-size: 14px;
    color: #64748B;
    font-weight: 500;
}

.pricing-main {
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 18px;
    color: #64748B;
}

.pricing-cards, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-new, .pricing-card {
    position: relative;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
}

.pricing-card-new:hover, .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border-color: #1E3A8A;
    border-width: 3px;
    transform: scale(1.02);
}

.pricing-badge-new, .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E3A8A;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.pricing-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 32px;
}

.pricing-amount, .price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    color: #64748B;
    margin-right: 4px;
}

.amount, .price {
    font-size: 56px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.amount-custom {
    font-size: 40px;
    font-weight: 700;
    color: #1E3A8A;
}

.period, .price-period {
    font-size: 18px;
    color: #64748B;
    margin-left: 4px;
}

.pricing-features, .features-list {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li, .features-list li {
    font-size: 15px;
    color: #0F172A;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child, .features-list li:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
}

.btn-pricing, .btn-primary, .btn-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-pricing, .btn-secondary {
    background: white;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.btn-pricing:hover, .btn-secondary:hover {
    background: #F8FAFC;
}

.btn-pricing-primary, .btn-primary {
    background: #1E3A8A;
    color: white;
    border: none;
}

.btn-pricing-primary:hover, .btn-primary:hover {
    background: #1E40AF;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.trust-signals {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-text {
    font-size: 14px;
    color: #64748B;
    text-align: center;
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.waitlist-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.waitlist-content p {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 48px;
}

.waitlist-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-input:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.btn-waitlist {
    padding: 16px 32px;
    background: #1E3A8A;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-waitlist:hover {
    background: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.waitlist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748B;
}

.waitlist-note {
    font-size: 14px;
    color: #64748B;
    margin-top: 24px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #1E3A8A;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #1E3A8A;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Form Styles - Signup Page */
.form-container {
    width: 100%;
    max-width: 440px;
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: #64748B;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #0F172A;
}

.form-group input {
    padding: 12px 16px;
    font-size: 15px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input::placeholder {
    color: #94A3B8;
}

.helper-text {
    font-size: 13px;
    color: #64748B;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #1E3A8A;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

.link {
    color: #1E3A8A;
    text-decoration: none;
    transition: color 0.2s;
}

.link:hover {
    color: #1E40AF;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94A3B8;
    font-size: 13px;
    margin: 8px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E2E8F0;
}

.divider span {
    padding: 0 16px;
}

.form-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.form-footer p {
    font-size: 14px;
    color: #64748B;
}

/* Dashboard Styles */
.dashboard-main {
    flex: 1;
    padding: 48px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-header {
    text-align: center;
}

.dashboard-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.dashboard-header p {
    font-size: 16px;
    color: #64748B;
}

/* Search Section */
.search-section {
    display: flex;
    justify-content: center;
}

.search-form {
    width: 100%;
    max-width: 800px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px 8px 8px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrapper:focus-within {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.search-icon {
    flex-shrink: 0;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
    color: #0F172A;
}

.search-input::placeholder {
    color: #94A3B8;
}

.btn-search {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    background: #1E3A8A;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-search:hover {
    background: #1E40AF;
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
}

.results-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
}

.results-count {
    font-size: 14px;
    color: #64748B;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    transition: all 0.2s;
}

.result-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-info {
    flex: 1;
}

.result-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.result-address h3 {
    font-size: 16px;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 4px;
}

.result-timestamp {
    font-size: 13px;
    color: #94A3B8;
}

.result-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-success {
    background: #DCFCE7;
    color: #166534;
}

.status-success .status-dot {}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #1E3A8A;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #1E3A8A;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Form Styles - Signup Page */
.form-container {
    width: 100%;
    max-width: 440px;
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: #64748B;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #0F172A;
}

.form-group input {
    padding: 12px 16px;
    font-size: 15px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input::placeholder {
    color: #94A3B8;
}

.helper-text {
    font-size: 13px;
    color: #64748B;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #1E3A8A;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

.link {
    color: #1E3A8A;
    text-decoration: none;
    transition: color 0.2s;
}

.link:hover {
    color: #1E40AF;
}

.btn-primary {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    background: #1E3A8A;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    width: 100%;
}

.btn-primary:hover {
    background: #1E40AF;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
    background: white;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94A3B8;
    font-size: 13px;
    margin: 8px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E2E8F0;
}

.divider span {
    padding: 0 16px;
}

.form-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.form-footer p {
    font-size: 14px;
    color: #64748B;
}

.footer {
    padding: 24px 48px;
    text-align: center;
    background: white;
    border-top: 1px solid #E2E8F0;
}

.footer p {
    font-size: 13px;
    color: #94A3B8;
}

/* Dashboard Styles */
.dashboard-main {
    flex: 1;
    padding: 48px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-header {
    text-align: center;
}

.dashboard-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.dashboard-header p {
    font-size: 16px;
    color: #64748B;
}

/* Search Section */
.search-section {
    display: flex;
    justify-content: center;
}

.search-form {
    width: 100%;
    max-width: 800px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px 8px 8px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-wrapper:focus-within {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.search-icon {
    flex-shrink: 0;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
    color: #0F172A;
}

.search-input::placeholder {
    color: #94A3B8;
}

.btn-search {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    background: #1E3A8A;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-search:hover {
    background: #1E40AF;
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
}

.results-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
}

.results-count {
    font-size: 14px;
    color: #64748B;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    transition: all 0.2s;
}

.result-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.result-info {
    flex: 1;
}

.result-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.result-address h3 {
    font-size: 16px;
    font-weight: 500;
    color: #0F172A;
    margin-bottom: 4px;
}

.result-timestamp {
    font-size: 13px;
    color: #94A3B8;
}

.result-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-success {
    background: #DCFCE7;
    color: #166534;
}

.status-success .status-dot {
    background: #16A34A;
}

.status-processing {
    background: #FEF3C7;
    color: #92400E;
}

.status-processing .status-dot {
    background: #F59E0B;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-error {
    background: #FEE2E2;
    color: #991B1B;
}

.status-error .status-dot {
    background: #DC2626;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.btn-view {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: #1E3A8A;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-view:hover {
    background: #1E40AF;
}

.btn-view:disabled {
    background: #E2E8F0;
    color: #94A3B8;
    cursor: not-allowed;
}

.btn-view-error {
    background: #DC2626;
}

.btn-view-error:hover {
    background: #B91C1C;
}

/* Result Detail Page Styles */
.result-main {
    flex: 1;
    padding: 48px;
    background: #F8FAFC;
}

.result-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.property-header {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.property-title-section h1 {
    font-size: 32px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 4px;
}

.property-location {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 16px;
}

.property-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748B;
}

.property-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Detail Cards */
.detail-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
}

.card-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
}

.card-subtitle {
    font-size: 14px;
    color: #64748B;
    margin-left: 12px;
}

/* AI Summary Card */
.ai-summary-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
    border: 1px solid #BFDBFE;
}

.ai-summary-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.deal-score {
    display: flex;
    gap: 32px;
    align-items: center;
}

.score-circle {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 3px solid #1E3A8A;
}

.score-value {
    font-size: 48px;
    font-weight: 700;
    color: #1E3A8A;
    line-height: 1;
}

.score-label {
    font-size: 14px;
    color: #64748B;
    margin-top: 4px;
}

.score-description h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.score-description p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

.key-insights h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.insights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insights-list li {
    font-size: 15px;
    color: #0F172A;
    padding-left: 24px;
    position: relative;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.detail-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: #64748B;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
}

.price-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #1E3A8A;
}

.positive-value {
    color: #16A34A;
}

/* Comparables Table */
.comps-table {
    overflow-x: auto;
}

.comps-table table {
    width: 100%;
    border-collapse: collapse;
}

.comps-table th {
    text-align: left;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    background: #F8FAFC;
    border-bottom: 2px solid #E2E8F0;
}

.comps-table td {
    padding: 16px 12px;
    font-size: 14px;
    color: #0F172A;
    border-bottom: 1px solid #F1F5F9;
}

.comps-table tr:hover {
    background: #F8FAFC;
}

/* Location Scores */
.location-scores {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.score-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-bar-container {
    width: 100%;
    height: 8px;
    background: #F1F5F9;
    border-radius: 4px;
    overflow: hidden;
}

.score-bar {
    height: 100%;
    background: linear-gradient(90deg, #1E3A8A 0%, #3B82F6 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.score-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-name {
    font-size: 14px;
    color: #64748B;
}

.score-num {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
}

/* Amenities */
.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F8FAFC;
    border-radius: 8px;
}

.amenity-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
}

.amenity-name {
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
}

.amenity-distance {
    font-size: 13px;
    color: #64748B;
}

/* Pricing Page Updates */
.pricing-main {
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 64px;
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
    border: 2px solid #E2E8F0;
}

.pricing-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border: 2px solid #1E3A8A;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E3A8A;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 32px;
}

.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.price {
    font-size: 56px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: #64748B;
    margin-left: 8px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #0F172A;
}

.check-icon {
    flex-shrink: 0;
}

.trust-signals {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-text {
    font-size: 14px;
    color: #64748B;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.faq-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 32px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .dashboard-main {
        padding: 24px;
    }
    
    .result-main {
        padding: 24px;
    }
    
    .property-header {
        flex-direction: column;
    }
    
    .property-actions {
        width: 100%;
    }
    
    .deal-score {
        flex-direction: column;
        text-align: center;
    }
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #E2E8F0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1E3A8A;
}

.btn-nav-primary {
    background: #1E3A8A !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-nav-primary:hover {
    background: #1E40AF !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding-bottom: 80px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #DBEAFE;
    color: #1E40AF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
    color: #1E3A8A;
}

.hero-subtitle {
    font-size: 20px;
    color: #64748B;
    margin-bottom: 32px;
}

.btn-hero {
    display: inline-block;
    background: #1E3A8A;
    color: white;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-hero:hover {
    background: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.hero-note {
    margin-top: 16px;
    font-size: 14px;
    color: #94A3B8;
}

/* Video Demo */
.video-demo {
    margin-top: 48px;
}

.video-container {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border-radius: 12px;
}

.video-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #64748B;
}

/* Search Demo - Keeping for backwards compatibility but hidden */
.search-demo {
    display: none;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto 64px;
}

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

.step-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border-color: #1E3A8A;
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-badge-new {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E3A8A;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    color: #64748B;
    margin-right: 4px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: #1E3A8A;
    line-height: 1;
}

.amount-custom {
    font-size: 40px;
    font-weight: 700;
    color: #1E3A8A;
}

.period {
    font-size: 18px;
    color: #64748B;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 15px;
    color: #475569;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pricing:hover {
    background: #F8FAFC;
}

.btn-pricing-primary {
    background: #1E3A8A;
    color: white;
}

.btn-pricing-primary:hover {
    background: #1E40AF;
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.waitlist-content p {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 48px;
}

.waitlist-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-input:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.btn-waitlist {
    padding: 16px 32px;
    background: #1E3A8A;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-waitlist:hover {
    background: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.waitlist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748B;
}

.waitlist-note {
    font-size: 14px;
    color: #64748B;
    margin-top: 24px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #1E3A8A;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #1E3A8A;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-new {
    background: #0F172A;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #94A3B8;
    margin-top: 12px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1E293B;
    text-align: center;
}

.footer-bottom p {
    color: #64748B;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }
    
    .nav-links a:not(.btn-nav-primary) {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .search-demo-box {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .analysis-preview {
        flex-direction: column;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .waitlist-content h2 {
        font-size: 32px;
    }
}1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #1E3A8A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 20px;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    padding: 16px;
}

.step-image img {
    width: 100%;
    border-radius: 8px;
}

/* Comps Preview */
.comps-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-mini-card {
    display: flex;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.comp-img {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 6px;
}

.comp-info {
    flex: 1;
}

.comp-price {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.comp-details {
    font-size: 13px;
    color: #64748B;
}

/* Report Preview */
.report-preview {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.report-header {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
}

.report-stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
}

.report-stat span {
    font-size: 14px;
    color: #64748B;
}

.report-stat strong {
    font-size: 14px;
    color: #0F172A;
}

.report-map {
    margin-top: 16px;
    height: 120px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 8px;
}

/* Analysis Preview */
.analysis-preview {
    display: flex;
    gap: 12px;
}

.analysis-box {
    flex: 1;
    background: #DBEAFE;
    padding: 20px;
    border-radius: 8px;
}

.analysis-box-alt {
    background: #D1FAE5;
}

.analysis-label {
    font-size: 13px;
    color: #1E40AF;
    margin-bottom: 8px;
}

.analysis-box-alt .analysis-label {
    color: #047857;
}

.analysis-value {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 4px;
}

.analysis-box-alt .analysis-value {
    color: #059669;
}

.analysis-desc {
    font-size: 12px;
    color: #1E40AF;
}

.analysis-box-alt .analysis-desc {
    color: #047857;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #DBEAFE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card-new {
    position: relative;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
}

.pricing-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.