.landing-page {
    --lp-bg: #061528;
    --lp-bg-soft: #0c2747;
    --lp-text: #ffffff;
    --lp-muted: #c6d9f1;
    --lp-primary: #00c853;
    --lp-primary-hover: #00a848;
    --lp-secondary: #ff6f00;
    --lp-secondary-hover: #e86100;
    --lp-shadow: 0 14px 34px rgba(2, 14, 28, 0.34);
}

.landing-page.landing-tech {
    --lp-bg: #111827;
    --lp-bg-soft: #1e293b;
    --lp-text: #f8fafc;
    --lp-muted: #d9e4f5;
    --lp-primary: #2563eb;
    --lp-primary-hover: #1d4ed8;
    --lp-secondary: #f59e0b;
    --lp-secondary-hover: #d97706;
}

.landing-page.landing-volunteer {
    --lp-bg: #052e2b;
    --lp-bg-soft: #0e4943;
    --lp-text: #f3fffd;
    --lp-muted: #d0efe9;
    --lp-primary: #00b894;
    --lp-primary-hover: #00a383;
    --lp-secondary: #ff7675;
    --lp-secondary-hover: #e56a68;
}

.landing-page .landing-hero {
    position: relative;
    min-height: 80vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--lp-text);
}

.landing-page .landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(3, 18, 37, 0.9) 12%, rgba(7, 28, 56, 0.76) 46%, rgba(3, 18, 37, 0.88) 100%);
}

.landing-page .landing-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.landing-page .landing-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page .landing-hero-content {
    position: relative;
    padding: clamp(2rem, 7vw, 5rem) 0;
    max-width: 670px;
}

.landing-page .landing-tag {
    display: inline-block;
    margin-bottom: 1rem;
    background: rgba(0, 200, 83, 0.2);
    color: #8dffba;
    border: 1px solid rgba(0, 200, 83, 0.46);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.84rem;
    font-weight: 600;
}

.landing-page .landing-hero h1 {
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    line-height: 1.08;
    margin: 0 0 1rem;
    color: var(--lp-text);
}

.landing-page .landing-hero p {
    font-size: clamp(1rem, 1vw + 0.7rem, 1.2rem);
    color: var(--lp-muted);
    margin: 0 0 1.4rem;
    line-height: 1.6;
}

.landing-page .landing-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    display: grid;
    gap: 0.7rem;
}

.landing-page .landing-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.landing-page .landing-benefits li::before {
    content: "✓";
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #00c853;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.landing-page .landing-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.landing-page .landing-btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    padding: clamp(0.62rem, 0.7vw + 0.5rem, 0.88rem) clamp(0.95rem, 1.1vw + 0.65rem, 1.35rem);
    font-weight: 700;
    box-shadow: var(--lp-shadow);
    text-align: center;
    font-size: clamp(0.88rem, 0.6vw + 0.72rem, 1rem);
    line-height: 1.2;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.3s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.landing-page .landing-btn-primary {
    background: var(--lp-primary);
    color: #fff;
    border-color: color-mix(in srgb, var(--lp-primary) 72%, #ffffff 28%);
    animation: landingPulseGlow 2.5s ease-in-out infinite;
}

.landing-page .landing-btn-primary:hover {
    background: var(--lp-primary-hover);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 2px color-mix(in srgb, var(--lp-primary) 45%, transparent 55%),
        0 0 22px color-mix(in srgb, var(--lp-primary) 70%, transparent 30%),
        0 10px 22px rgba(7, 23, 45, 0.28);
}

.landing-page .landing-btn-secondary {
    background: var(--lp-secondary);
    color: #fff;
}

.landing-page .landing-btn-secondary:hover {
    background: var(--lp-secondary-hover);
}

@keyframes landingPulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 1px color-mix(in srgb, var(--lp-primary) 35%, transparent 65%),
            0 0 14px color-mix(in srgb, var(--lp-primary) 55%, transparent 45%),
            0 8px 18px rgba(7, 23, 45, 0.24);
    }
    50% {
        transform: scale(1.03);
        box-shadow:
            0 0 0 2px color-mix(in srgb, var(--lp-primary) 52%, transparent 48%),
            0 0 24px color-mix(in srgb, var(--lp-primary) 72%, transparent 28%),
            0 12px 24px rgba(7, 23, 45, 0.32);
    }
}

.landing-page .landing-section {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.landing-page .landing-section-light {
    background: linear-gradient(180deg, #f6fbff 0%, #ebf5ff 100%);
    color: #1d2f46;
}

.landing-page .landing-section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2vw + 0.8rem, 2.2rem);
    line-height: 1.2;
}

