@keyframes heroHalo {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.45;
    }
    50% {
        transform: translate3d(10%, -8%, 0) scale(1.15);
        opacity: 0.75;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --impactus-sky: #4DB0CB;
    --impactus-sky-soft: rgba(77, 176, 203, 0.2);
    --impactus-deep: #202053;
    --impactus-carbon: #161615;
    --impactus-night: #0A0A16;
    --impactus-white: #FFFFFF;
    --impactus-cream: rgba(255, 255, 255, 0.82);
    --impactus-electric: #5DE2FF;
    --impactus-shadow: rgba(2, 5, 12, 0.55);
}

body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    background: radial-gradient(140% 120% at 0% 0%, rgba(77, 176, 203, 0.12) 0%, rgba(22, 22, 21, 0) 60%), linear-gradient(180deg, #06060B 0%, #010102 100%);
    color: var(--impactus-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .cta-button {
    font-family: 'Poppins', sans-serif;
}

.page-glow {
    position: fixed;
    inset: -40vh -40vw;
    pointer-events: none;
    background: radial-gradient(40% 40% at 10% 15%, rgba(77, 176, 203, 0.08) 0%, rgba(77, 176, 203, 0) 100%);
    z-index: -1;
    animation: panGlow 18s ease-in-out infinite alternate;
}

@keyframes panGlow {
    0% {
        transform: translate3d(-10%, -6%, 0) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translate3d(8%, 6%, 0) scale(1.15);
        opacity: 0.8;
    }
    100% {
        transform: translate3d(-4%, 12%, 0) scale(0.95);
        opacity: 0.45;
    }
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--impactus-deep) 0%, var(--impactus-sky) 100%);
    color: var(--impactus-white);
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(32, 32, 83, 0.35);
}

.top-banner strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-banner-text {
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(120% 140% at 15% 20%, rgba(77, 176, 203, 0.18) 0%, rgba(32, 32, 83, 0) 55%), linear-gradient(150deg, #0B0B12 0%, #161622 55%, #0A0A14 100%);
    margin-top: 48px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(77, 176, 203, 0.32) 0%, rgba(77, 176, 203, 0) 80%);
    filter: blur(12px);
    opacity: 0.55;
    animation: heroHalo 14s ease-in-out infinite;
}

.hero::before {
    top: -12%;
    left: -18%;
}

.hero::after {
    bottom: -18%;
    right: -10%;
    animation-delay: -6s;
}

/* Logo with circular design and particles */
.logo-container {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--impactus-sky);
    box-shadow: 0 0 30px rgba(77, 176, 203, 0.4);
    position: relative;
    z-index: 10;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 0 26px rgba(77, 176, 203, 0.35);
    }
    100% {
        box-shadow: 0 0 55px rgba(77, 176, 203, 0.6);
    }
}

/* Spiral particles around logo */
.logo-container::before,
.logo-container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid transparent;
    border-top: 2px solid var(--impactus-sky);
    border-radius: 50%;
    animation: spiral 4s linear infinite;
}

.logo-container::before {
    animation-delay: 0s;
    opacity: 0.7;
}

.logo-container::after {
    animation-delay: -2s;
    opacity: 0.4;
    width: 350px;
    height: 350px;
    border-top: 2px solid var(--impactus-sky);
    border-right: 2px solid var(--impactus-sky);
}

@keyframes spiral {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--impactus-sky);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 10%;
    right: 30%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 1;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rotating-text {
    color: var(--impactus-sky);
    display: inline-block;
    min-width: 200px;
    text-align: left;
    position: relative;
    vertical-align: baseline;
    line-height: 1.2;
    transform-origin: center center;
}

.rotating-text.falling {
    animation: fallDown 0.6s ease-in forwards;
}

.rotating-text.rising {
    animation: riseUp 0.6s ease-out forwards;
}

