/* Import fonts from Google Fonts with fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Variables - WordPress Compatible */
:root {
    --primary-green: #299b8e;
    --primary-green-dark: #237a70;
    --primary-green-light: #3fb5a8;
    --secondary-yellow: #f7b801;
    --secondary-yellow-light: #ffd43b;
    --secondary-orange: #d8a442;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --text-dark: #293340;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-lighter: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Error states */
.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

.animate-in {
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    z-index: 10;
    text-align: left;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero h1 .highlight {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta-group .cta-secondary {
    font-size: 0.70rem;
}

.hero-cta-group .cta-primary {
    grid-column: 1 / -1;
}

.cta-primary {
    background: var(--primary-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-green-dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary span {
    position: relative;
    z-index: 1;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-green);
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
}

.cta-secondary:hover {
    gap: 0.75rem;
    background: var(--primary-green);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    flex: 1;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

.hero-image {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-sunflower {
    width: 80%;
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(41, 155, 142, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 2.5rem 0;
    border: 1px solid var(--border-light);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-md);
}

.trust-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

/* Value Section */
.value-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 400;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-yellow));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: translateX(0);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.value-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-green);
    opacity: 0.05;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
}

.feature-card:hover::after {
    width: 200%;
    height: 200%;
    bottom: -50%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* SDG Section */
.sdg-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sdg-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary-yellow) 0%, transparent 70%);
    opacity: 0.03;
    transform: translate(-50%, -50%);
}

.sdg-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
    margin: 3rem auto;
    max-width: 800px;
}

.sdg-icon {
    aspect-ratio: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.sdg-icon:hover {
    transform: scale(1.15) rotate(5deg);
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

.sdg-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Events Section - Simple Version */
.events-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.events-calendar-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.events-calendar-embed {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.events-calendar-embed iframe {
    width: 100%;
    border: none;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
}

.events-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Programs Section */
.programs-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.programs-carousel {
    margin-top: 3rem;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.scroll-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0.8;
    border: none;
}

.scroll-hint:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.scroll-hint.left {
    left: 0;
}

.scroll-hint.right {
    right: 0;
}

.programs-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 2rem;
    scroll-behavior: smooth;
    position: relative;
}

.program-card {
    flex: 0 0 320px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.program-header {
    padding: 2rem;
    background: white;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.program-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.program-badge.accelerator {
    background: var(--primary-green);
}

.program-badge.workshop {
    background: var(--secondary-yellow);
    color: var(--text-dark);
}

.program-badge.partner {
    background: var(--accent-purple);
}

.program-logo {
    height: 80px;
    max-width: 308px;
    object-fit: contain;
    margin-top: 2rem;
}

.program-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-body p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.program-cta {
    display: block;
    text-align: center;
    padding: 0.625rem 1.125rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
}

.program-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-green-dark);
    transition: left 0.3s ease;
}

.program-cta:hover::before {
    left: 0;
}

.program-cta span {
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-highlight {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-yellow-light));
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    display: inline-block;
    margin: 0 auto 3rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-highlight a {
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.pricing-highlight a:hover {
    text-decoration-thickness: 3px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
    background: linear-gradient(180deg, white 0%, rgba(41, 155, 142, 0.02) 100%);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

#team-plus-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

#team-plus-price .currency {
    font-size: 1.5rem;
}

#team-plus-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
}

#team-plus-price .period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: normal;
}

.pricing-period {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.billing-dropdown {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: white;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-dropdown:hover {
    border-color: var(--primary-green);
}

.billing-dropdown:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(41, 155, 142, 0.1);
}

.users-country {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.discount-code {
    background: var(--secondary-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discount-code.discount-active {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-yellow-light));
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    font-size: 1rem;
    margin-top: auto;
}

.pricing-card .pricing-cta {
    background: transparent;
    color: var(--primary-green);
}

.pricing-card .pricing-cta:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-cta {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--primary-green-dark);
}

/* Education Section */
.education-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.education-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.05;
}

.education-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: var(--secondary-yellow);
    border-radius: 50%;
    opacity: 0.05;
}

.education-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    max-width: 1000px;
    margin: 3rem auto 0;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.education-image {
    order: -1;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.education-image:hover img {
    transform: scale(1.05);
}

.education-content {
    padding: 3rem;
    background: white;
}

.education-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
}

.education-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    max-width: 700px;
}

.education-features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.education-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.education-features li::before {
    content: '→';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.education-features li:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-green);
}

.education-features li:hover::before {
    transform: translateX(5px);
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.3rem;
}

