.hero-modern {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-main-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.highlight-text {
    color: #66B044;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #0a0a0a;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateX(4px);
    background: #1a1a1a;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Image Side */
.hero-image-side {
    position: relative;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.rotating-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.rotating-hero-img.active {
    opacity: 1;
}

/* Floating Circular Badges */
.floating-badge {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

.badge-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: -30px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 20%;
    right: 40px;
    animation-delay: 2s;
}

.badge-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #66B044;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    padding: 100px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.mission-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
    margin-bottom: 24px;
}

.mission-description {
    font-size: 16px;
    line-height: 1.8;
    color: #737373;
}

.mission-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.mission-stat-box {
    padding: 32px;
    background: #fafafa;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
}

.stat-big-number {
    font-size: 64px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-big-label {
    font-size: 15px;
    color: #737373;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION (DARK)
   ============================================ */
.services-dark-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.services-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.1em;
    pointer-events: none;
    white-space: nowrap;
}

.services-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 40px 32px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid #262626;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #404040;
}

.service-card-accent {
    background: linear-gradient(135deg, #66B044 0%, #15803d 100%);
    border: none;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 28px;
}

.service-card-accent .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 24px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-accent .service-btn {
    background: #0a0a0a;
    color: white;
}

.service-btn:hover {
    transform: translateX(4px);
}

.service-btn-arrow {
    transition: transform 0.3s ease;
}

.service-btn:hover .service-btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   FEATURED CAMPAIGNS
   ============================================ */
.campaigns-featured-section {
    padding: 100px 0;
    background: #fafafa;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
}

.section-title-large {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #0a0a0a;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-link:hover {
    transform: translateX(4px);
}

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

.campaign-card-new {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.campaign-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.campaign-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.campaign-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.campaign-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.campaign-card-new:hover .campaign-image-wrapper img {
    transform: scale(1.08);
}

.campaign-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
}

.campaign-progress-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #66B044;
}

.campaign-content-new {
    padding: 28px;
}

.campaign-student-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.student-avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.student-avatar-placeholder-small {
    background: linear-gradient(135deg, #66B044, #15803d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.student-name-small {
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
}

.student-school-small {
    font-size: 13px;
    color: #737373;
}

.campaign-title-new {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.4;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campaign-funding-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.funding-raised {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.amount-large {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
}

.amount-small {
    font-size: 13px;
    color: #a3a3a3;
}

.funding-donors {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #737373;
}

.progress-bar-slim {
    height: 6px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-slim {
    height: 100%;
    background: linear-gradient(90deg, #66B044 0%, #15803d 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.faq-image-side {
    position: relative;
}

.faq-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.faq-overlay-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.overlay-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: #66B044;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.badge-text {
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
}

.faq-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #737373;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #66B044;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #66B044;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #737373;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.section-title-center {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card-modern {
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-stars-modern {
    color: #f59e0b;
    font-size: 24px;
    margin-bottom: 8px;
}

.testimonial-rating-label {
    font-size: 13px;
    font-weight: 600;
    color: #66B044;
    margin-bottom: 20px;
}

.testimonial-text-modern {
    font-size: 15px;
    line-height: 1.8;
    color: #525252;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-photo-modern {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-fallback {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66B044, #15803d);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.author-name-modern {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 4px;
}

.author-title-modern {
    font-size: 14px;
    color: #737373;
}

/* ============================================
   CTA BOLD SECTION
   ============================================ */
.cta-bold-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #66B044 0%, #15803d 100%);
    position: relative;
    overflow: hidden;
}

.cta-content-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cta-big-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
}

.cta-circle-btn {
    width: 100px;
    height: 100px;
    background: white;
    color: #66B044;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cta-circle-btn:hover {
    transform: scale(1.1) rotate(45deg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-split,
    .mission-grid,
    .faq-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-main-title {
        font-size: 56px;
    }

    .campaigns-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid-2 {
        grid-template-columns: 1fr;
    }

    .section-header-split {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 42px;
    }

    .services-grid,
    .campaigns-grid-3 {
        grid-template-columns: 1fr;
    }

    .section-title-large,
    .services-title,
    .faq-title,
    .section-title-center,
    .mission-title {
        font-size: 36px;
    }

    .cta-big-title {
        font-size: 42px;
    }

    .hero-main-image {
        height: 500px;
    }

    .stat-big-number {
        font-size: 48px;
    }

    .services-watermark {
        font-size: 80px;
    }
}

/* =====================================================
   IMPACT SPREAD PROMO SECTION
   ===================================================== */
.impact-spread-promo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.impact-spread-promo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 184, 114, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.impact-spread-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #66B044 0%, #10B981 100%);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(109, 184, 114, 0.3);
}

.impact-spread-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.impact-spread-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 32px;
}

.impact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 500;
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
    stroke-width: 3;
}

.impact-spread-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #66B044 0%, #10B981 100%);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(109, 184, 114, 0.3);
}

.impact-spread-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(109, 184, 114, 0.4);
}

