:root {
    --primary-orange: #aa2800;
    --secondary-orange: #ff5722;
    --primary-green: #00ffa3;
    --primary-cyan: #00e5ff;
    --primary-purple: #6c5ce7;
    --bg-dark: #000000;
    --bg-card: rgba(20, 20, 30, 0.6);
    --bg-card-hover: rgb(24, 24, 24, 0.8);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* SF Pro Display Font / Font SF Pro Display */
@font-face {
    font-family: "SF Pro Display";
    src: url("./sf-pro-display/SFPRODISPLAYREGULAR.OTF") format("opentype");
    font-weight: 100 400;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("./sf-pro-display/SFPRODISPLAYMEDIUM.OTF") format("opentype");
    font-weight: 500 600;
    font-style: normal;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("./sf-pro-display/SFPRODISPLAYBOLD.OTF") format("opentype");
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

body {
    /* font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; */
    font-family: "SF Pro Display";
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

.accordion-button > p {
    margin-top: 0;
    margin-bottom: 0.2rem;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    /* background: radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 50%); */
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgb(24, 24, 24, 0.8);
    transform: translateY(-5px);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: #0a0a0a;
    backdrop-filter: blur(20px);
    background-color: #000000 !important;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
}

.navbar .container {
    /* max-width: 100%; */
    padding-left: 0px;
    padding-right: px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary) !important;
    text-decoration: none;
    margin-left: 40px !important;
}

.navbar-brand:hover {
    color: var(--primary-orange) !important;
}

.navbar-brand svg {
    flex-shrink: 0;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 400;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-link:hover {
    color: #fff !important;
    font-size: 15px;
}

.nav-link:active,
.nav-link:focus,
.nav-link:visited {
    font-size: 15px;
    color: var(--text-secondary) !important;
}

/* Offcanvas Navbar / Offcanvas Navbar */
.offcanvas {
    background: #000 !important;
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 400;
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.offcanvas .btn-close:hover {
    opacity: 1;
}

.offcanvas .nav-link {
    margin: 0.5rem 0;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background: rgba(255, 87, 34, 0.1);
}


.btn-primary-custom {
    background: var(--primary-orange);
    color: white;
    padding: 0.3rem 1.8rem;
    border-radius: 6px;
    border: none;
    font-weight: 100;
    transition: all 0.3s ease;
}

.btn-primary-custom-cta {
    background: #fff;
    color: #000;
    padding: 0.3rem 1.8rem;
    border-radius: 6px;
    border: none;
    font-weight: 100;
    transition: all 0.3s ease;
}


.btn-primary-custom:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.btn-outline-custom {
    /* border: 1px solid var(--glass-border); */
    /* background: transparent; */
    color: var(--text-primary);
    padding: 0.5 1.2rem;
    border-radius: 6px;
    font-weight: 100;
    transition: all 0.3s ease;
}
.btn-outline-custom-pricing {
    border: 2px solid var(--glass-border);
    /* background: transparent; */
    color: var(--text-primary);
    padding: 0.5 1.2rem;
    border-radius: 6px;
    font-weight: 100;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover,
.btn-outline-custom-pricing:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

/* .btn-outline-custom {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.3rem 1.5rem;
    border-radius: 10px;
    background: transparent;
    font-weight: 100;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--glass-bg);
    border-color: var(--primary-orange);
} */

.btn.btn-light {
    margin-top: 2rem;
    padding: 0.4rem 5rem;
}

.hero-section .hero-text-block {
    padding: 0 10px;
}

/* Hero Buttons with Gradient Sweep Effect / Pulsanti Hero con Effetto Gradient Sweep */
.hero-btn-primary,
.hero-btn-outline {
    background: linear-gradient(
        90deg,
        #ff5722 0%,
        #ff5722 50%,
        #ff8a65 50%,
        #ff8a65 100%
    );
    background-size: 200% 100%;
    background-position: right;
    transition: all 0.5s ease;
    color: white !important;
    border: none;
}

.hero-btn-primary:hover,
.hero-btn-outline:hover {
    background-position: left;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

/* Hero Section */
.hero-section {
    background-color:#000;
    padding: 0 0 8rem;
    position: relative;
    /* min-height: calc(100vh - 80px); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.akademi-boxes-row {
    /* display: flex;
    flex-wrap: nowrap; */
    gap: 0.5em;
    margin: 1rem 0;
}

.akademi-box-home {
    /* flex: 1; */
    height: auto;
    width: 100%;
    /* border: 1px solid gray;
    border-radius: 6px; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

/* Fix Bootstrap row overflow on mobile */
.row {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .hero-section .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-section {
        width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--primary-orange);
}

/* Striscia colorata senza testo / Barra colorata senza testo */
.hero-badge-line {
    width: 200px;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--primary-orange) 0%,
        rgba(255, 87, 34, 0.3) 70%,
        transparent 100%
    );
    margin-bottom: 2rem;
    border-radius: 3px;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-custom {
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.market-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 2rem;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.market-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.market-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.market-icon.green {
    background: linear-gradient(
        135deg,
        rgba(0, 255, 163, 0.2) 0%,
        rgba(0, 255, 163, 0.05) 100%
    );
    color: var(--primary-green);
}

.market-icon.orange {
    background: linear-gradient(
        135deg,
        rgba(255, 87, 34, 0.2) 0%,
        rgba(255, 87, 34, 0.05) 100%
    );
    color: var(--primary-orange);
}

.market-icon.purple {
    background: linear-gradient(
        135deg,
        rgba(124, 77, 255, 0.2) 0%,
        rgba(124, 77, 255, 0.05) 100%
    );
    color: var(--primary-purple);
}

.promo-section-wrapper {
    padding: 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.promo-section-wrapper hr {
    border: none !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.5), transparent) !important;
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.4);
    margin: 3rem 0 !important;
    opacity: 1 !important;
}

.promo-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
}

.promo-card-content {
    flex: 1;
}

.promo-channels {
    color: #999;
    font-size: 0.95rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.channel-item i {
    color: #999;
}

.channel-divider {
    color: #555;
}

.promo-link {
    color: var(--primary-orange);
    text-decoration: underline;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.promo-link:hover {
    color: #ff8a50;
}

.promo-card .img-bottom {
    margin-top: 2rem;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
}

/* Features Section Horizontal Scroll */
.features-section-wrapper {
    padding: 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.features-section-wrapper > .container {
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.features-scroll-wrapper {
    position: relative;
}

.features-horizontal-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.features-horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* Desktop Navigation Arrows */
.features-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.features-nav-arrow:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.features-nav-prev {
    left: -25px;
}

.features-nav-next {
    right: -25px;
}

.features-cards-container {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.feature-card-new {
    min-height: 450px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card-new:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 15px 25px -10px rgba(255, 255, 255, 0.2);
    /* transform: translateY(-5px); */
}

.feature-card-header {
    margin-bottom: 1.5rem;
}

.feature-card-label {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
}

.feature-card-label .label-highlight {
    color: #fff;
    font-weight: 400;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-description {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 0;
}

.feature-card-image {
    margin-top: auto;
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
    /* border: 1px solid #222; */
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card-new:hover .feature-card-image img {
    transform: scale(1.05);
}

/* Features Navigation Dots */
.features-nav-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding: 10px 0;
}

.features-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.features-nav-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.features-nav-dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* Responsive Features Cards */
@media (max-width: 768px) {
    .feature-card-new {
        min-height: 380px;
    }

    .feature-card-image {
        height: 150px;
    }

    /* Hide scrollbar on mobile */
    .features-horizontal-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .features-horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    .akademi-box-home {
        height: auto;
        /* border: 1px solid gray; */
        /* border-radius: 6px; */
    }
}

/* .take-action-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #ffffff;
    margin-bottom: 1rem;
} */

.top-section-badge {
    margin-top: 120px !important;
}

.section-badge {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    margin: 1.2rem 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.feature-card {
    height: 100%;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-orange),
        var(--primary-purple)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-purple)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Masonry Grid Layout / Layout Grid Masonry */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.masonry-item {
    position: relative;
    overflow: hidden;
}

/* Large card - occupa 3 colonne e 1 riga / card grande */
.masonry-large {
    grid-column: span 3;
    grid-row: span 1;
}

/* Tall card - occupa 2 colonne e 2 righe / card alta */
.masonry-tall {
    grid-column: span 2;
    grid-row: span 2;
}

/* Small card - occupa 1 colonna e 1 riga / card piccola */
.masonry-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Wide card - occupa 2 colonne e 1 riga / card larga */
.masonry-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* .feature-card-masonry {
    height: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
} */

.feature-image-big {
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    position: relative;
}

.feature-image {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card-masonry:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 1.7rem 1.2rem 0.6rem 1.2rem;
    background-color: #181818;
    backdrop-filter: blur(20px);
    max-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .feature-card-masonry .feature-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card-masonry .feature-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .masonry-large,
    .masonry-tall,
    .masonry-small,
    .masonry-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

*/

/* Insight Section */
.insight-section {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.insight-sidebar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.category-item {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-item:hover,
.category-item.active {
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary-orange);
}

.insight-card {
    padding: 0;
    overflow: hidden;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.2);
    border-color: rgba(255, 87, 34, 0.3);
}

.insight-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(
        135deg,
        rgba(255, 87, 34, 0.2),
        rgba(124, 77, 255, 0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.insight-content {
    padding: 2rem;
}

/* .insight-category {
    display: inline-block;
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary-orange);
    padding: 0.3rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
} 

.insight-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
*/
/* Insight Gallery with Thumbnails / Galleria Insight con Thumbnail */
.insight-gallery {
    margin: 1rem 0;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 6px;
    margin-bottom: 3rem;
    /* box-shadow: 0 15px 25px -10px rgba(255, 255, 255, 0.2); */
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Slide transition per mobile */
@media (max-width: 768px) {
    .gallery-main img {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.gallery-main-title {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail-item {
    padding: 0.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
}

.thumbnail-item.active {
    box-shadow: 0 5px 20px rgba(49, 47, 47, 0.3);
}

.thumbnail-icon {
    width: 40px;
    height: 40px;
    margin: 0 0 1rem;
    border-radius: 20%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-icon i {
    font-size: 1.3rem;
    color: var(--secondary-orange);
}

.thumbnail-title-text {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.thumbnail-description {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Gallery / Galleria Responsive */
@media (max-width: 768px) {
    .gallery-main {
        height: 350px;
    }

    .gallery-main-title {
        font-size: 1.1rem;
        bottom: 1rem;
        left: 1rem;
        padding: 0.8rem 1rem;
    }
}

/* Mobile Carousel Styles */
.insight-carousel-mobile {
    margin: 2rem 0;
}

.insight-carousel-mobile .carousel-image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    height: 280px;
}

.insight-carousel-mobile .carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.insight-carousel-mobile .carousel-caption-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0.5rem;
    gap: 1rem;
}

.insight-carousel-mobile .caption-content {
    flex: 1;
}

.insight-carousel-mobile .carousel-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.insight-carousel-mobile .carousel-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.insight-carousel-mobile .carousel-arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-orange);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.insight-carousel-mobile .carousel-arrow-btn:hover {
    background: var(--secondary-orange);
    transform: scale(1.1);
}

.insight-carousel-mobile .carousel-arrow-btn i {
    font-size: 1rem;
}

/* Insight Mobile Caption */
.insight-caption-mobile {
    padding: 1rem 0.5rem;
}

.insight-mobile-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.insight-mobile-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Insight Mobile Navigation */
.insight-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.insight-nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #333;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-nav-arrow:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.insight-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-indicator {
    width: 25px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insight-indicator.active {
    background: #fff;
    width: 30px;
}

.insight-indicator:hover {
    background: #666;
}

.insight-indicator.active:hover {
    background: #fff;
}

/* Pricing Section */

.pricing-card {
    padding: 0.8rem 1rem;
    height: 100%;
    position: relative;
    background: #181818 !important;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pricing-icon::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 100%;
    box-shadow:
        0 20px 25px -5px #000,
        0 8px 10px -6px #000;
    z-index: -1;
}
/* Basic card - white/light glow (matches icon bg) */
.pricing-card:has(.pricing-icon.basic)::before {
    background: radial-gradient(
        ellipse at top left,
        rgba(255, 252, 251, 0.3) 0%,
        rgba(232, 229, 228, 0.15) 25%,
        rgba(232, 229, 228, 0.05) 45%,
        transparent 60%
    );
}

/* Pro card - red glow (matches icon bg) */
.pricing-card:has(.pricing-icon.pro)::before {
    background: radial-gradient(
        ellipse at top left,
        rgba(255, 0, 0, 0.3) 0%,
        rgba(255, 0, 0, 0.12) 25%,
        rgba(255, 0, 0, 0.04) 45%,
        transparent 60%
    );
}

/* Elite card - blue glow (matches icon bg) */
.pricing-card:has(.pricing-icon.elite)::before {
    background: radial-gradient(
        ellipse at top left,
        rgba(41, 49, 254, 0.3) 0%,
        rgba(41, 49, 254, 0.12) 25%,
        rgba(41, 49, 254, 0.04) 45%,
        transparent 60%
    );
}

.bg-price-card {
    background-color: #181818;
}

/* .pricing-card.featured {
    border: 2px solid var(--primary-orange);
} */

.pricing-icon {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    box-shadow:
        /* inset 3px 3px 6px rgba(255, 255, 255, 0.5),
        inset -3px -3px 6px rgba(0, 0, 0, 0.3), */
        0 15px 40px rgba(0, 0, 0, 0.9),
        0 8px 20px rgba(0, 0, 0, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.7);
}

/* Pricing Header - Nome e Selettori sulla stessa riga / Header Prezzi - Nome e Selettori sulla stessa riga */
.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    gap: 1rem;
}

.pricing-icon.basic {
    /* background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d5d2d1 100%); */
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 1);
    color: #aa2800;
    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        inset -2px -2px 4px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.6);
}

.pricing-icon.pro {
    /* background-color: rgb(255, 100, 100, 1); */
    background-color: #ff3f05;
    border: 1px solid rgba(255, 100, 100, 0.5);
    color: #ffffff;
}

.pricing-icon.elite {
    background-color: #3300ff;
    border: 1px solid rgba(100, 100, 255, 0.5);
    color: #ffffff;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: auto;
    margin-left: 0;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 600 !important;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 60px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--primary-green);
    margin-right: 0.8rem;
}

/* Card Duration Selector with Radio Inputs / Selettore durata con radio input */
.card-duration-selector {
    display: inline-flex;
    background: #000;
    border-radius: 6px;
    padding: 2px;
    gap: 0;
    flex-shrink: 0;
    position: relative;
}

.card-duration-selector input[type="radio"] {
    display: none;
}

.card-duration-selector label {
    padding: 0.2rem 1.9rem;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
}

.card-duration-selector label:hover {
    color: #fff;
}

.card-duration-selector input[type="radio"]:checked + label {
    background: #181818;
    color: #fff;
    font-weight: 400;
    border-radius: 6px;
}

/* Se c'è un solo radio button, appare come attivo / Quando c'è solo un radio button, appare attivo */
.card-duration-selector label:only-of-type {
    background: #000;
    color: #fff;
    font-weight: 400;
    border-radius: 6px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
}

.testimonial-card {
    padding: 1rem;
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 100%
    );
    pointer-events: none;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 100%
    );
    pointer-events: none;
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: #00ffaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author .quote-icon {
    margin-bottom: 0;
    margin-left: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-purple)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.author-name {
    font-weight: 400;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonial Thumbnails / Thumbnail Testimonianze */
.testimonial-thumb {
    transition: all 0.3s ease;
}
/*
.testimonial-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

 .testimonial-thumb.active {
    border: 2px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
} */

.testimonial-card {
    transition: opacity 0.3s ease;
}

/* FAQ Section */
.faq-section {
    padding: 0.5rem 0;
}

.footer-custom.container,
.features-section-wrapper.container,
.insight-section.container,
.pricing-section.container,
.testimonials-section.container,
.faq-section.container {
    padding: 10px;
}
.accordion-item {
    /* background: #1A1A1A;
    border: 1px solid var(--glass-border); */
    background: #0f0f0f;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #222;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 400;
    padding: 1.5rem;
    font-size: 1.3rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #000;
    color: var(--text-primary);
    /* color: var(--primary-orange); */
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    width: auto;
    height: auto;
    transform: none;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    padding: 1.5rem;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 0px;
}
.newsletter-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    padding: 10rem 2rem;
}

@media (max-width: 768px) {
    .newsletter-bg-img {
        width: 100%;
        height: 100%;
        object-position: center center;
    }

    .newsletter-content {
        padding: 1.5rem 1rem;
    }

    .newsletter-section .section-title {
        font-size: 1.45rem;
        margin-top: 70px;
    }

    .newsletter-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 6rem 0 0;
    margin-top: 80px !important;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
}

/* Footer Custom / Footer Personalizzato */
.footer-custom {
    background: #000;
    padding: 5rem 0 2.5rem;
    margin-top: 100px;
}

.footer-custom .footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.footer-custom .footer-description {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.875rem;
}

.footer-newsletter {
    display: flex;
    gap: 0.625rem;
}

.footer-email-input {
    flex: 1;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
}

.footer-email-input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.footer-subscribe-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-subscribe-btn:hover {
    background: var(--primary-orange);
    color: #fff;
}

.footer-custom .footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-orange);
}

.footer-copyright {
    color: #666;
    font-size: 0.75rem;
    margin: 0;
}

.footer-bottom-link {
    color: #999;
    font-size:14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: #fff;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* Footer Responsive / Footer Responsive */
@media (max-width: 768px) {
    .footer-custom {
        padding: 1rem 0rem;
        margin-top:0px;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-subscribe-btn {
        width: 100%;
    }

    .footer-custom .footer-brand {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
    }

    .footer-copyright-links {
        justify-content: center !important;
    }

    .footer-bottom-social {
        margin-top: 1rem !important;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .newsletter-title {
        font-size: 1.75rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section .hero-text-block {
        margin-top: 30px;
    }
    .hero-section {
        margin-top: 80px;
        padding: 8rem 0 6rem;
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow-x: hidden;
        width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .insight-sidebar {
        margin-bottom: 2rem;
    }

    /* Riduce spazio tra insight e pricing su mobile */
    section {
        min-height: auto !important;
    }

    /* .insight-section {
        padding: 0.rem 0 !important;
        margin-bottom: 0 !important;
    }

    .insight-section .mb-5 {
        margin-bottom: 1rem !important;
    }

    .insight-carousel-mobile {
        margin: 0.5rem 0 0 0 !important;
    }

    .pricing-section {
        padding: 1rem 0 !important;
        margin-top: 0 !important;
    }

    .pricing-section .mb-5 {
        margin-bottom: 1rem !important;
    }

    .testimonials-section {
        padding: 1rem 0;
        background: rgba(0, 0, 0, 0.2);
    }

    .faq-section, .newsletter-section {
        padding: 1rem 0 !important;
    } */

    .pricing-card {
        padding: 2rem 1rem;
        height: 100%;
        position: relative;
        background: #181818 !important;
        border-radius: 12px;
    }
}

.logoimg {
    max-height: 30px;
}

/* ========================================
    AKADEMI PAGE STYLES
    ======================================== */

/* Akademi Hero Section */

/* Akademi About Section */
.akademi-about-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
}

.akademi-video-card {
    /* background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); */
    border: 2px solid #1A1A1A;
    border-radius:6px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.akademi-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Akademi Features Section */
.akademi-features-section {
    padding: 120px 0;
    /* background-color: var(--bg-dark); */
}

.akademi-feature-card {
    /* background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); */
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    overflow: hidden;
    padding: 0;
}

.akademi-feature-card:hover {
    transform: translateY(-5px);
}

.akademi-feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.akademi-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.akademi-feature-card:hover .akademi-feature-image img {
    transform: scale(1.1);
}

.akademi-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
}

.akademi-feature-title {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-primary);
}

.akademi-feature-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* Akademi CTA Section */
.akademi-cta-section {
    padding: 60px 0 40px;
    text-align: center;
    background-color: var(--bg-dark);
    min-height: auto !important;
}

.akademi-cta-title {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.akademi-cta-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Akademi Responsive */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
    .akademi-about-section {
        padding: 80px 0;
    }

    .akademi-features-section {
        padding: 80px 0;
    }

    .akademi-cta-section {
        padding: 50px 0 30px;
    }

    .akademi-cta-title {
        font-size: 32px;
    }

    .akademi-cta-description {
        font-size: 16px;
    }

    .akademi-video-card {
        height: 350px;
    }
}

/* ========================================
    BLOG PAGE STYLES
    ======================================== */

/* Blog Description Section */
.blog-description-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    min-height: auto !important;
}

.blog-description-text {
    color: #666;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 80px;
}

.blog-divider {
    width: 100%;
    max-width: 900px;
    height: 1px;
    background: #1a1a1a;
    margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    min-height: auto !important;
}

.blog-posts-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 40px;
    align-items: center;
    padding: 0px;
    border-bottom: 1px solid #181818;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    border-color: #181818;
}

.blog-post-content {
    padding: 20px;
}

.blog-post-badge {
    display: inline-block;
    background: #1a1a1a;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-badge.elit {
    color: #6c5ce7;
    border: 1px solid #6c5ce7;
}

.blog-post-badge.pro {
    color: var(--secondary-orange);
    border: 1px solid var(--secondary-orange);
}

.blog-post-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-post-description {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-post-meta {
    color: #444;
    font-size: 13px;
}

.blog-post-meta i {
    margin-right: 5px;
}

.blog-post-image {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 60px 0 40px;
    text-align: center;
    background-color: var(--bg-dark);
    min-height: auto !important;
}

.blog-cta-title {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.blog-cta-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Blog Responsive */
@media (max-width: 992px) {
    .blog-hero-title {
        font-size: 56px;
    }

    .blog-cta-title {
        font-size: 42px;
    }

    .blog-post-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post-content {
        padding-right: 0;
    }

    .blog-post-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-description-section {
        padding: 80px 0;
    }

    .blog-posts-section {
        padding: 60px 0;
    }

    .blog-cta-section {
        padding: 50px 0 30px;
    }

    .blog-cta-title {
        font-size: 32px;
    }

    .blog-cta-description {
        font-size: 16px;
    }

    .blog-post-card {
        padding: 30px 20px;
    }

    .blog-post-title {
        font-size: 18px;
    }
}

/* ========================================
    INDEX PAGE SPECIFIC STYLES
    ======================================== */

/* Hero Section Background Carousel */
.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

@media (max-width: 991px) {
    .hero-bg-slide {
        background-position: center center;
    }
}

/* Hero Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.95) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
    z-index: 1;
}

/* Hero Overlay Mobile - overlay uniforme senza gradient */
.hero-overlay-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Hero Text Block */
.hero-title {
    max-width: 500px;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Hero Title Custom */
/* .hero-title-custom {
    max-width: 500px;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 400;
} */

/* Pricing Small Text */
.pricing-small-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Prezzo originale sbarrato (quando c'è offerta) */
.price-original-usd {
    font-size: 1.4rem;
    color: #666;
    margin-right: 0.3rem;
}

.price-original-try {
    font-size: 0.85rem;
    color: #666;
    margin-right: 0.3rem;
}

/* Prezzo in lira turca sotto il prezzo in dollari */
.price-try-line {
    display: block;
    margin-top: 0.3rem;
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

/* Testimonial Thumb Styles */
.testimonial-thumb-wrapper {
    padding: 1rem;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-image: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%
        )
        1;
}

.thumb-avatar {
    width: 50px;
    height: 50px;
    /* border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 87, 34, 0.3),
        rgba(255, 87, 34, 0.1)
    ); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 400;
    font-size: 1.2rem;
}

.thumb-avatar-green {
    background: linear-gradient(
        135deg,
        rgba(0, 255, 163, 0.3),
        rgba(0, 255, 163, 0.1)
    );
}

.thumb-avatar-purple {
    background: linear-gradient(
        135deg,
        rgba(124, 77, 255, 0.3),
        rgba(124, 77, 255, 0.1)
    );
}

.thumb-avatar-cyan {
    background: linear-gradient(
        135deg,
        rgba(0, 229, 255, 0.3),
        rgba(0, 229, 255, 0.1)
    );
}

.thumb-avatar-yellow {
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.3),
        rgba(255, 193, 7, 0.1)
    );
}

.thumb-avatar-pink {
    background: linear-gradient(
        135deg,
        rgba(156, 39, 176, 0.3),
        rgba(156, 39, 176, 0.1)
    );
}

.thumb-avatar-red {
    background: linear-gradient(
        135deg,
        rgba(244, 67, 54, 0.3),
        rgba(244, 67, 54, 0.1)
    );
}

/* Mobile Testimonials Navigation */
.testimonial-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.testimonial-nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #333;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-arrow:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-indicator {
    width: 25px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: #fff;
    width: 30px;
}

.testimonial-indicator:hover {
    background: #666;
}

.testimonial-indicator.active:hover {
    background: #fff;
}

/* Modal Custom Styles */
.modal-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.modal-header-custom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(
        135deg,
        rgba(255, 87, 34, 0.2),
        rgba(255, 87, 34, 0.05)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.modal-title-custom {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modal-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title-custom {
        font-size: 48px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .thumbnail-title-text {
        font-size: 1rem;
    }

    .thumbnail-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .btn.btn-light {
        padding: 0 5rem;
        margin-top: 0;
    }

    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-brand {
        font-size: 1.1rem;
        margin-left: 10px !important;
    }

    .navbar-toggler {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
    }

    .hero-title-akademi {
        font-size: 32px;
    }

    .akademi-video-card {
        height: 250px;
    }

    .akademi-feature-card {
        min-height: 300px;
    }

    .container {
        padding: 0;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-post-image {
        height: 200px;
    }

    .blog-description-text {
        font-size: 14px;
    }

    .insight-section {
        padding: 0.5rem 0 !important;
        background: rgba(0, 0, 0, 0.2);
        margin-bottom: 0 !important;
    }

    .insight-section .mb-5 {
        margin-bottom: 1rem !important;
    }

    .insight-carousel-mobile {
        margin: 1rem 0 0 0 !important;
    }

    .hero-title-custom {
        font-size: 36px;
    }


    .newsletter-section .section-title {
        font-size: 1.35rem;
        margin-top: 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 0;
    }

    .newsletter-title {
        font-size: 1.375rem;
    }

    .scroll-to-top {
        bottom: 30px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .newsletter-section {
        height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .newsletter-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center center;
    }

    .newsletter-content {
        position: relative;
        z-index: 1;
        padding: 2rem 1.5rem;
        width: 100%;
    }
}

@media (min-width:768px) {
    .col2space {
        padding-top: 30px;
        padding-bottom: 100px;
    }

}

/* ========================================
    AKADEMI PAGE SPECIFIC STYLES
    ======================================== */

/* Akademi Hero Background */
.akademi-hero-bg {
    position: relative;
    background: url("https://images.pexels.com/photos/6801874/pexels-photo-6801874.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1")
        right center / cover no-repeat;
    overflow: hidden;
}

/* ========================================
    INSIGHTS (BLOG) PAGE SPECIFIC STYLES
    ======================================== */

/* Blog/Insights Hero Background */
.blog-hero-bg {
    position: relative;
    background: url("https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1")
        right center / cover no-repeat;
    overflow: hidden;
}

/* ========================================
    PRICING COMPARISON TABLE
    ======================================== */

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr repeat(3, 250px);
    gap: 1rem;
    margin-bottom: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr repeat(3, 250px);
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #1a1a1a;
    align-items: center;
}

.comparison-feature-col {
    color: #fff;
    font-size: 0.95rem;
    padding-left: 1rem;
}

.comparison-plan-col {
    text-align: center;
}

.comparison-plan-card {
    background: #181818;
    border-radius: 12px;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.comparison-plan-card.basic::before {
    background: radial-gradient(
        ellipse at top left,
        rgba(255, 252, 251, 0.3) 0%,
        rgba(232, 229, 228, 0.15) 25%,
        rgba(232, 229, 228, 0.05) 45%,
        transparent 60%
    );
}

.comparison-plan-card.pro::before {
    background: radial-gradient(
        ellipse at top left,
        rgba(255, 0, 0, 0.3) 0%,
        rgba(255, 0, 0, 0.12) 25%,
        rgba(255, 0, 0, 0.04) 45%,
        transparent 60%
    );
}

.comparison-plan-card.elite::before {
    background: radial-gradient(
        ellipse at top left,
        rgba(41, 49, 254, 0.3) 0%,
        rgba(41, 49, 254, 0.12) 25%,
        rgba(41, 49, 254, 0.04) 45%,
        transparent 60%
    );
}

.comparison-plan-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.comparison-plan-name .fa-info-circle {
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.comparison-plan-name .fa-info-circle:hover {
    color: var(--primary-orange);
}

.comparison-plan-price {
    margin-bottom: 0.5rem;
}

.price-original-usd-compare {
    font-size: 1.2rem;
    color: #666;
    margin-right: 0.2rem;
}

.price-try-line-compare {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    color: #999;
}

.price-original-try-compare {
    font-size: 0.85rem;
    color: #666;
    margin-right: 0.2rem;
}

.price-amount-compare {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comparison-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* border-radius: 50%;
    border: 1px solid #333; */
}

.comparison-icon.plus {
    color: var(--text-primary);
    border-color: #444;
}

.comparison-icon.minus {
    color: var(--text-secondary);
    border-color: #333;
}

.comparison-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Mobile Features List */
.comparison-features-mobile {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.comparison-features-mobile li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #222;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comparison-features-mobile li span:first-child {
    width: 55%;
    text-align: left;
    color: #fff;
}

.comparison-features-mobile li span:last-child {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #999;
}

.comparison-features-mobile li:last-child {
    border-bottom: none;
}

.comparison-features-mobile .comparison-icon {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: none;
}

.comparison-features-mobile .comparison-text {
    font-size: 0.75rem;
    text-align: center;
}

/* Responsive Comparison Table */
@media (max-width: 992px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr repeat(3, 1fr);
        gap: 0.5rem;
    }

    .comparison-plan-card {
        padding: 1rem;
    }

    .price-amount-compare {
        font-size: 1.5rem;
    }

    .comparison-plan-name {
        font-size: 1.4rem;
    }

    .card-duration-selector label {
        padding: 0.2rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .comparison-header {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-header .comparison-feature-col {
        display: none;
    }

    .comparison-plan-card {
        padding: 1.5rem 0.5rem;
    }

    .comparison-plan-name {
        font-size: 1.6rem;
    }

    .price-amount-compare {
        font-size: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-orange);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(170, 40, 0, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
}

/* ============================================
   AUTH PAGES (Login / Signup)
   ============================================ */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.auth-card {
    background: #080808;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.auth-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #aa2800, #ff5722);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fff;
}

.auth-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.auth-subtitle {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.auth-card .form-label {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.auth-input-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    color: #999;
}

.auth-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.auth-input:focus {
    border-color: #ff5722 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.15) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.auth-input::placeholder {
    color: #666;
}

.auth-eye-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: none;
    color: #999;
    transition: color 0.3s ease;
}

.auth-eye-btn:hover {
    color: #ff5722;
}

/* Indicatore forza password */
.password-strength {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-text {
    font-size: 0.75rem;
    display: block;
    margin-top: 4px;
}

/* Checkbox stili */
.auth-check .form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.auth-check .form-check-input:checked {
    background-color: #ff5722;
    border-color: #ff5722;
}

.auth-check .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 34, 0.15);
}

.auth-check .form-check-label {
    color: #bbb;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Link e bottone */
.auth-link {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #ff8a50;
    text-decoration: underline;
}

.auth-submit-btn {
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.auth-footer-text {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Alert personalizzati per dark theme */
.auth-card .alert {
    border-radius: 10px;
    font-size: 0.9rem;
}

.auth-card .alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
}

.auth-card .alert-success {
    background: rgba(25, 135, 84, 0.15);
    border-color: rgba(25, 135, 84, 0.3);
    color: #5dd39e;
}

.auth-card .alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffd54f;
}

.auth-card .alert .btn-close {
    filter: invert(1);
}

/* Bootstrap validation stili per dark theme */
.auth-card .invalid-feedback {
    color: #ff6b7a;
    font-size: 0.85rem;
}

.auth-card .was-validated .form-control:valid,
.auth-card .form-control.is-valid {
    border-color: rgba(25, 135, 84, 0.5);
    background-image: none;
}

.auth-card .was-validated .form-control:invalid,
.auth-card .form-control.is-invalid {
    border-color: rgba(220, 53, 69, 0.5);
    background-image: none;
}

.auth-card .was-validated .form-check-input:valid,
.auth-card .form-check-input.is-valid {
    border-color: rgba(25, 135, 84, 0.5);
}

.auth-card .was-validated .form-check-input:invalid,
.auth-card .form-check-input.is-invalid {
    border-color: rgba(220, 53, 69, 0.5);
}

.auth-card .was-validated .form-check-input:valid ~ .form-check-label,
.auth-card .form-check-input.is-valid ~ .form-check-label {
    color: #ccc;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-card {
        padding: 30px 20px;
    }

    .auth-section {
        padding: 100px 0 40px;
    }
}