@keyframes fallDown {
    0% {
        transform: translateY(0) rotateX(0deg) translateZ(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px) rotateX(45deg) translateZ(-20px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(20px) rotateX(90deg) translateZ(-40px);
        opacity: 0;
    }
}

@keyframes riseUp {
    0% {
        transform: translateY(-20px) rotateX(-90deg) translateZ(-40px);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) rotateX(-45deg) translateZ(-20px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0) rotateX(0deg) translateZ(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, var(--impactus-sky) 0%, var(--impactus-electric) 100%);
    color: var(--impactus-carbon);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 18px 40px rgba(77, 176, 203, 0.35);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(77, 176, 203, 0.45);
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: radial-gradient(120% 140% at 85% -10%, rgba(77, 176, 203, 0.18) 0%, rgba(10, 10, 10, 0) 60%), linear-gradient(180deg, #0B0B12 0%, #11111A 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--impactus-sky);
    letter-spacing: 0.04em;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel-slide {
    min-width: calc(33.333% - 14px);
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 15px;
    aspect-ratio: 1024/1280;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(77, 176, 203, 0.2);
    color: var(--impactus-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(77, 176, 203, 0.18);
}

.carousel-nav:hover {
    background: var(--impactus-sky);
    color: var(--impactus-carbon);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--impactus-sky);
}

.programs-cta {
    text-align: center;
    margin-top: 50px;
}

/* Social Proof Section */
.social-proof {
    padding: 110px 0;
    background: linear-gradient(140deg, #080811 0%, #141D2C 45%, #09080F 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    inset: -120px -60px 40px;
    background: radial-gradient(50% 60% at 10% 10%, rgba(77, 176, 203, 0.28) 0%, rgba(77, 176, 203, 0) 70%);
    opacity: 0.6;
    filter: blur(0.5px);
    pointer-events: none;
}

.social-proof::after {
    content: '';
    position: absolute;
    inset: 20% -40% -80px 55%;
    background: radial-gradient(60% 65% at 50% 50%, rgba(77, 176, 203, 0.18) 0%, rgba(77, 176, 203, 0) 75%);
    opacity: 0.4;
    pointer-events: none;
}

.social-proof .container {
    position: relative;
    z-index: 2;
}

.social-proof__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 70px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-proof__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(77, 176, 203, 0.45);
    background: rgba(77, 176, 203, 0.1);
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto;
}

.social-proof__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
}

.social-proof__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.social-proof-card {
    position: relative;
    padding: 36px 32px;
    border-radius: 24px;
    background: rgba(22, 26, 36, 0.88);
    border: 1px solid rgba(77, 176, 203, 0.32);
    box-shadow: 0 24px 45px rgba(2, 8, 20, 0.55);
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    animation: driftUp 10s ease-in-out infinite;
}

.social-proof-card:nth-child(2) {
    animation-delay: 1.8s;
}

.social-proof-card:nth-child(3) {
    animation-delay: 3.6s;
}

.social-proof-card::before {
    content: '';
    position: absolute;
    inset: -40% -20% 30% -30%;
    background: radial-gradient(45% 55% at 50% 50%, rgba(77, 176, 203, 0.28) 0%, rgba(77, 176, 203, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-proof-card:hover {
    transform: translateY(-10px);
    border-color: rgba(77, 176, 203, 0.55);
    box-shadow: 0 32px 60px rgba(77, 176, 203, 0.25);
    animation-play-state: paused;
}

.social-proof-card:hover::before {
    opacity: 1;
}

.social-proof-card__program {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(77, 176, 203, 0.12);
    border: 1px solid rgba(77, 176, 203, 0.35);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: rgba(223, 245, 255, 0.92);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.social-proof-card__program::before {
    content: '\25A0';
    font-size: 0.55rem;
    color: var(--impactus-sky);
}

.social-proof-card__quote {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    position: relative;
}

.social-proof-card__quote::before,
.social-proof-card__quote::after {
    content: '"';
    position: absolute;
    font-size: 2.6rem;
    color: rgba(77, 176, 203, 0.25);
    font-family: 'Poppins', sans-serif;
}

.social-proof-card__quote::before {
    top: -24px;
    left: -14px;
}

.social-proof-card__quote::after {
    bottom: -28px;
    right: -18px;
}

.social-proof-card__footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-proof-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(77, 176, 203, 0.45);
    background: linear-gradient(135deg, rgba(77, 176, 203, 0.28) 0%, rgba(77, 176, 203, 0) 100%);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--impactus-sky);
    letter-spacing: 0.08em;
}

.social-proof-card__avatar span {
    font-size: 0.95rem;
}

.social-proof-card__name {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
}

.social-proof-card__role {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-proof__cta {
    margin-top: 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.social-proof__cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-button--outline {
    background: transparent;
    color: var(--impactus-sky);
    border: 1px solid rgba(77, 176, 203, 0.65);
    box-shadow: none;
}

.cta-button--outline:hover {
    background: rgba(77, 176, 203, 0.12);
    box-shadow: 0 10px 28px rgba(77, 176, 203, 0.25);
}

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

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: radial-gradient(120% 120% at 50% 0%, rgba(77, 176, 203, 0.16) 0%, rgba(10, 11, 18, 0) 55%), linear-gradient(180deg, #0A0A12 0%, #0F111D 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 120% -10%, rgba(77, 176, 203, 0.22) 0%, rgba(10, 11, 18, 0) 65%);
    opacity: 0.45;
    pointer-events: none;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-subtitle {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.benefits-funnel {
    position: relative;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.funnel-axis {
    position: absolute;
    top: -60px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, rgba(77, 176, 203, 0), rgba(77, 176, 203, 0.75), rgba(77, 176, 203, 0));
    animation: pulseAxis 4s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(77, 176, 203, 0.35);
    display: block;
}

.funnel-stage {
    width: 100%;
    max-width: 860px;
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: 36px;
    padding: 38px 44px;
    border-radius: 26px;
    background: rgba(17, 20, 31, 0.9);
    border: 1px solid rgba(77, 176, 203, 0.32);
    box-shadow: 0 22px 50px rgba(5, 8, 18, 0.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    z-index: 1;
}

.funnel-stage::before {
    content: '';
    position: absolute;
    inset: -80% -60%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(77, 176, 203, 0.26) 0%, rgba(77, 176, 203, 0) 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.funnel-stage:hover {
    animation-play-state: paused;
    transform: translateY(-12px);
    border-color: rgba(77, 176, 203, 0.62);
    box-shadow: 0 28px 70px rgba(77, 176, 203, 0.22);
}

.funnel-stage:hover::before {
    opacity: 1;
}

.funnel-stage--top {
    max-width: 860px;
    animation: floatStage 12s ease-in-out infinite;
}

.funnel-stage--middle {
    max-width: 720px;
    animation: floatStage 12s ease-in-out infinite 2s;
}

.funnel-stage--bottom {
    max-width: 580px;
    animation: floatStage 12s ease-in-out infinite 4s;
}

.funnel-stage__marker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.funnel-stage__number {
    font-size: 1rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.funnel-stage__icon {
    width: 82px;
    height: 82px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(77, 176, 203, 0.2) 0%, rgba(77, 176, 203, 0) 100%);
    border: 1px solid rgba(77, 176, 203, 0.45);
    position: relative;
    overflow: hidden;
}

.funnel-stage__icon i {
    font-size: 2rem;
    color: var(--impactus-sky);
}

.funnel-stage__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 50%, rgba(77, 176, 203, 0.45) 0%, rgba(77, 176, 203, 0) 65%);
    opacity: 0.6;
    animation: pulseIcon 3s ease-in-out infinite;
}

.funnel-stage__content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.funnel-stage__content p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 430px;
}

.funnel-stage__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(77, 176, 203, 0.16);
    border: 1px solid rgba(77, 176, 203, 0.45);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(223, 245, 255, 0.92);
}

.funnel-stage__tag::before {
    content: '\25CF';
    font-size: 0.65rem;
    color: var(--impactus-sky);
}

.benefits-metrics {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.metric-card {
    padding: 26px 24px;
    border-radius: 20px;
    border: 1px solid rgba(77, 176, 203, 0.35);
    background: rgba(13, 18, 26, 0.9);
    text-align: center;
    box-shadow: 0 18px 40px rgba(4, 8, 16, 0.52);
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    content: '';
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(45% 45% at 50% 50%, rgba(77, 176, 203, 0.35) 0%, rgba(77, 176, 203, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card:hover::after {
    opacity: 1;
}

.metric-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--impactus-sky);
    display: block;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes pulseAxis {
    0%, 100% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.75;
    }
}

@keyframes pulseIcon {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.1);
    }
}

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

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: radial-gradient(120% 120% at 10% -20%, rgba(77, 176, 203, 0.18) 0%, rgba(12, 12, 18, 0) 55%), linear-gradient(160deg, #0A0A12 0%, #161E2C 60%, #0B0B12 100%);
    text-align: center;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--impactus-sky);
}

.final-cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: linear-gradient(180deg, #08080F 0%, #040406 100%);
    border-top: 1px solid rgba(77, 176, 203, 0.18);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo-container {
    position: relative;
    display: inline-block;
}

.footer-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--impactus-sky);
    box-shadow: 0 0 20px rgba(77, 176, 203, 0.3);
    position: relative;
    z-index: 2;
}

.spiral-animation {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: spiral-rotate 4s linear infinite;
}

.spiral-1 {
    width: 180px;
    height: 180px;
    top: -15px;
    left: -15px;
    border-top-color: var(--impactus-sky);
    border-right-color: var(--impactus-sky);
    animation-delay: 0s;
}

.spiral-2 {
    width: 200px;
    height: 200px;
    top: -25px;
    left: -25px;
    border-bottom-color: rgba(77, 176, 203, 0.55);
    border-left-color: rgba(77, 176, 203, 0.15);
    animation-delay: -1s;
}

.spiral-3 {
    width: 220px;
    height: 220px;
    top: -35px;
    left: -35px;
    border-top-color: rgba(93, 226, 255, 0.4);
    border-right-color: rgba(93, 226, 255, 0.2);
    animation-delay: -2s;
}

.spiral-4 {
    width: 240px;
    height: 240px;
    top: -45px;
    left: -45px;
    border-bottom-color: rgba(32, 32, 83, 0.5);
    border-left-color: rgba(77, 176, 203, 0.12);
    animation-delay: -3s;
}

@keyframes spiral-rotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

.footer-text {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--impactus-sky);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .final-cta-title {
        font-size: 2.2rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .logo-container::before,
    .logo-container::after {
        width: 200px;
        height: 200px;
    }

    .logo-container::after {
        width: 250px;
        height: 250px;
    }

    .social-proof {
        padding: 90px 0;
    }

    .social-proof__header {
        margin-bottom: 60px;
    }

    .social-proof__grid {
        gap: 24px;
    }

    .social-proof-card {
        padding: 32px 26px;
    }

    .social-proof-card__quote {
        font-size: 1.05rem;
    }

    .benefits {
        padding: 90px 0;
    }

    .benefits-subtitle {
        font-size: 1rem;
    }

    .benefits-funnel {
        gap: 30px;
        margin-top: 50px;
    }

    .funnel-axis {
        display: none;
    }

    .funnel-stage {
        grid-template-columns: 1fr;
        padding: 32px 28px;
    }

    .funnel-stage__marker {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .funnel-stage__number {
        font-size: 0.9rem;
        letter-spacing: 0.25em;
    }

    .funnel-stage__icon {
        width: 64px;
        height: 64px;
        border-radius: 22px;
    }

    .funnel-stage__content h3 {
        font-size: 1.4rem;
    }

    .funnel-stage__content p {
        max-width: none;
    }

    .funnel-stage--top,
    .funnel-stage--middle,
    .funnel-stage--bottom {
        max-width: 100%;
        animation: none;
    }

    .benefits-metrics {
        margin-top: 60px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: calc(50% - 10px);
    }
    
    .carousel {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .carousel-slide {
        min-width: 100%;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .carousel {
        gap: 0;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .logo-container::before,
    .logo-container::after {
        width: 150px;
        height: 150px;
    }

    .logo-container::after {
        width: 180px;
        height: 180px;
    }

    .top-banner {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .hero {
        margin-top: 44px;
    }

    .social-proof {
        padding: 70px 0;
    }

    .social-proof-card {
        padding: 28px 22px;
    }

    .social-proof-card__quote {
        font-size: 1rem;
        line-height: 1.7;
    }

    .social-proof__cta p {
        font-size: 0.95rem;
    }

    .benefits {
        padding: 80px 0;
    }

    .benefits-subtitle {
        font-size: 0.95rem;
    }

    .funnel-stage {
        padding: 28px 22px;
    }

    .funnel-stage__marker {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .funnel-stage__icon {
        width: 58px;
        height: 58px;
    }

    .funnel-stage__content h3 {
        font-size: 1.3rem;
    }

    .funnel-stage__content p {
        font-size: 0.95rem;
    }

    .metric-card {
        padding: 22px 20px;
    }

    .metric-value {
        font-size: 2rem;
    }
}

/* PolicARIBE Programs section styles - dark theme to match Impactus */
.programas-section {
    padding: 80px 0;
    background: radial-gradient(120% 130% at 10% -20%, rgba(77, 176, 203, 0.16) 0%, rgba(8, 8, 14, 0) 60%), linear-gradient(180deg, #07070D 0%, #0F101A 100%);
    color: var(--impactus-white);
}

.programas-section .sppb-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.programas-section .sppb-title-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--impactus-sky);
    letter-spacing: 0.5px;
}

.programas-section .sppb-title-subheading {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-top: 10px;
}

.programas-carousel .item-course-card {
    padding: 5px 5px 15px;
}

.course-card {
    display: block;
    background: rgba(18, 21, 30, 0.92);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(77, 176, 203, 0.2);
    box-shadow: 0 18px 38px rgba(5, 8, 18, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.course-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 176, 203, 0.55);
    box-shadow: 0 26px 45px rgba(77, 176, 203, 0.22);
}

.course-card__image img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-card__content {
    padding: 16px 16px 18px;
}

.course-card__title {
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.course-card__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.course-card__badge {
    background: rgba(255,255,255,0.06);
    color: #E6FAFF;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.08);
}

.course-card__badge i {
    color: var(--impactus-sky);
}

.course-card__badge--semestres {
    border-color: rgba(77,176,203,0.35);
    color: rgba(223,245,255,0.9);
}

.course-card__badge--mixto, .course-card__badge--presencial {
    border-color: rgba(77,176,203,0.25);
}

.course-card__separator {
    color: #666666;
}

.programas-section .owl-dots .owl-dot span {
    background: #333333;
}

.programas-section .owl-dots .owl-dot.active span {
    background: var(--impactus-sky);
}

@media (min-width: 1200px) {
    .course-card__image img { height: 220px; }
}

@media (max-width: 600px) {
    .course-card__image img { height: 180px; }
}

/* Contact banner above footer */
.contact-cta {
    background: linear-gradient(180deg, #07070D 0%, #090914 100%);
    border-top: 1px solid rgba(77, 176, 203, 0.25);
    /* 300% taller vs. previous 50px -> 150px */
    padding: 150px 0;
}

.contact-cta__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: transform 0.35s ease, filter 0.35s ease;
    transform-origin: center center;
}

.contact-cta__container:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 24px 55px rgba(77, 176, 203, 0.18));
}

.contact-cta__left,
.contact-cta__right {
    flex: 1 1 50%;
}

.contact-cta__link {
    color: var(--impactus-white);
    text-decoration: none;
    font-weight: 700;
    /* Tamaño normal */
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.contact-cta__link:hover {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(77, 176, 203, 0.35);
}

.contact-cta__highlight {
    color: var(--impactus-sky);
    font-weight: 800;
}

.contact-cta__right {
    text-align: right;
}

.contact-cta__image {
    /* 300% más grande aprox. 96px -> 288px */
    width: 288px;
    height: 288px;
    object-fit: contain;
    filter: drop-shadow(0 14px 32px rgba(77, 176, 203, 0.22));
    transition: transform 0.35s ease;
}

.contact-cta__container:hover .contact-cta__image {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .contact-cta__container {
        flex-direction: column;
        text-align: center;
    }
    .contact-cta__right { text-align: center; }
    .contact-cta__image { width: 140px; height: 140px; }
    .contact-cta__link { font-size: 1.8rem; }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .contact-cta__link { font-size: 2rem; }
    .contact-cta__image { width: 220px; height: 220px; }
}