.impact-spread-cta-btn svg {
    transition: transform 0.3s;
}

.impact-spread-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Impact Spread Image Side */
.impact-spread-image-side {
    position: relative;
}

.impact-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.impact-overlay-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Old visualization - keeping for backwards compatibility */
.spread-visualization {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.central-donation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #66B044 0%, #10B981 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(102, 176, 68, 0.5);
    z-index: 10;
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(102, 176, 68, 0.5);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 20px 50px rgba(102, 176, 68, 0.7);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.donation-icon {
    font-size: 40px;
    font-weight: 800;
    color: white;
}

.donation-label {
    font-size: 12px;
    font-weight: 700;
    color: white;
    margin-top: 4px;
    text-align: center;
}

/* Orbit Circle for Students */
.spread-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border: 2px dashed rgba(102, 176, 68, 0.2);
    border-radius: 50%;
    animation: rotateOrbit 45s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hide other orbit lines */
.line-2, .line-3, .line-4 {
    display: none;
}

.student-recipient {
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border: 4px solid #66B044;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 176, 68, 0.3);
    overflow: hidden;
    animation: orbit 30s linear infinite;
    top: 50%;
    left: 50%;
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(170px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(170px) rotate(-360deg);
    }
}

.recipient-icon {
    font-size: 42px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Different orbit speeds and starting positions for each student */
.recipient-1 {
    animation-delay: 0s;
    border-color: #66B044;
}

.recipient-1 .recipient-icon {
    background: linear-gradient(135deg, #66B044 0%, #10B981 100%);
}

.recipient-2 {
    animation-delay: -3s;
    border-color: #66B044;
}

.recipient-2 .recipient-icon {
    background: linear-gradient(135deg, #66B044 0%, #10B981 100%);
}

.recipient-3 {
    animation-delay: -6s;
    border-color: #66B044;
}

.recipient-3 .recipient-icon {
    background: linear-gradient(135deg, #66B044 0%, #10B981 100%);
}

.recipient-4 {
    animation-delay: -9s;
    border-color: #66B044;
}

.recipient-4 .recipient-icon {
    background: linear-gradient(135deg, #66B044 0%, #10B981 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .impact-spread-promo-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .spread-visualization {
        height: 400px;
    }

    .impact-spread-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .impact-spread-promo-section {
        padding: 60px 0;
    }

    .impact-spread-title {
        font-size: 32px;
    }

    .impact-spread-description {
        font-size: 16px;
    }

    .spread-visualization {
        height: 350px;
    }

    .central-donation {
        width: 100px;
        height: 100px;
    }

    .donation-icon {
        font-size: 32px;
    }

    .student-recipient {
        width: 70px;
        height: 70px;
    }

    .recipient-icon {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .impact-spread-title {
        font-size: 28px;
    }

    .impact-spread-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 16px 28px;
    }

    .spread-visualization {
        height: 300px;
    }
}

/* =====================================================
   PARTNERS SHOWCASE SECTION
   ===================================================== */
.partners-showcase-section {
    padding: 80px 0;
    background: white;
}

.partners-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.partners-showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.view-all-partners {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.view-all-partners:hover {
    gap: 12px;
}

.view-all-partners svg {
    transition: transform 0.3s;
}

.view-all-partners:hover svg {
    transform: translateX(4px);
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.partner-logo-box {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.partner-logo-box:hover {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(109, 184, 114, 0.15);
    transform: translateY(-4px);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo-box a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--body-text);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-showcase-section {
        padding: 60px 0;
    }

    .partners-showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .partners-showcase-title {
        font-size: 2rem;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo-box {
        padding: 24px;
        min-height: 100px;
    }
}

@media (max-width: 576px) {
    .partners-showcase-title {
        font-size: 1.75rem;
    }

    .partners-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Ambassador Promo Section */
.ambassador-promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

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

.ambassador-badge {
    display: inline-block;
    background: linear-gradient(135deg, #66b044, #4a9030);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.ambassador-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a0a0a;
    margin: 0 0 20px;
}

.ambassador-description {
    font-size: 17px;
    line-height: 1.7;
    color: #525252;
    margin-bottom: 28px;
}

.ambassador-benefits {
    margin-bottom: 32px;
}

.ambassador-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.ambassador-benefits .benefit-item svg {
    color: #66b044;
    flex-shrink: 0;
}

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

.ambassador-promo-image {
    position: relative;
}

.ambassador-promo-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ambassador-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #66b044 0%, #4a9030 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ambassador-placeholder span {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .ambassador-promo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ambassador-promo-image {
        order: -1;
        text-align: center;
    }

    .ambassador-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .ambassador-promo-section {
        padding: 60px 0;
    }

    .ambassador-title {
        font-size: 28px;
    }

    .ambassador-cta-buttons {
        flex-direction: column;
    }

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