/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1B6B4A;
    --primary-dark: #145238;
    --primary-light: #2A9D6E;
    --accent: #F5A623;
    --accent-dark: #D4891A;
    --dark: #1a1a2e;
    --dark-alt: #16213e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

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

.highlight {
    color: var(--primary);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 48px;
    color: var(--gray);
    font-size: 1.05rem;
    text-align: center;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

.btn-nav {
    padding: 10px 22px;
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
    font-weight: 700;
}

.btn-nav:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero === */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #b8c5d6;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.hero-cta .btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 20px 60px rgba(27, 107, 74, 0.3);
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Proof Section === */
.proof {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.proof h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.stat {
    padding: 32px 20px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* === About Section === */
.about {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: left;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-light);
}

.about-card.dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-card.dark h3 {
    color: var(--accent);
}

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

.about-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.about-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.about-card.dark ul li::before {
    content: '✕';
    color: #e74c3c;
}

/* === Why Us Section === */
.why-us {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.why-us h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.why-us .highlight {
    color: var(--accent);
}

.why-us .section-subtitle {
    color: #b8c5d6;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.comparison-col {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.comparison-header.bad {
    background: rgba(231, 76, 60, 0.2);
}

.comparison-header.good {
    background: rgba(42, 157, 110, 0.3);
}

.comparison-icon {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-header.bad .comparison-icon {
    color: #e74c3c;
}

.comparison-header.good .comparison-icon {
    color: var(--primary-light);
}

.comparison-header h3 {
    font-size: 1.1rem;
}

.comparison-col ul {
    list-style: none;
    padding: 24px 32px;
    text-align: left;
}

.comparison-col ul li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #ccc;
    font-size: 0.95rem;
}

.comparison-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.reasons h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

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

.reason {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.reason-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.reason p:last-child {
    color: #b8c5d6;
    font-size: 0.9rem;
}

/* === Pricing Section === */
.pricing {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-light);
}

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

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* === Contact Section === */
.contact {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: block;
    padding: 40px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.contact-card.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
}

.contact-card.venmo {
    background: linear-gradient(135deg, #3D95CE 0%, #008CFF 100%);
}

.contact-icon {
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* === Footer === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--accent);
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #b8c5d6;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-placeholder {
        max-width: 300px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-alt);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

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

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }
}

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 1.6rem !important;
    }
}
