/*        @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Fraunces:wght@600;700;800&display=swap');*/

:root {
    --primary: #0F4C3A;
    --primary-light: #1A6B52;
    --accent: #E8F26D;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --bg-cream: #FBF9F4;
    --bg-light: #F5F5F0;
    --white: #FFFFFF;
    --border-radius: 16px;
}

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



/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    radial-gradient(circle at 20% 50%, rgba(232, 242, 109, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 242, 109, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    background-color: #f0fa85;
}

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

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Video Section */
.video-section {
    background: var(--white);
    padding: 4rem 0;
    margin-top: 3rem;
    border-radius: var(--border-radius);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

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

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

.community-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.community-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

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

.community-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Two Column Sections */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.two-col-section.reverse {
    direction: rtl;
}

.two-col-section.reverse > * {
    direction: ltr;
}

.col-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.col-image img {
    width: 100%;
    display: block;
}

.col-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.col-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.col-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.col-content ul li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.col-content ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 0;
}

.pricing-section .section-header h2,
.pricing-section .section-header p {
    color: var(--white);
}

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

.pricing-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.pricing-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-card .price-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    min-height: 50px;
}

.pricing-card hr {
    border: none;
    border-top: 2px solid var(--bg-light);
    margin: 2rem 0;
}

.pricing-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.pricing-card ul li::before {
    content: '✔';
    color: var(--primary);
    margin-right: 0.8rem;
    font-weight: bold;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.btn-solid {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background: var(--primary-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .two-col-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col-section.reverse {
        direction: ltr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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