/* Brand tokens */
:root {
    --primary: #003555;
    --second: #b51b1b;
    --background: #0b1220;
}

/* Sections */
.section__head {
    max-width: 960px;
    margin: 0 auto 20px;
    text-align: center;
    padding: 0 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section__title {
    margin: 0;
    font-size: 28px;
    color: #fff;
}

.section__subtitle {
    margin: 8px 0 0;
    color: #cbd5e1;
}

/* Hero */
.home-hero {
    position: relative;
    min-height: 80vh;
    display: grid;
    align-items: center;
    background: url('../img/slider/carousel-1.jpg') center/cover no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 52, 85, 0), rgba(0, 52, 85, 0) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.home-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    align-items: center;
}

.home-hero__inner>* {
    position: relative;
    z-index: 1;
}

.home-hero__title {
    margin: 0;
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 200ms ease, filter 200ms ease;
    cursor: default;
    color: #ffffff;
}


.home-hero__title:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px rgba(191, 231, 255, 0.4));
}

@keyframes pulseTitle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes shineText {
    0% {
        background-position: -200% 50%;
    }

    50% {
        background-position: 200% 50%;
    }

    100% {
        background-position: -200% 50%;
    }
}

.home-hero__subtitle {
    margin: 12px 0 0;
    color: #e2e8f0;
    font-size: clamp(16px, 1.8vw, 20px);
    max-width: 62ch;
}

.home-hero__cta {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.home-hero__cta .cw-btn {
    position: relative;
    overflow: hidden;
    transition: transform 150ms ease, box-shadow 200ms ease, background 200ms ease;
    animation: floatButton 4s ease-in-out infinite;
}

.home-hero__cta .cw-btn:nth-child(2) {
    animation-delay: 0.5s;
}

.home-hero__cta .cw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

.home-hero__cta .cw-btn:active {
    transform: translateY(0);
}

.home-hero__cta .cw-btn--whatsapp {
    animation: bounceWhatsApp 2s ease-in-out infinite, glowWhatsApp 3s ease-in-out infinite;
}

.home-hero__cta .cw-btn--whatsapp:hover {
    background: #16a34a;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    animation-play-state: paused;
}

.home-hero__cta .cw-btn--primary {
    animation: bouncePrimary 2.5s ease-in-out infinite, glowPrimary 4s ease-in-out infinite;
}

.home-hero__cta .cw-btn--primary:hover {
    background: #22d3ee;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
    animation-play-state: paused;
}

@keyframes bounceWhatsApp {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) scale(1);
    }

    10% {
        transform: translateY(-8px) scale(1.05);
    }

    30% {
        transform: translateY(-4px) scale(1.02);
    }
}

@keyframes bouncePrimary {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) scale(1);
    }

    10% {
        transform: translateY(-6px) scale(1.03);
    }

    30% {
        transform: translateY(-3px) scale(1.01);
    }
}

@keyframes glowWhatsApp {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(34, 197, 94, 0.3), 0 0 10px rgba(34, 197, 94, 0.1);
        filter: brightness(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 30px rgba(34, 197, 94, 0.3);
        filter: brightness(1.1);
    }
}

@keyframes glowPrimary {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(56, 189, 248, 0.3), 0 0 10px rgba(56, 189, 248, 0.1);
        filter: brightness(1);
    }

    50% {
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.6), 0 0 30px rgba(56, 189, 248, 0.3);
        filter: brightness(1.1);
    }
}

/* Ripple effect for buttons */
.home-hero__cta .cw-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.home-hero__cta .cw-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Creative staggered reveal */
.home-hero__copy>* {
    opacity: 0;
    transform: translateY(30px) rotateX(90deg) scale(0.8);
    filter: blur(5px);
}

.home-hero__copy.revealed>* {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0);
    transition: opacity 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 600ms ease;
}

.home-hero__copy.revealed>*:nth-child(1) {
    transition-delay: 0ms;
    animation: titleEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, pulseTitle 3s ease-in-out 1.5s infinite;
}

