/* ========================================
   NEW LANDING PAGE DESIGN - Dark Hero Style
   ======================================== */

/* CSS Variables for new design */
:root {
    --landing-primary: #6366f1;
    --landing-primary-dark: #4f46e5;
    --landing-primary-light: #818cf8;
    --landing-secondary: #ec4899;
    --landing-accent: #06b6d4;
    --landing-dark: #0f172a;
    --landing-dark-light: #1e293b;
    --landing-gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}

/* ================================================
   NAVBAR TRASPARENTE - Stili aggressivi per index
   ================================================ */

/* Container della navbar: fixed in cima alla pagina */
body.index > div.container.pt-4,
body.index > .container.pt-4 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    padding: 1rem 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

body.index > div.container.pt-4.scrolled,
body.index > .container.pt-4.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Navbar stessa: trasparente senza bordi */
body.index .navbar-main,
body.index nav.navbar-main,
body.index nav#navbar,
body.index #navbar.navbar-main {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

/* Links della navbar: bianchi su sfondo scuro */
body.index .navbar-main .navbar-brand,
body.index .navbar-main .nav-link,
body.index #navbar .navbar-brand,
body.index #navbar .nav-link,
body.index nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    transition: color 0.3s ease !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

body.index .navbar-main .nav-link:hover,
body.index #navbar .nav-link:hover,
body.index nav .nav-link:hover {
    color: #fff !important;
}

/* Logo: mantieni i colori originali */

/* Pulsanti navbar: stile per sfondo scuro */
body.index .navbar-main .btn-outline-primary,
body.index #navbar .btn-outline-primary,
body.index .navbar .btn-outline-primary {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
}

body.index .navbar-main .btn-outline-primary:hover,
body.index #navbar .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
}

body.index .navbar-main .btn-primary,
body.index #navbar .btn-primary,
body.index .navbar .btn-primary {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary)) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
    color: #fff !important;
}

/* Toggler per mobile */
body.index .navbar-custom-toggler,
body.index .navbar-toggler {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body.index .navbar-custom-toggler i,
body.index .navbar-toggler-icon {
    color: #fff !important;
}

/* Dropdown menu per mobile: sfondo scuro */
@media (max-width: 991.98px) {
    body.index .navbar-collapse {
        background: rgba(15, 23, 42, 0.98) !important;
        border-radius: 12px !important;
        padding: 1rem !important;
        margin-top: 0.5rem !important;
        position: relative;
        z-index: 9999 !important;
    }

    body.index .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
    }

    /* Ensure navbar stays above hero content */
    body.index .navbar-main,
    body.index nav.navbar {
        position: relative;
        z-index: 10000 !important;
    }
}

@media (min-width: 992px) {
    body.index .navbar-collapse {
        background: transparent !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }
}

