/* 
   ReplyVera Design System 
   Focus: Warm, human, trustworthy, agency-like. NOT a tech product. 
*/

:root {
    /* Color Palette - Clean & Trustworthy (Navy & Green) */
    --bg-page: #FFFFFF;       /* Clean white */
    --bg-warm: #F4F7F6;       /* Slightly cool/green tinted gray for alternating sections */
    --bg-card: #FFFFFF;
    
    --text-main: #1A202C;     /* Deep slate */
    --text-light: #4A5568;    
    
    --accent-primary: #419B45; /* Vibrant Green from logo */
    --accent-hover: #35853E;
    
    --accent-secondary: #0E2B4C; /* Deep dark Navy from logo */
    --accent-light: #EBF4EC;   /* Light green for backgrounds/badges */
    
    --success: #419B45;       /* Vibrant Green */
    --border-color: #E2E8F0;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout */
    --max-width: 1280px;
    --radius: 12px;
    --transition: 0.25s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-warm {
    background-color: var(--bg-warm);
}

.bg-accent {
    background-color: var(--accent-secondary);
    color: #fff;
}

.border-top {
    border-top: 1px solid var(--border-color);
    padding-top: 100px;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--accent-secondary);
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(14, 43, 76, 0.2);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #0A1F38 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 43, 76, 0.3);
    color: #fff !important;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.btn-outline:hover {
    background-color: var(--accent-secondary);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.98);
}

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

.nav-container .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Navbar */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: -100px 0 -100px -60px; /* Extreme negative margin to absorb the massive whitespace padding */
    mix-blend-mode: multiply; /* Makes the white padding completely transparent so it doesn't overlap text! */
}

.logo-img {
    height: 280px; /* Massively huge height to blow up the visual weight of the text */
    width: auto;
    display: block;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

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



/* Hero Section */
.hero {
    padding: 160px 0 80px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-light);
    color: var(--accent-secondary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--accent-secondary);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-intro-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 40px;
    font-size: 1rem;
    color: var(--text-light);
}

.hero-intro-card strong {
    color: var(--text-main);
}

.hero-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-signal {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hero Visual Details */
.hero-visual {
    position: relative;
    padding: 40px;
}

.profile-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(14, 43, 76, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    max-width: 320px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent-secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.avatar-img {
    width: 140px; /* Giant width to account for face padding inside picture */
    height: 140px;
    object-fit: cover;
    object-position: center; 
    background-color: transparent; 
    border: none; /* Removed border */
    border-radius: 50%;
    margin: -30px -10px -30px -30px; /* Pull the huge padded picture closer into the text so it looks normal */
}

.profile-info h3 {
    font-size: 1.125rem;
    margin-bottom: 2px;
}

.profile-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.status-indicator {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--bg-card);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
}

.floating-reply {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(14, 43, 76, 0.06);
    margin-left: 40px;
    position: relative;
    z-index: 1;
}

.floating-header {
    margin-bottom: 12px;
}

.stars {
    color: #FBBF24;
    font-size: 1.25rem;
}

.floating-reply .review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
}

.reply-meta {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(14, 43, 76, 0.06);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--accent-light);
    color: var(--accent-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--accent-secondary);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How It Works Layer */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.step-card {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 24px;
    background-color: var(--accent-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-card h3 {
    margin-bottom: 12px;
    color: var(--accent-secondary);
}

.step-card p {
    color: var(--text-light);
    padding: 0 16px;
}

.step-arrow {
    color: var(--border-color);
    font-size: 2rem;
    font-weight: 300;
}

/* Time Savings Section */
.time-savings-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.time-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.time-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.time-estimate {
    background-color: var(--bg-warm);
    padding: 24px;
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 8px 8px 0;
    margin: 32px 0;
}

.time-estimate p {
    color: var(--text-main);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.emotional-benefit {
    font-style: italic;
    opacity: 0.9;
}

.time-comparison {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.time-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.time-card.manual {
    border-left: 4px solid #CBD5E1;
}

.time-card.with-vera {
    border-color: var(--accent-primary);
    box-shadow: 0 12px 24px rgba(65, 155, 69, 0.08); /* Green shadow for emphasis */
}

.card-header {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.time-card.with-vera .card-header {
    color: var(--accent-primary);
}

.time-card ul {
    list-style: none;
}

.time-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.time-card.manual ul li::before {
    content: "✗";
    color: #94A3B8;
    font-weight: bold;
}

.time-card.with-vera ul li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: bold;
}

/* Before After Layer */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.comp-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.comp-text p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.comp-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.comp-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comp-card.bad .comp-badge {
    background: #FEE2E2;
    color: #B91C1C;
}

.comp-card.good {
    border-color: var(--accent-primary);
    box-shadow: 0 12px 24px rgba(65, 155, 69, 0.15);
}

.comp-card.good .comp-badge {
    background: var(--accent-primary);
    color: #fff;
}

.customer-comment {
    font-size: 0.95rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.owner-reply {
    color: var(--text-light);
}

/* Meet Vera Section */
.meet-container {
    max-width: 800px;
    text-align: center;
}

.meet-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.meet-content .lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
}

.meet-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}

.price-tier {
    background: var(--bg-card);
    padding: 48px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.price-tier h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--accent-secondary);
}

.tier-desc {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 32px;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.features li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: bold;
}

.price-tier .btn {
    width: 100%;
}

.price-tier.featured {
    border: 2px solid var(--accent-secondary);
    box-shadow: 0 20px 40px rgba(14, 43, 76, 0.1);
    transform: scale(1.05);
    background-color: #fff;
    z-index: 2;
}

.popular-tab {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-secondary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Section */
.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
}

/* Final CTA */
.cta-section {
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-container p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.guarantee {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4px;
}

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

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-action {
        align-items: center;
    }

    .hero-visual {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .floating-reply {
        margin-left: 0;
        margin-top: -20px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .time-savings-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .time-estimate {
        text-align: left; /* Keep box readable */
    }

    .time-card {
        text-align: left; /* Keep list formatting proper */
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .price-tier.featured {
        transform: scale(1);
    }

    .cta-form {
        flex-direction: column;
    }

    .guarantee {
        flex-direction: column;
        gap: 12px;
    }

    .footer-flex {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .nav-links {
        display: none; /* simple mobile nav: just logo and CTA */
    }
}