.home-hero__copy.revealed>*:nth-child(2) {
    transition-delay: 200ms;
    animation: subtitleEntrance 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.home-hero__copy.revealed>*:nth-child(3) {
    transition-delay: 400ms;
    animation: ctaEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes titleEntrance {
    0% {
        transform: translateY(50px) rotateX(90deg) scale(0.5);
        opacity: 0;
        filter: blur(10px);
    }

    50% {
        transform: translateY(-10px) rotateX(45deg) scale(1.1);
        opacity: 0.8;
        filter: blur(2px);
    }

    100% {
        transform: translateY(0) rotateX(0deg) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes subtitleEntrance {
    0% {
        transform: translateX(-100px) rotateY(45deg) scale(0.8);
        opacity: 0;
        filter: blur(8px);
    }

    60% {
        transform: translateX(10px) rotateY(-10deg) scale(1.05);
        opacity: 0.9;
        filter: blur(1px);
    }

    100% {
        transform: translateX(0) rotateY(0deg) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes ctaEntrance {
    0% {
        transform: translateY(40px) rotateZ(15deg) scale(0.6);
        opacity: 0;
        filter: blur(6px);
    }

    40% {
        transform: translateY(-5px) rotateZ(-5deg) scale(1.1);
        opacity: 0.8;
        filter: blur(1px);
    }

    70% {
        transform: translateY(2px) rotateZ(2deg) scale(0.98);
        opacity: 0.95;
        filter: blur(0.5px);
    }

    100% {
        transform: translateY(0) rotateZ(0deg) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

.home-hero__bullets {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    color: #e2e8f0;
    opacity: 0.95;
}

.home-hero__media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(50px) scale(0.8) rotateY(15deg);
    animation: imageEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards, floatY 4.5s ease-in-out 2s infinite;
}

@keyframes imageEntrance {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.8) rotateY(15deg);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-10px) scale(1.05) rotateY(-5deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.float-y {
    animation: floatY 4.5s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===== FAIXA DE PRODUTOS ===== */
.products-banner {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.products-banner__content {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: scrollProducts 30s linear infinite;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.products-banner__separator {
    color: var(--second);
    font-size: 16px;
}

@keyframes scrollProducts {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
    overflow: hidden;
}

.cta-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-section__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 12px 0;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-section__subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px 0;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.cta-section__examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.example-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.example-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.example-text {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.cta-section__action {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.cta-section__cta-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.cta-section__cta-text {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.cw-btn--large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

/* CTA Animation States */
.cta-section.animate-in .cta-section__title {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-section.animate-in .cta-section__subtitle {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-section.animate-in .example-item {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.cta-section.animate-in .example-item:nth-child(1) {
    transition-delay: 0.4s;
}

.cta-section.animate-in .example-item:nth-child(2) {
    transition-delay: 0.5s;
}

.cta-section.animate-in .example-item:nth-child(3) {
    transition-delay: 0.6s;
}

.cta-section.animate-in .example-item:nth-child(4) {
    transition-delay: 0.7s;
}

.cta-section.animate-in .example-item:nth-child(5) {
    transition-delay: 0.8s;
}

.cta-section.animate-in .example-item:nth-child(6) {
    transition-delay: 0.9s;
}

.cta-section.animate-in .cta-section__action {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover state for animated items */
.cta-section.animate-in .example-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Solutions Section Animation States */
.home-solutions.animate-in .section__head {
    opacity: 1;
    transform: translateY(0);
}

.home-solutions.animate-in .card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-solutions.animate-in .card:nth-child(1) {
    transition-delay: 0.2s;
}

.home-solutions.animate-in .card:nth-child(2) {
    transition-delay: 0.4s;
}

.home-solutions.animate-in .card:nth-child(3) {
    transition-delay: 0.6s;
}

.home-solutions.animate-in .card:nth-child(4) {
    transition-delay: 0.8s;
}

/* Hover state for animated cards */
.home-solutions.animate-in .card:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.35);
}

/* Metrics Section Animation States */
.home-metrics.animate-in .metrics li {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-metrics.animate-in .metrics li:nth-child(1) {
    transition-delay: 0.1s;
}

.home-metrics.animate-in .metrics li:nth-child(2) {
    transition-delay: 0.3s;
}

.home-metrics.animate-in .metrics li:nth-child(3) {
    transition-delay: 0.5s;
}

/* Hover effect for animated metrics */
.home-metrics.animate-in .metrics li:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(181, 27, 27, 0.4);
    box-shadow: 0 8px 25px rgba(181, 27, 27, 0.15);
}

/* Solutions Showcase Animation States */
.solutions-showcase.animate-in .solutions-copy__title {
    opacity: 1;
    transform: translateY(0);
}

.solutions-showcase.animate-in .solutions-copy__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.solutions-showcase.animate-in .solutions-copy__description {
    opacity: 1;
    transform: translateY(0);
}

.solutions-showcase.animate-in .solution-item {
    opacity: 1;
    transform: translateX(0);
}

.solutions-showcase.animate-in .solution-item:nth-child(1) {
    transition-delay: 0.6s;
}

.solutions-showcase.animate-in .solution-item:nth-child(2) {
    transition-delay: 0.7s;
}

.solutions-showcase.animate-in .solution-item:nth-child(3) {
    transition-delay: 0.8s;
}

.solutions-showcase.animate-in .solution-item:nth-child(4) {
    transition-delay: 0.9s;
}

.solutions-showcase.animate-in .solution-item:nth-child(5) {
    transition-delay: 1s;
}

.solutions-showcase.animate-in .solution-item:nth-child(6) {
    transition-delay: 1.1s;
}

.solutions-showcase.animate-in .solution-item:nth-child(7) {
    transition-delay: 1.2s;
}

.solutions-showcase.animate-in .solution-item:nth-child(8) {
    transition-delay: 1.3s;
}

.solutions-showcase.animate-in .solution-item:nth-child(9) {
    transition-delay: 1.4s;
}

.solutions-showcase.animate-in .solution-item:nth-child(10) {
    transition-delay: 1.5s;
}

.solutions-showcase.animate-in .solutions-copy__cta {
    opacity: 1;
    transform: translateY(0);
}

.solutions-showcase.animate-in .solutions-carousel {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Hover state for animated solution items */
.solutions-showcase.animate-in .solution-item:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(4px);
}

/* Final CTA Animation States */
.final-cta.animate-in .final-cta__title {
    opacity: 1;
    transform: translateY(0);
}

.final-cta.animate-in .final-cta__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.final-cta.animate-in .benefit-item {
    opacity: 1;
    transform: translateX(0);
}

.final-cta.animate-in .benefit-item:nth-child(1) {
    transition-delay: 0.4s;
}

.final-cta.animate-in .benefit-item:nth-child(2) {
    transition-delay: 0.5s;
}

.final-cta.animate-in .benefit-item:nth-child(3) {
    transition-delay: 0.6s;
}

.final-cta.animate-in .final-cta__action {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.final-cta.animate-in .urgency-badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover effects for animated elements */
.final-cta.animate-in .benefit-item:hover {
    transform: translateX(5px);
}

.final-cta.animate-in .final-cta__action:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cta-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-section__examples {
        grid-template-columns: 1fr;
    }

    .cta-section__action {
        padding: 32px 24px;
    }
}

/* Cards */
.home-solutions {
    padding: 40px 0;
    overflow: hidden;
}

.cards {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    padding: 18px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.35);
}

.card__title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;
}

.card__desc {
    margin: 0;
    color: #cbd5e1;
}

/* Metrics */
.home-metrics {
    padding: 24px 0;
    overflow: hidden;
}

.metrics {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.metrics li {
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    color: #cbd5e1;
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.metrics strong {
    display: block;
    font-size: 22px;
    color: var(--second);
}

.metrics span {
    opacity: 0.9;
}

/* Form */
.home-contact {
    padding: 40px 0 64px;
}

.contact-form {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    gap: 12px;
}

.form__row {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.input {
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 10px;
    padding: 12px 14px;
}

.input:focus {
    outline: 2px solid #22d3ee;
    outline-offset: 1px;
}

.form__submit {
    margin-top: 8px;
}

.form__safe {
    font-size: 12px;
    color: #94a3b8;
}

/* ===== SOLUTIONS SHOWCASE SECTION ===== */
.solutions-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.solutions-showcase__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

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

/* Solutions Copy */
.solutions-copy__title {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.solutions-copy__subtitle {
    color: #cbd5e1;
    font-size: clamp(18px, 2vw, 22px);
    margin: 0 0 24px 0;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.solutions-copy__subtitle strong {
    color: #38bdf8;
    font-weight: 700;
}

.solutions-copy__description {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

/* Solutions List */
.solutions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.solution-item:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateX(4px);
}

.solution-code {
    background: linear-gradient(135deg, var(--second), #dc2626);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
    text-align: center;
}

.solution-name {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.solutions-copy__cta {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
}

/* Solutions Carousel */
.solutions-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(60px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.carousel-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 24px 24px;
}

.carousel-label {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


.cw-btn--large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--second), var(--primary));
}

.final-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.final-cta__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.final-cta__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 16px 0;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.final-cta__subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0 0 32px 0;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.final-cta__benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-icon {
    color: #22c55e;
    font-size: 18px;
    font-weight: bold;
}

.benefit-text {
    color: #334155;
    font-size: 16px;
    font-weight: 600;
}

.final-cta__action {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.cw-btn--xl {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cw-btn__icon {
    font-size: 24px;
}

.cw-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cw-btn__text strong {
    font-size: 18px;
    line-height: 1.2;
}

.cw-btn__text small {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.final-cta__guarantee {
    margin-top: 16px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

.final-cta__urgency {
    text-align: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
}

.urgency-icon {
    font-size: 20px;
}

.urgency-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.urgency-text strong {
    font-size: 14px;
    line-height: 1.2;
}

.urgency-text span {
    font-size: 12px;
    opacity: 0.9;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-showcase__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .solutions-list {
        grid-template-columns: 1fr;
    }
    
    .final-cta__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solutions-showcase {
        padding: 60px 0;
    }
    
    .solutions-showcase__content {
        gap: 40px;
    }
    
    .solutions-copy__title {
        font-size: clamp(28px, 6vw, 36px);
    }
    
    .solutions-copy__subtitle {
        font-size: clamp(16px, 4vw, 18px);
    }
    
    .solutions-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .solution-item {
        padding: 10px 12px;
    }
    
    .solution-code {
        font-size: 10px;
        padding: 3px 6px;
        min-width: 45px;
    }
    
    .solution-name {
        font-size: 13px;
    }
    
    .carousel-overlay {
        padding: 20px 16px 16px;
    }
    
    .carousel-label {
        font-size: 16px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta__action {
        padding: 32px 24px;
    }
    
    .cw-btn--xl {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .urgency-badge {
        padding: 10px 20px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* Buttons inherit from navbar.css for consistency */

@media (min-width: 992px) {
    .home-hero__inner {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .form__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card {
        transition: none;
    }
}