.news-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
    flex: 1;
}

.news-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    gap: 0.75rem;
}

/* Loading state for news */
.news-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-section .section-header {
    margin-bottom: 3rem;
}

.partners-carousel-wrapper {
    position: relative;
}

.partners-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0.8;
    border: none;
}

.partners-scroll-btn:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.partners-scroll-btn.left {
    left: 1rem;
}

.partners-scroll-btn.right {
    right: 1rem;
}

.logo-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 3rem;
    scroll-behavior: smooth;
    width: 100%;
}

.logo-slider::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    align-items: center;
    animation: scroll-partners 20s linear infinite;
    min-height: 80px;
    white-space: nowrap;
}

.slider-track.paused {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 2.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 0;
    flex-shrink: 0;
    min-width: fit-content;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Demo CTA Section */
.demo-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.demo-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="3" fill="white" opacity="0.1"/></svg>');
    animation: infiniteScroll 30s linear infinite;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(33.33%);
    }
}

.demo-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.demo-cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.demo-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.demo-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-cta-buttons .cta-primary,
.demo-cta-buttons .cta-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.demo-cta-buttons .cta-primary {
    background: white;
    color: var(--primary-green);
}

.demo-cta-buttons .cta-primary:hover {
    background: var(--bg-light);
}

.demo-cta-buttons .cta-secondary {
    border-color: white;
    color: white;
}

.demo-cta-buttons .cta-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* Partner Section */
.partner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.partner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/></svg>');
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.partner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.partner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.partner-feature {
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-feature:hover {
    transform: translateY(-5px);
}

.partner-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.partner-feature:hover .partner-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.partner-feature h4 {
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.partner-feature p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.2;
    font-family: 'Georgia', serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-gray);
    position: relative;
    z-index: 10;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-lighter);
    text-align: center;
    position: relative;
    border-radius: var(--radius-xl);
    margin: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .cta-primary,
.cta-buttons .cta-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Scrollbar Styling */
.programs-container::-webkit-scrollbar {
    height: 8px;
}

.programs-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.programs-container::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.programs-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .education-wrapper {
        margin: 3rem 1.5rem 0;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Mobile-specific */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero,
    .trust-bar,
    .value-section,
    .features-section,
    .sdg-section,
    .events-section,
    .programs-section,
    .pricing-section,
    .education-section,
    .news-section,
    .partners-section,
    .demo-cta-section,
    .partner-section,
    .testimonials-section,
    .cta-section {
        margin: 0.5rem;
        border-radius: var(--radius-lg);
        padding: 3rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-cta-group {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .demo-cta-buttons {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .demo-cta-buttons .cta-primary,
    .demo-cta-buttons .cta-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .value-grid,
    .news-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-bar {
        padding: 1.5rem 0;
    }
    
    .trust-content {
        gap: 1rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
        padding-top: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .value-card,
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .demo-cta-content {
        padding: 0 1rem;
    }
    
    .demo-cta-content h2 {
        margin-bottom: 1rem;
    }
    
    .demo-cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .partner-content {
        padding: 0 1rem;
    }
    
    .partner-features {
        grid-template-columns: 1fr;
    }
    
    .programs-carousel {
        padding: 0 1rem;
    }
    
    .programs-container {
        gap: 1rem;
    }
    
    .program-card {
        flex: 0 0 260px;
    }
    
    .scroll-hint,
    .partners-scroll-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .pricing-highlight {
        margin: 0 1rem 2rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-sunflower {
        width: 100%;
        max-width: 300px;
    }
    
    .sdg-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 0.5rem;
    }
    
    .partner-logo {
        max-height: 40px;
        margin: 0 1.5rem;
    }
    
    .slider-track {
        min-height: 60px;
    }
    
    .education-image {
        height: 250px;
    }
    
    .education-content {
        padding: 2rem;
    }
    
    .education-features {
        grid-template-columns: 1fr;
    }

    /* Events Section Mobile */
    .events-section {
        margin: 0.5rem;
        padding: 3rem 0;
    }
    
    .events-calendar-container {
        margin: 2rem auto 0;
    }
    
    .events-calendar-embed {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .events-calendar-embed iframe {
        height: 350px;
    }
    
    .events-actions {
        flex-direction: column;
    }
    
    .events-actions .cta-primary,
    .events-actions .cta-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }

    /* Events Section Extra Small Mobile */
    .events-calendar-embed iframe {
        height: 300px;
    }
    
    .events-calendar-embed {
        padding: 1rem;
    }
}