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

:root {
    --primary-color: #b8955a;       /* matches app primary-600 */
    --primary-dark: #7d6238;
    --primary-darker: #4a3c2a;
    --secondary-color: #f4c896;
    --accent-color: #f8dbb8;
    --accent-bright: #f4b860;
    --text-dark: #20160c;
    --text-medium: #4d3a24;
    --text-light: #7a6a57;
    --bg-cream: #fdf9f2;
    --bg-light: #fbf3e5;
    --bg-white: #ffffff;
    --border-color: rgba(32, 22, 12, 0.12);
    --shadow: 0 12px 30px rgba(32, 22, 12, 0.08);
    --shadow-lg: 0 25px 45px rgba(32, 22, 12, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --gradient-hero: linear-gradient(135deg, #3d2f1c 0%, #7d6238 45%, #b8955a 100%);
    --gradient-cta: linear-gradient(135deg, #b8955a 0%, #d4c4a8 100%);
    --gradient-card: linear-gradient(145deg, rgba(184, 149, 90, 0.08), rgba(255, 255, 255, 0.8));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(32, 22, 12, 0.06);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.logo img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(32, 22, 12, 0.18);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: white;
}

.logo span {
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(248, 219, 184, 0.25);
    color: var(--primary-dark);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-darker);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(244, 200, 150, 0.25), transparent 45%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title em {
    font-style: normal;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle em {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
}

/* Results Section */
.results-section {
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.25rem;
    background: var(--glass-bg);
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(184, 149, 90, 0.2);
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-note {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.25rem;
    background: var(--glass-bg);
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(184, 149, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* CTA Section */
.cta-section {
    background: var(--gradient-cta);
    color: var(--primary-darker);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.6), transparent 55%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.4), transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section h2 em {
    font-style: normal;
    color: var(--primary-darker);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Businesses Section */
.businesses-section {
    background: var(--bg-light);
}

.benefit-section {
    margin: 4rem 0;
}

.benefit-content {
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefit-section.reverse .benefit-content {
    direction: rtl;
}

.benefit-section.reverse .benefit-content > * {
    direction: ltr;
}

.benefit-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-text h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.benefit-image {
    background: var(--gradient-card);
    border-radius: 18px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.benefit-placeholder {
    width: 100%;
    max-width: 360px;
    padding: 2.5rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(184, 149, 90, 0.25), rgba(255, 255, 255, 0.9));
    color: var(--primary-darker);
    text-align: center;
    box-shadow: 0 25px 45px rgba(32, 22, 12, 0.18);
    border: 1px solid rgba(184, 149, 90, 0.35);
}

.benefit-placeholder .placeholder-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-placeholder .placeholder-pill {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(32, 22, 12, 0.85);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.benefit-placeholder p {
    color: var(--text-medium);
    line-height: 1.6;
}

.benefit-screenshot {
    width: 100%;
    max-width: 420px;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(32, 22, 12, 0.25);
    border: 6px solid rgba(255, 255, 255, 0.65);
    object-fit: cover;
}

.placeholder-image {
    font-size: 4rem;
    color: var(--text-light);
}

/* Users Section */
.users-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.users-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.users-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.users-screenshot {
    width: 100%;
    max-width: 380px;
    border-radius: 28px;
    box-shadow: 0 30px 55px rgba(32, 22, 12, 0.28);
    border: 6px solid rgba(255, 255, 255, 0.7);
    background: white;
}

.users-features {
    background: var(--glass-bg);
    padding: 2.25rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(184, 149, 90, 0.2);
}

.users-feature strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.users-feature ul {
    list-style: none;
    padding-left: 0;
}

.users-feature li {
    padding: 0.5rem 0;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.users-feature li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(184, 149, 90, 0.2);
}

.about-card .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.about-card h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-darker);
}

.about-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-stats {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 0.4rem;
}

.stat-row p {
    color: var(--text-light);
    line-height: 1.6;
}

.founder-quote {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(184, 149, 90, 0.2);
    font-style: italic;
    color: var(--text-medium);
}

.founder-quote span {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-darker);
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--glass-bg);
    padding: 2.25rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(184, 149, 90, 0.2);
}

.review-quote {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.review-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ROI Section */
.roi-section {
    background: var(--bg-light);
}

.roi-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(184, 149, 90, 0.2);
}

.roi-content p {
    margin-bottom: 1.5rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(140deg, #2d2418 0%, #7d6238 55%, #b8955a 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--primary-darker);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-status {
    display: none;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.form-status.visible {
    display: block;
}

.form-status.success {
    background: #ecfdf5;
    border-color: #34d399;
    color: #065f46;
}

.form-status.error {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

/* Legal Pages */
.legal-section {
    padding: 4rem 0;
    background: var(--bg-cream);
    min-height: calc(100vh - 200px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(184, 149, 90, 0.2);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(184, 149, 90, 0.2);
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.legal-header .last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content section {
    margin-bottom: 1.25rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    margin-top: 1rem;
    font-weight: 600;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-content ul {
    margin: 0.75rem 0;
    padding-left: 2rem;
    color: var(--text-medium);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--glass-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefit-content,
    .users-content {
        grid-template-columns: 1fr;
    }

    .benefit-section.reverse .benefit-content {
        direction: ltr;
    }

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

    .btn-large {
        width: 100%;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

