.footer {
    position: relative;
    color: #fff;
    width: 100%;
    background-color: #1a1a1a;
    padding-top: 60px;
}

.footer-cta-section {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    text-align: center;
    background: transparent;
}

.footer-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: 60px;
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    border-radius: 50px;
    background: #FF9000;
    box-shadow: -6px 6px 85px 0 rgba(255, 144, 0, 0.55);
    animation: footerCtaGlow 2.4s ease-in-out infinite;
}

.footer-cta-primary:hover {
    background: #ffaa00;
    transform: translateY(-2px);
    box-shadow: -6px 6px 85px 0 rgba(255, 144, 0, 0.75);
}


.footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    min-height: 60px;
    background: #f0f0f0;
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ffffff1d;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.footer-cta-secondary:hover {   
    transform: translateY(-2px);
}

@keyframes footerCtaGlow {
    0%, 100% {
        box-shadow: -6px 6px 85px 0 rgba(255, 144, 0, 0.45);
    }
    50% {
        box-shadow: -10px 10px 110px 0 rgba(255, 145, 0, 0.881);
    }
}

/* Footer Main Content */
.footer-main {
    position: relative;
    z-index: 2;
    padding: 60px 124px 40px;
    max-width: 1512px;
    margin: 0 auto;
    background: transparent;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 80px;
}

.footer-column-group {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-column-group-left {
    flex: 1;
    max-width: 300px;
}

.footer-column-group-right {
    flex: 1;
    max-width: 300px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.footer-links a:hover {
    opacity: 0.8;
    color: #ffffff;
}

.footer-links .use-case-arrow {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-right: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-language-switcher {
    display: flex;
    align-items: center;
}

.footer-language-switcher .language-switcher-toggle {
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.footer-language-switcher .current-lang {
    color: #ffffff;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 8px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Tablet Footer - Figma node 29-864 */
@media  (max-width: 1200px) {
    /* Footer with rounded top */
    .footer {
        padding-top: 60px;
        border-radius: 40px 40px 0 0;
        overflow: visible;
        background-color: #1a1a1a;
        min-height: auto;
    }

    /* Footer CTA Section */
    .footer-cta-section {
        padding: 60px 40px 40px;
        display: block;
        visibility: visible;
    }

    .footer-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-cta-primary,
    .footer-cta-secondary {
        width: auto;
        max-width: none;
    }

    /* Footer Main Content */
    .footer-main {
        max-width: 100%;
        display: block;
        visibility: visible;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        display: flex;
        visibility: visible;
    }

    /* Single column layout for tablet - all columns stack vertically */
    .footer-column-group {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .footer-column-group-left,
    .footer-column-group-right {
        max-width: 100%;
        flex: none;
    }

    .footer-column {
        width: 100%;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
        padding-top: 30px;
        border-top: none;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Mobile Footer - Figma node 29-864 */
@media (max-width: 768px) {
    /* Footer with rounded top */
    .footer {
        padding-top: 50px;
        border-radius: 40px 40px 0 0;
        overflow: visible;
        background-color: #1a1a1a;
        min-height: auto;
        display: block;
        visibility: visible;
    }

    /* Footer CTA Section */
    .footer-cta-section {
        padding: 50px 24px 30px;
        display: block;
        visibility: visible;
    }

    .footer-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-cta-primary,
    .footer-cta-secondary {
        width: auto;
        max-width: none;
    }

    .footer-main {
        padding: 30px 24px 24px;
        max-width: 100%;
        display: block;
        visibility: visible;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
        display: flex;
        visibility: visible;
    }

    /* Single column layout for mobile - all columns stack vertically */
    .footer-column-group {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .footer-column-group-left,
    .footer-column-group-right {
        max-width: 100%;
        flex: none;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-links a {
        font-size: 14px;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
        padding-top: 24px;
        border-top: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        gap: 16px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}