/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 40%, #f0fdf4 100%);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 78, 59, 0.08);
    color: #064e3b;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: #059669;
}

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #064e3b;
    margin: 0;
}

.hero-headline .highlight {
    color: #059669;
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(5, 150, 105, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtext {
    font-size: 18px;
    color: #065f46;
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #059669;
    color: #ffffff;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #064e3b;
    border: 2px solid #064e3b;
}

.btn-secondary:hover {
    background: #064e3b;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
}


/* ============================================ */
/* TRUST BANNER                                 */
/* ============================================ */
.trust-banner {
    background: #064e3b;
    padding: 24px 0;
    border-top: 3px solid #059669;
    border-bottom: 3px solid #059669;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

.trust-item i {
    font-size: 22px;
    color: #34d399;
}


/* ============================================ */
/* ORGANS SECTION                               */
/* ============================================ */
.organs-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 12px;
}

.section-header h2 .highlight {
    color: #059669;
}

.section-header p {
    color: #4b5563;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.organs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.organ-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

.organ-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12);
    border-color: #059669;
}

.organ-image-wrapper {
    width: 100%;
    padding-top: 75%;
    position: relative;
    background: #f9fafb;
    overflow: hidden;
}

.organ-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.organ-card:hover .organ-image-wrapper img {
    transform: scale(1.05);
}

.organ-info {
    padding: 24px;
}

.organ-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 8px;
}

.organ-info p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.organ-link {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.organ-link:hover {
    color: #047857;
}

.other-organs-card {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #059669;
}


/* ============================================ */
/* CTA SECTION                                  */
/* ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content h2 span {
    color: #34d399;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #ffffff;
    color: #064e3b;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: #f0fdf4;
}

.btn-cta i {
    font-size: 20px;
}


/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 1024px) {
    .organs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 0 40px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-subtext {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-headline {
        font-size: 38px;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .trust-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 32px;
    }

    /* MOBILE FIX:
       Prevents the green highlight bar from
       overlapping wrapped headline text */
    .hero-headline .highlight::after {
        display: none;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .organs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .trust-grid {
        gap: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0 30px 0;
    }

    .hero-headline {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .organs-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        flex-direction: column;
        gap: 12px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}