/* Property Pro Landing Page Styles */
/* Theme: Tech-Forward Professional */

/* Override body styles for this page */
.property-pro-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: auto;
    background: #FFFFFF;
}

/* Color Variables */
:root {
    --pp-primary: #4CAF50;
    --pp-primary-hover: #43A047;
    --pp-secondary: #1E293B;
    --pp-accent: #F59E0B;
    --pp-bg-light: #F8FAFC;
    --pp-bg-white: #FFFFFF;
    --pp-text: #334155;
    --pp-text-light: #64748B;
}

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

/* Header */
.pp-header {
    background: var(--pp-bg-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pp-header .pp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pp-logo-img {
    height: 36px;
}

.pp-nav {
    display: flex;
    gap: 32px;
}

.pp-nav a {
    color: var(--pp-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.pp-nav a:hover {
    color: var(--pp-primary);
}

.pp-cta-btn {
    background: var(--pp-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.pp-cta-btn:hover {
    background: var(--pp-primary-hover);
}

/* Hero Section */
.pp-hero {
    background: var(--pp-bg-light);
    padding: 80px 0;
}

.pp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pp-badge {
    display: inline-block;
    background: var(--pp-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pp-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pp-secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.pp-hero-subtext {
    font-size: 1.2rem;
    color: var(--pp-text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.pp-btn-primary {
    display: inline-block;
    background: var(--pp-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.pp-btn-primary:hover {
    background: var(--pp-primary-hover);
    transform: translateY(-2px);
}

.pp-btn-primary.large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.pp-trust-text {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--pp-text-light);
}

/* Dashboard Mockup */
.pp-dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.pp-mockup-header {
    background: var(--pp-secondary);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.pp-mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #475569;
}

.pp-mockup-dot:nth-child(1) { background: #EF4444; }
.pp-mockup-dot:nth-child(2) { background: #F59E0B; }
.pp-mockup-dot:nth-child(3) { background: #22C55E; }

.pp-mockup-content {
    padding: 24px;
}

.pp-mockup-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--pp-secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E2E8F0;
}

.pp-mockup-property {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
}

.pp-mockup-property:last-child {
    border-bottom: none;
}

.pp-check {
    color: var(--pp-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.pp-pending-icon {
    color: var(--pp-accent);
    font-size: 0.9rem;
}

.pp-status {
    margin-left: auto;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

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

/* Pain Section */
.pp-pain-section {
    background: var(--pp-bg-white);
    padding: 80px 0;
}

.pp-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pp-secondary);
    margin-bottom: 48px;
}

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

.pp-pain-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--pp-bg-light);
    border-radius: 12px;
    transition: transform 0.2s;
}

.pp-pain-card:hover {
    transform: translateY(-4px);
}

.pp-pain-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--pp-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-pain-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pp-secondary);
    margin-bottom: 12px;
}

.pp-pain-card p {
    color: var(--pp-text-light);
    line-height: 1.6;
}

/* Features Section */
.pp-features-section {
    background: var(--pp-bg-light);
    padding: 80px 0;
}

.pp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.pp-feature-row:last-child {
    margin-bottom: 0;
}

.pp-feature-row.reverse {
    direction: rtl;
}

.pp-feature-row.reverse > * {
    direction: ltr;
}

.pp-feature-visual {
    display: flex;
    justify-content: center;
}

.pp-feature-icon-large {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    color: var(--pp-primary);
}

.pp-feature-icon-large.priority {
    background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
}

.pp-priority-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--pp-accent);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pp-feature-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pp-secondary);
    margin-bottom: 16px;
}

.pp-feature-text p {
    font-size: 1.1rem;
    color: var(--pp-text-light);
    line-height: 1.7;
}

/* SMS Mockup */
.pp-sms-mockup {
    background: #F1F5F9;
    border-radius: 24px;
    padding: 16px;
    width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pp-sms-header {
    text-align: center;
    font-weight: 600;
    color: var(--pp-secondary);
    padding-bottom: 12px;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 16px;
}

.pp-sms-bubble {
    background: #E2E8F0;
    padding: 16px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
}

.pp-sms-bubble p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--pp-text);
}

.pp-sms-bubble strong {
    color: var(--pp-secondary);
}

.pp-sms-time {
    font-size: 0.75rem;
    color: var(--pp-text-light);
}

/* PDF Mockup */
.pp-pdf-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pp-pdf-header {
    background: var(--pp-secondary);
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.pp-pdf-content {
    padding: 20px;
}

.pp-pdf-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pp-pdf-photo {
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.pp-pdf-photo.before {
    background: #FEE2E2;
    color: #991B1B;
}

.pp-pdf-photo.after {
    background: #DCFCE7;
    color: #166534;
}

/* Pricing Section */
.pp-pricing-section {
    background: var(--pp-secondary);
    padding: 80px 0;
}

.pp-pricing-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pp-pricing-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pp-secondary);
    margin-bottom: 24px;
}

.pp-price {
    margin-bottom: 16px;
}

.pp-price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--pp-secondary);
}

.pp-price-period {
    font-size: 1.25rem;
    color: var(--pp-text-light);
}

.pp-trial-badge {
    display: inline-block;
    background: var(--pp-accent);
    color: white;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 600;
    margin-bottom: 32px;
}

.pp-features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pp-features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pp-text);
}

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

.pp-feature-check {
    color: var(--pp-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* FAQ Section */
.pp-faq-section {
    background: var(--pp-bg-white);
    padding: 80px 0;
}

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

.pp-faq-item {
    background: var(--pp-bg-light);
    padding: 32px;
    border-radius: 12px;
}

.pp-faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pp-secondary);
    margin-bottom: 12px;
}

.pp-faq-item p {
    color: var(--pp-text-light);
    line-height: 1.6;
}

/* Footer */
.pp-footer {
    background: var(--pp-bg-light);
    padding: 40px 0;
    border-top: 1px solid #E2E8F0;
}

.pp-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pp-footer-logo {
    height: 32px;
}

.pp-footer p {
    color: var(--pp-text-light);
    font-size: 0.85rem;
}

.pp-footer-links {
    display: flex;
    gap: 24px;
}

.pp-footer-links a {
    color: var(--pp-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.pp-footer-links a:hover {
    color: var(--pp-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .pp-hero-grid,
    .pp-feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pp-feature-row.reverse {
        direction: ltr;
    }

    .pp-hero-text {
        text-align: center;
    }

    .pp-hero-image {
        order: -1;
    }

    .pp-pain-grid,
    .pp-faq-grid {
        grid-template-columns: 1fr;
    }

    .pp-feature-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pp-header .pp-container {
        flex-wrap: wrap;
    }

    .pp-nav {
        display: none;
    }

    .pp-hero {
        padding: 48px 0;
    }

    .pp-hero-text h1 {
        font-size: 2rem;
    }

    .pp-hero-subtext {
        font-size: 1rem;
    }

    .pp-section-title {
        font-size: 1.75rem;
    }

    .pp-pricing-card {
        padding: 32px 24px;
    }

    .pp-price-amount {
        font-size: 3rem;
    }

    .pp-footer-content {
        flex-direction: column;
        text-align: center;
    }
}
