/* Landing Page Variant B - White Minimalist */
/* Mobile First Design */

:root {
    --landing-bg-primary: #FFFFFF;
    --landing-bg-secondary: #FAFAFA;
    --landing-text-primary: var(--hh-color-brand-slate, #3D405B);
    --landing-text-secondary: #4A4A4A;
    --landing-text-tertiary: #8A8A8A;
    --landing-accent-coral: var(--hh-color-brand-primary, #E07A5F);
    --landing-accent-sage: var(--hh-color-brand-sage, #81B29A);
    --landing-border: #F0F0F0;
    --landing-shadow-card: 0 4px 24px rgba(61, 64, 91, 0.08);
    --landing-shadow-screenshot: 0 20px 60px rgba(61, 64, 91, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--hh-font-family, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
    background: var(--landing-bg-primary);
    color: var(--landing-text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--landing-border);
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-login {
    color: var(--landing-text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(61, 64, 91, 0.3);
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.nav-login:hover {
    background: rgba(61, 64, 91, 0.05);
    border-color: rgba(61, 64, 91, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 40px;
    position: relative;
    background: var(--landing-bg-primary);
}

.hero-content {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.hero-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--landing-text-primary);
}

.hero-subhead {
    font-size: 18px;
    color: var(--landing-text-secondary);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-trust {
    font-size: 14px;
    color: var(--landing-text-tertiary);
    margin-top: 16px;
}

/* Map Preview */
.map-preview {
    width: 100%;
    margin-bottom: 32px;
}

.map-container {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    contain: layout;
    box-shadow: var(--landing-shadow-card);
}

.mobile-map-static {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.map-container .mapboxgl-control-container {
    display: none;
}

/* Preview legend */
.preview-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    min-height: 28px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--landing-text-tertiary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.green {
    background: #22C55E;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
}

.legend-dot.yellow {
    background: #E8B26B;
}

.legend-dot.gray {
    background: #B0B0B0;
    opacity: 0.6;
}

/* CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--landing-accent-coral);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 9999px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(224, 122, 95, 0.4);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(224, 122, 95, 0.5);
}

.hero-cta.large {
    font-size: 20px;
    padding: 20px 40px;
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section:nth-child(even) {
    background: var(--landing-bg-secondary);
}

.section:nth-child(odd) {
    background: var(--landing-bg-primary);
}

.section-content {
    max-width: 600px;
    margin: 0 auto;
}

.section-content.wide {
    max-width: 1000px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--landing-text-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--landing-accent-coral);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Why RMR and Product Preview styles are in landing-variant-b-sections.css */

/* Comparison Section */
.comparison-section {
    background: var(--landing-bg-secondary);
    padding: 80px 20px;
}

.comparison-table {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--landing-shadow-card);
    background: var(--landing-bg-primary);
}

.comparison-header {
    display: none;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--landing-border);
}

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

.comparison-cell {
    padding: 16px 20px;
    font-size: 14px;
}

.comparison-cell.feature {
    font-weight: 600;
    color: var(--landing-text-primary);
    background: #FAFAFA;
    border-bottom: 1px solid var(--landing-border);
}

.comparison-cell.old-way,
.comparison-cell.our-way {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison-cell.old-way::before,
.comparison-cell.our-way::before {
    content: attr(data-label);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--landing-text-tertiary);
    font-weight: 600;
}

.comparison-cell.old-way {
    color: var(--landing-text-tertiary);
}

.comparison-cell.our-way {
    color: var(--landing-text-primary);
    background: rgba(129, 178, 154, 0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.comparison-cell.our-way::before {
    display: none;
}

.comparison-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--landing-accent-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-check svg {
    width: 12px;
    height: 12px;
    stroke: white;
}

/* How It Works Section */
.how-it-works {
    background: var(--landing-bg-primary);
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--landing-text-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--landing-text-primary);
}

.step-content p {
    font-size: 15px;
    color: var(--landing-text-secondary);
}

/* Proof Section */
.proof {
    background: var(--landing-bg-secondary);
    text-align: center;
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.proof-badges {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.proof-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--landing-text-primary);
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: 14px;
    color: var(--landing-text-secondary);
}

.proof-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proof-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: var(--landing-text-primary);
}

.proof-point svg {
    width: 20px;
    height: 20px;
    stroke: var(--landing-accent-sage);
    flex-shrink: 0;
}

/* Value Proposition Section - Enhanced Design */
.value-prop {
    background: var(--landing-bg-primary);
    text-align: center;
    padding: 100px 20px;
}

.value-hook {
    font-size: 16px;
    color: var(--landing-text-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.value-cost {
    font-size: 44px;
    font-weight: 800;
    color: var(--landing-accent-coral);
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.value-better {
    font-size: 18px;
    color: var(--landing-text-primary);
    margin-bottom: 48px;
    font-weight: 500;
}

.pricing-hint {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--landing-bg-secondary) 0%, rgba(129, 178, 154, 0.05) 100%);
    border: 2px solid var(--landing-accent-sage);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(129, 178, 154, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 15px;
    color: var(--landing-text-secondary);
    font-weight: 500;
}

.price-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--landing-accent-sage);
}

.price-value.free-highlight {
    font-size: 20px;
    color: #22C55E;
    font-weight: 700;
}

.price-divider {
    height: 1px;
    background: rgba(129, 178, 154, 0.3);
}

/* Final CTA Section */
.final-cta {
    background: var(--landing-bg-secondary);
    text-align: center;
    padding: 100px 20px;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--landing-text-primary);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--landing-text-secondary);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
}

/* Footer */
.landing-footer {
    background: var(--landing-bg-primary);
    padding: 32px 20px;
    border-top: 1px solid var(--landing-border);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--landing-text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 12px 8px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

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

.footer-copyright {
    font-size: 13px;
    color: var(--landing-text-tertiary);
}

/* Responsive styles are in landing-variant-b-responsive.css */