/* Hero Section - Dark Gradient */
.index-hero-new {
    min-height: 100vh;
    background: var(--landing-gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.index-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Glow Effects */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-glow-1 {
    background: var(--landing-primary);
    top: -200px;
    right: -100px;
}

.hero-glow-2 {
    background: var(--landing-secondary);
    bottom: -200px;
    left: -100px;
}

/* Hero Content */
.hero-content-new {
    color: #fff;
    position: relative;
    z-index: 1;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stelline gialle nel badge */
.hero-badge-new i,
.hero-badge-new i.fa-star,
.hero-badge-new svg,
.hero-badge-new svg.svg-inline--fa {
    color: #facc15 !important;
    fill: #facc15 !important;
}

.hero-badge-new svg path {
    fill: #facc15 !important;
}

.hero-title-new {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 768px) {
    .hero-title-new {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title-new {
        font-size: 4rem;
    }
}

.hero-title-new .highlight {
    background: linear-gradient(135deg, var(--landing-primary-light), var(--landing-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-new {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats-new {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-stats-new {
        gap: 3rem;
    }
}

.stat-item-new {
    text-align: left;
}

.stat-number-new {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .stat-number-new {
        font-size: 2rem;
    }
}

.stat-label-new {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Buttons */
.btn-hero-primary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: #fff !important;
}

.btn-hero-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
    color: #fff !important;
}

/* Phone Mockup */
.hero-mockup-new {
    position: relative;
    perspective: 1000px;
}

.mockup-phone-new {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    animation: phone-float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
    .mockup-phone-new {
        width: 280px;
        height: 560px;
    }
}

.mockup-screen-new {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
}

.mockup-avatar-new {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--landing-secondary), var(--landing-accent));
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.mockup-name-new {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.mockup-bio-new {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
}

.mockup-links-new {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mockup-link-new {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 12px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@keyframes phone-float {
    0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

/* Bio Pages Carousel in Mockup */
.mockup-screen-carousel {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #1a1a2e;
}

.mockup-screen-carousel .biopage-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-radius: 30px;
}

.mockup-screen-carousel .biopage-slide.active {
    opacity: 1;
}

/* Pausa indicator (opzionale) */
.mockup-screen-carousel.paused::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

/* Dots indicator */
.carousel-dots {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

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

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Services Section - New Style */
.section-new {
    padding: 5rem 0;
}

@media (min-width: 992px) {
    .section-new {
        padding: 7rem 0;
    }
}

.section-header-new {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .section-header-new {
        margin-bottom: 4rem;
    }
}

.section-badge-new {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--landing-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-new {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title-new {
        font-size: 2.5rem;
    }
}

.section-description-new {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards - New Style */
.service-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-icon-new {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon-new.biolink { background: linear-gradient(135deg, #a78bfa, #818cf8); }
.service-icon-new.shortener { background: linear-gradient(135deg, #34d399, #10b981); }
.service-icon-new.qrcode { background: linear-gradient(135deg, #f472b6, #ec4899); }
.service-icon-new.file { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.service-icon-new.static { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.service-icon-new.vcard { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.service-icon-new.analytics { background: linear-gradient(135deg, #a855f7, #9333ea); }

.service-title-new {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-description-new {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link-new {
    color: var(--landing-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link-new:hover {
    gap: 0.75rem;
    color: var(--landing-primary-dark);
}

/* Why Choose Cards */
.why-choose-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--landing-primary-light);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
}

.why-choose-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.why-choose-card > p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.why-choose-list li:last-child {
    margin-bottom: 0;
}

.why-choose-list li i {
    color: var(--landing-primary);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Dark mode for Why Choose Cards */
[data-theme-style="dark"] .why-choose-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

[data-theme-style="dark"] .why-choose-card h3 {
    color: var(--white);
}

[data-theme-style="dark"] .why-choose-card > p {
    color: var(--gray-400);
}

[data-theme-style="dark"] .why-choose-list li {
    color: var(--gray-300);
}

/* Feature Row - New Style */
.feature-row-new {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 992px) {
    .feature-row-new {
        flex-direction: row;
        gap: 4rem;
    }

    .feature-row-new.reverse {
        flex-direction: row-reverse;
    }
}

.feature-content-new {
    flex: 1;
}

.feature-content-new h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .feature-content-new h3 {
        font-size: 2rem;
    }
}

.feature-content-new p {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.feature-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-new li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
}

.feature-list-new li i {
    color: var(--landing-primary);
    font-size: 1.1rem;
}

.feature-visual-new {
    flex: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.feature-visual-new img {
    width: 100%;
    border-radius: 12px;
}

/* CTA Section - New Style */
.cta-section-new {
    padding: 5rem 0;
    background: var(--landing-gradient-hero);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .cta-section-new {
        padding: 7rem 0;
    }
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content-new {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-new h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-content-new h2 {
        font-size: 3rem;
    }
}

.cta-content-new p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.btn-cta-new {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    background: #fff !important;
    color: var(--landing-dark) !important;
    border: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-new:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
}

/* Dark theme adjustments */
[data-theme-style="dark"] .service-card-new {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

[data-theme-style="dark"] .feature-visual-new {
    background: var(--gray-100);
}

/* Legacy styles below */
.index-container-content {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.index-container {
    width: 100%;
    padding: 0 0 4rem 0;
}

@media (min-width: 992px) {
    .index-container-content {
        margin-top: 6rem;
    }

    .index-container {
        padding: 0 0 8rem 0;
    }
}

@keyframes index-image-one-switch {
    33% {
        transform: scale(1.05);
        left: 3rem;
    }
    66% {
        transform: scale(0.9);
    }
    100% {
        z-index: 1;
        left: 9rem;
        transform: scale(0.9);
        filter: blur(1px);
    }
}

@keyframes index-image-two-switch {
    33% {
        right: -6rem;
        transform: scale(0.95);
    }
    66% {
        transform: scale(1.1);
        top: -2rem;
    }
    100% {
        z-index: 2;
        right: -3rem;
        top: -2rem;
        filter: blur(0px);
        transform: scale(1.05);
    }
}

.index-image {
    width: auto;
    max-height: 540px;
    position: absolute;
    transition: all 0.3s ease-out;
    border-radius: 30px;
}

.index-image-one {
    z-index: 2;
    top: -1.5rem;
    right: 11.5rem;
}

.index-image-two {
    z-index: 1;
    right: 0;
    top: -5rem;
    filter: blur(1px);
}

[dir="rtl"] .index-image-one {
    left: 3.5rem;
    right: inherit;
}

@media (min-width: 1325px) {
    .index-image {
        max-height: 600px;
    }

    .index-image-one {
        top: -1.5rem;
        left: 9rem;

        animation: index-image-one-switch 2s forwards;
        animation-delay: 1s;
    }

    .index-image-two {
        right: -3rem;
        top: -5rem;
        left: inherit;

        animation: index-image-two-switch 2s forwards;
        animation-delay: 1s;
    }

    [dir="rtl"] .index-image-one {
        animation: none;
    }

    [dir="rtl"] .index-image-two {
        animation: none;
        right: 3rem;
    }
}

.index-header {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
}

@media (min-width: 768px) {
    .index-header {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .index-header {
        font-size: 4rem;
    }
}

.index-input {
    padding: 1.5rem 1rem;
}

.index-feature {
    line-height: 2.5rem;
    font-weight: 500;
    transition: background .6s;
    border-radius: 100px;
}

.index-feature a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color .6s;
}

.index-feature:hover {
    background: var(--primary-100);
}

.index-feature:hover a {
    color: var(--primary-600);
}

.index-button {
    padding: 1.2rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.index-button:hover {
    filter: saturate(0) contrast(2);
}

.index-button-white, .index-button-white:hover {
    color: white;
}

.index-card-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 10px 10px 0 #ebf5ff;
    border: 1px solid var(--gray-300);
    transition: all .3s ease-in-out;
}

[data-theme-style="dark"] .index-card-image {
    box-shadow: 10px 10px 0 var(--gray-200);
}

.index-card-image:hover {
    box-shadow: 0 0 0 var(--gray-300);
}

.index-fade {
    position: absolute;
    background: linear-gradient(0deg, var(--body-bg), hsla(0, 0%, 100%, 0)) !important;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

/* Index testimonial */
.index-testimonial-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    transform: translateY(-70%);
    border: 4px solid var(--white);
    background: var(--white);
    position: absolute;
    left: 50%;
    margin-left: -52px;
}

.index-testimonial-comment {
    margin-left: 18px;
}

/* Index FAQ */
.index-faq svg {
    transition: all .15s;
    color: var(--primary-800);
}

/* Timeline */
.index-timeline {
    position: relative;
}

.index-timeline::before {
    content: '';
    position: absolute;
    border-left: 2px solid var(--gray-200);
    height: 100%;
    left: calc(57px / 2);
}

/* Index call to action */
.index-cta {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 1920 1080" width="1920" height="1080"><defs><linearGradient gradientTransform="rotate(0, 0.5, 0.5)" x1="50%" y1="0%" x2="50%" y2="100%" id="ffflux-gradient"><stop stop-color="%230063ef" stop-opacity="1" offset="0%"></stop><stop stop-color="%23aa02b4" stop-opacity="1" offset="100%"></stop></linearGradient><filter id="ffflux-filter" x="-20%" y="-20%" width="140%" height="140%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feTurbulence type="fractalNoise" baseFrequency="0.005 0.003" numOctaves="1" seed="131" stitchTiles="stitch" x="0%" y="0%" width="100%" height="100%" result="turbulence"></feTurbulence><feGaussianBlur stdDeviation="20 0" x="0%" y="0%" width="100%" height="100%" in="turbulence" edgeMode="duplicate" result="blur"></feGaussianBlur><feBlend mode="color-dodge" x="0%" y="0%" width="100%" height="100%" in="SourceGraphic" in2="blur" result="blend"></feBlend></filter></defs><rect width="1920" height="1080" fill="url(%23ffflux-gradient)" filter="url(%23ffflux-filter)"></rect></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    color: white !important;
    filter: brightness(1) hue-rotate(0deg);
    transition: filter .3s ease-in-out;
}

.index-cta:hover {
    filter: brightness(1.2) hue-rotate(20deg);
}

.index-cta a.btn {
    color: var(--gray-800);
    background: var(--white);
    border-color: var(--white);
    padding: 1.1rem 4rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.index-cta a.btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
}

[data-theme-style="dark"] .index-cta a.btn {
    background: var(--light);
    border-color: var(--light);
}

/* Gradient text */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient background */
.bg-gradient {
    animation: bg-gradient-animation 3s ease infinite alternate !important;
    background: linear-gradient(60deg,#f79533,#f37055,#ef4e7b,#a166ab,#5073b8,#1098ad,#07b39b,#6fba82);
    background-size: 300% 300%;
}

@keyframes bg-gradient-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}


/* Inverse colors animation */
.inverse-colors-animation {
    transition: 0.35s;
}

.inverse-colors-animation:hover {
    filter: invert(100%) hue-rotate(180deg) saturate(0.9) brightness(1.05);
}

/* Index background */
.index-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    left: -125px;
    top: -100px;
    filter: blur(100px);
    border-radius: 30%;
    background: #4390f324;
    z-index: 0;
    transition: background .3s;
    opacity: 0.6;
}

.index-background::after {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 500px;
    height: 500px;
    right: 0;
    top: 200px;
    filter: blur(100px);
    border-radius: 30%;
    background: #ffaeae3b;
    z-index: 0;
    opacity: 0.25;
}

[data-theme-style="dark"] .index-background::before {
    background: #005dff36;
}

[data-theme-style="dark"] .index-background::after {
    background: #7400ff52;
}

@media (min-width: 992px) {
    .index-background::after {
        opacity: 0.6;
    }
}

.index-icon-container {
    background: var(--primary-50);
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    color: var(--primary);
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
    ease-in-out;
    border-radius: calc(2 * var(--border-radius));
}
