:root {
    --navy: #1B263B;
    --green: #217346;
    --gold: #FFB703;
    --white: #F8F9FA;
    --gray: #6C757D;
    --border: #DEE2E6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.card {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.form-container {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

/* --- Modern Header & Banner --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--green);
}

.container.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-btn {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: rgba(27, 38, 59, 0.05);
    color: var(--navy);
}

.login-btn {
    padding: 10px 22px;
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    margin-left: 10px;
    transition: all 0.2s ease;
    position: relative;
    text-align: center;
    min-width: 140px;
}

.login-btn:hover {
    color: transparent;
    border-color: var(--navy);
}

.login-btn:hover::after {
    content: "COMING SOON";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 900;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    .main-nav.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-btn, .login-btn {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}

/* --- Trust Signal Bar --- */
.trust-bar {
    background: #f8f9fa;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .trust-bar .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    /* Mobile Spacing Deep Dive */
    section { padding: 60px 0; }
    .hero { padding: 80px 0; }
    .hero h1 { font-size: 2.8rem; letter-spacing: -1px; }
    .hero p { font-size: 1.1rem; }
    
    .section-title h2 { font-size: 2rem; }
    .section-title p { font-size: 0.8rem; padding: 6px 16px; }
    
    .segment-card { padding: 30px 20px; }
    .pricing-card { padding: 30px 20px; }
    .pricing-card.featured { transform: scale(1); margin: 10px 0; }
    
    .timeline-item { width: 100%; padding-left: 60px; text-align: left; }
    .timeline-item::after { left: 25px; }
    .timeline::after { left: 25px; }
    .right { left: 0%; }
    
    .timeline-content { padding: 20px; }
    
    .card { padding: 25px !important; }
    
    .cta-form { flex-direction: column; background: transparent; box-shadow: none; border: none; padding: 0; }
    .cta-form input { background: white; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; width: 100%; }
    .btn-primary { width: 100%; text-align: center; }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .logo { font-size: 1.2rem; }
    .footer-logo-bubble { font-size: 1rem; padding: 8px 20px; }
    .card { padding: 20px !important; }
    .section-title h2 { font-size: 1.8rem; }
    .grid { gap: 20px; }
}

/* --- Comparison Section --- */
section {
    padding: 100px 0;
}

.section-tight {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 0.95rem;
    color: var(--green);
    background: rgba(33, 115, 70, 0.08);
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(33, 115, 70, 0.15);
    max-width: 100%;
    word-wrap: break-word;
    box-sizing: border-box;
}

/* --- Hero Section --- */
.hero {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f1f3f5 100%);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.05;
    letter-spacing: -2px;
}

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

.hero p {
    font-size: 1.35rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 50px;
}

.cta-form {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    gap: 12px;
    background: white;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    outline: none;
    min-width: 250px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4);
}

/* --- Persona Segments --- */
.segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.segment-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.segment-card:hover {
    border-color: var(--green);
    box-shadow: 0 30px 70px rgba(27, 38, 59, 0.1);
    transform: translateY(-12px);
}

.segment-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.segment-card .badge {
    align-self: flex-start;
    background: #f1f3f5;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--green);
    letter-spacing: 1px;
}

/* --- Timeline / Roadmap --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 15px 50px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border: 6px solid var(--green);
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 10;
}

.timeline-today::after {
    border-color: var(--gold);
}

.left { left: 0; text-align: right; }
.right { left: 50%; text-align: left; }

/* Remove old dot positioners and use the new centered one above */
.left::after, .right::after { left: 50%; }

.timeline-content {
    padding: 30px 40px;
    background-color: white;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 35px rgba(27, 38, 59, 0.05);
}

.timeline-content h3 {
    color: var(--green);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.timeline-content .date {
    font-weight: 900;
    color: var(--navy);
    display: block;
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .timeline::after { left: 25px; }
    .timeline-item { width: 100%; padding-left: 60px; text-align: left; }
    .timeline-item::after { left: 25px; }
    .right { left: 0%; }
}

/* --- Comparison Section --- */
.comparison {
    padding: 100px 0;
    background: #f8f9fa;
}

.card.solution {
    border-color: var(--green);
    background: rgba(33, 115, 70, 0.02);
}

.card h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.card .icon-x { color: #DC3545; font-weight: bold; flex-shrink: 0; }
.card .icon-v { color: var(--green); font-weight: bold; flex-shrink: 0; }

/* --- Footer --- */
footer {
    padding: 100px 0 50px;
    background: white;
    border-top: 1px solid var(--border);
}

.footer-logo-bubble {
    background: white;
    padding: 10px 24px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    color: var(--navy) !important;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    border: 2px solid var(--navy);
    transition: all 0.2s ease;
}

.footer-logo-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(27, 38, 59, 0.1);
}

.footer-logo-bubble span {
    color: var(--green);
    margin-left: 6px;
}

/* --- Pricing Section --- */
.pricing-section {
    background: var(--navy);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
    justify-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

.price-tag {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin: 15px 0;
}

.price-tag span {
    font-size: 1rem;
    color: white;
    opacity: 0.7;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--green);
}

/* --- Realistic Excel UI Mockup --- */
.excel-window {
    background: #f3f3f3;
    border: 1px solid #999;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.excel-header-ribbon {
    background: #217346;
    display: flex;
    padding: 10px 15px 0;
    gap: 8px;
}

.ribbon-tab {
    padding: 8px 15px;
    font-size: 12px;
    color: white;
    border-radius: 5px 5px 0 0;
}

.ribbon-tab.active {
    background: white;
    color: #217346;
    font-weight: bold;
}

.excel-grid {
    border-collapse: collapse;
    width: 100%;
    background: white;
}

.excel-grid td, .excel-grid th {
    border: 1px solid #bbb;
    padding: 8px 12px;
    font-size: 12px;
}

.excel-grid th { background: #f2f2f2; font-weight: normal; }

.cell-highlight-rent { background: #e6f4ea !important; font-weight: bold; border: 2px solid #217346 !important; }
.cell-highlight-repairs { background: #fff8e1 !important; font-weight: bold; border: 2px solid #ffb703 !important; }
.cell-highlight-other { background: #f1f3f5 !important; color: #6c757d !important; }

/* --- Anti-Bot Honeypot --- */
.hp-field {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
    pointer-events: none !important;
}