.landing-page .landing-section p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.landing-page .landing-cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.landing-page .landing-card {
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 48, 84, 0.12);
    padding: 1.2rem;
}

.landing-page .landing-card h3 {
    margin: 0 0 0.6rem;
    color: #16395e;
}

.landing-page .landing-cta-section {
    background: linear-gradient(145deg, var(--lp-bg-soft), var(--lp-bg));
    color: var(--lp-text);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-page .landing-cta-inner {
    text-align: center;
}

.landing-page .landing-cta-inner p {
    color: var(--lp-muted);
    margin-bottom: 1.2rem;
}

.bach-copy-section {
    padding: clamp(126px, 12vw, 160px) 0 clamp(28px, 3vw, 40px);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.bach-copy-box {
    background: #ffffff;
    border: 1px solid rgba(26, 58, 97, 0.12);
    border-radius: 18px;
    padding: clamp(1.25rem, 3.3vw, 2.25rem);
    box-shadow: 0 18px 46px rgba(18, 45, 80, 0.16);
    color: #173452;
}

.bach-copy-title {
    color: #123154;
    text-align: center;
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.bach-copy-box p {
    color: #3a536f;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.bach-copy-box h3 {
    color: #0e7d5b;
    margin: 1.35rem 0 0.75rem;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.bach-copy-bullets {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.bach-copy-bullets li {
    color: #3a536f;
    line-height: 1.7;
    margin: 0.6rem 0;
}

.bach-video-wrap {
    margin-top: 1.35rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 58, 97, 0.16);
    background: #0f223a;
}

.bach-video-wrap .video-js {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 240px;
}

.volunteer-tourism-section {
    background: linear-gradient(180deg, #f5fffc 0%, #edf8f6 100%);
    color: #1e3145;
}

.volunteer-tourism-section h2 {
    color: #0d7b69;
    margin-bottom: 1rem;
}

.volunteer-tourism-lead {
    font-size: 1.06rem;
    color: #36556e;
    margin-bottom: 0.9rem;
}

.volunteer-tourism-section p {
    color: #4b667d;
    margin-bottom: 0.85rem;
}

.volunteer-tourism-bullets {
    list-style: none;
    margin: 0.8rem 0 1.15rem;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.volunteer-tourism-bullets li {
    background: #ffffff;
    border: 1px solid rgba(31, 139, 122, 0.2);
    border-left: 4px solid #14a388;
    border-radius: 11px;
    padding: 0.72rem 0.82rem;
    color: #35526a;
    line-height: 1.6;
}

.volunteer-tourism-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.volunteer-tourism-gallery__item {
    margin: 0;
    border-radius: 14px;
    padding: 3px;
    background: linear-gradient(135deg, #00b894 0%, #5c9bd1 56%, #ff7675 100%);
    box-shadow: 0 10px 24px rgba(20, 97, 82, 0.2);
}

.volunteer-tourism-gallery__item img {
    display: block;
    width: 100%;
    height: clamp(190px, 20vw, 250px);
    object-fit: cover;
    border-radius: 11px;
}

.volunteer-requirements {
    margin-top: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(20, 129, 110, 0.26);
    border-radius: 14px;
    padding: 1rem 1rem 1.05rem;
    box-shadow: 0 10px 24px rgba(19, 86, 74, 0.12);
}

.volunteer-requirements h3 {
    margin: 0 0 0.7rem;
    color: #0c6e5e;
    font-size: clamp(1.04rem, 1.2vw, 1.2rem);
}

.volunteer-requirements__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.45rem;
}

.volunteer-requirements__list li {
    color: #35526a;
    line-height: 1.62;
}

@media (max-width: 780px) {
    .landing-page .landing-hero {
        min-height: 68vh;
    }

    .landing-page .landing-hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-page .landing-benefits {
        justify-items: center;
    }

    .landing-page .landing-benefits li {
        justify-content: center;
    }

    .landing-page .landing-cta-row {
        justify-content: center;
    }

    .landing-page .landing-section h2,
    .landing-page .landing-section p {
        text-align: center;
    }

    .landing-page .landing-card {
        text-align: center;
    }

    .landing-page .landing-cta-row .landing-btn {
        width: auto;
        max-width: 100%;
    }

    .bach-copy-box p {
        text-align: center;
    }

    .bach-copy-box h3 {
        text-align: center;
    }

    .bach-copy-bullets {
        text-align: left;
        list-style-position: inside;
    }

    .bach-copy-section {
        padding-top: 108px;
    }

    .bach-video-wrap .video-js {
        min-height: 200px;
    }

    .volunteer-tourism-gallery {
        grid-template-columns: 1fr;
    }

    .volunteer-requirements {
        padding: 0.92rem;
    }
}
