
/* TT Norms Regular */
@font-face {
    font-family: 'TTNorms-300';
    src: url('../fonts/TTNorms-Regular.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* TT Norms Medium */
@font-face {
    font-family: 'TTNorms-500';
    src: url('../fonts/TTNorms-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* TT Norms Bold */
@font-face {
    font-family: 'TTNorms-700';
    src: url('../fonts/TTNorms-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Canela Regular */
@font-face {
    font-family: 'Canela-400';
    src: url('../fonts/Canela-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Canela Medium */
@font-face {
    font-family: 'Canela';
    src: url('../fonts/Canela-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Canela Light */
@font-face {
    font-family: 'Canela-header';
    src: url('../fonts/Canela-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* How It Works Section */
.how-it-works-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.how-it-works-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-content .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-family: 'Canela-header', serif;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 50px;
    font-family: 'TTNorms-300', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flow-root;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'Canela-header', serif;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
    text-align: left;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 80px 0;
    color: white;
}

.stats-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-content .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 50px;
    font-family: 'Canela-header', serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: black;
    display: block;
    margin-bottom: 10px;
    font-family: 'Canela-header', serif;
}

.stat-label {
    font-size: 12px;
    color: black;
    font-family: 'TTNorms-300', sans-serif;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-content .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 50px;
    font-family: 'Canela-header', serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px;
}

.testimonial-item {
    background: white;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'TTNorms-300', sans-serif;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--red-logo-color);
    font-weight: 600;
    font-family: 'TTNorms-500', sans-serif;
}

/* Choose Profile Section */
.choose-profile-section {
    background: white;
    padding: 80px 0;
}

.choose-profile-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.choose-profile-content .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-family: 'Canela-header', serif;
}

.profile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.profile-card {
    background: white;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: left;
    display: grid;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--red-logo-color);
}

.profile-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.profile-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Canela', serif;
}

.profile-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
    font-family: 'TTNorms-300', sans-serif;
    text-align: justify;
}

.profile-features h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'TTNorms-500', sans-serif;
}

.profile-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.profile-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
    position: relative;
    padding-left: 20px;
}

.profile-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red-logo-color);
    font-weight: bold;
}

.profile-btn {
    display: inline-block;
    /* background: var(--red-logo-color); */
    background: #0071bb;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'TTNorms-500', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    border: 1px solid #0071bb;
}

.profile-btn:hover {
    background: var(--red-logo-color);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   PRICING SLIDER MOBILE
   ======================================== */

.pricing-slider-mobile {
    display: none;
}

.pricing-slider-mobile .swiper-slide {
    height: auto;
    padding: 0 5px;
    display: flex;
    align-items: stretch;
}

.pricing-slider-mobile .pricing-card {
    margin: 0;
    height: auto;
    display: block;
    min-height: auto;
    padding: 20px 12px;
}

.pricing-slider-mobile .pricing-card .card-features {
    flex-grow: 0;
    margin-bottom: 20px;
}

.pricing-slider-mobile .pricing-card .card-description {
    flex-grow: 0;
    margin-bottom: 20px;
}

.pricing-slider-mobile .pricing-card .pricing-btn {
    margin-top: 0;
    margin-bottom: 0;
}

.pricing-slider-mobile .pricing-card .card-header {
    margin-bottom: 20px;
}

.pricing-slider-mobile .pricing-card .card-price {
    margin-bottom: 0px;
    padding: 15px 0;
}

.pricing-slider-pagination {
    margin-top: 30px;
    text-align: center;
}

.pricing-slider-pagination .swiper-pagination-bullet {
    background: var(--red-logo-color);
    opacity: 0.3;
}

.pricing-slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {

    .card-features li{
        font-size: 14px !important;
    }

    .pricing-grid {
        display: none;
    }
    
    .pricing-slider-mobile {
        display: block;
    }
    
    .how-it-works-content .section-title,
    .stats-content .section-title,
    .testimonials-content .section-title,
    .choose-profile-content .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-item {
        padding: 25px 20px;
    }
    
    .profile-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .profile-card {
        padding: 30px 20px;
    }
    
    .profile-card h3 {
        font-size: 1.3rem;
    }
    
    .profile-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {

    .card-features li{
        font-size: 14px !important;
    }

    .pricing-grid{
        display: none !important;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        row-gap: 3% !important;
        max-width: 1400px;
        margin: 10px auto;
        margin-bottom: 50% !important;
    }

    .introduction-text{
        text-align: left;
    }

    .introduction-content .section-title{
        text-align: left;
    }

    .how-it-works-section,
    .stats-section,
    .testimonials-section,
    .choose-profile-section,
    .introduction-section,
    .pricing-section,
    .cta-section {
        padding: 60px 0;
    }

    
    .how-it-works-content .section-title,
    .stats-content .section-title,
    .testimonials-content .section-title,
    .choose-profile-content .section-title,
    .introduction-content .section-title,
    .pricing-header .section-title,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .stats-grid,
    .testimonials-grid,
    .profile-cards,
    .pricing-grid {
        padding: 0 15px;
        grid-template-columns: 1fr;
    }
    
    .feature-item,
    .testimonial-item,
    .profile-card,
    .pricing-card {
        padding: 20px 15px;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .profile-card h3,
    .card-title {
        font-size: 1.2rem;
    }
    
    .profile-icon,
    .card-icon {
        font-size: 2.5rem;
    }
    
    .stat-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.testimonial-item,
.profile-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.5s;
}

/* ========================================
   ALTERNANT PAGE SPECIFIC STYLES
   ======================================== */

/* Introduction Section for Alternant */
.introduction-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.introduction-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.introduction-content .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-family: 'Canela-header', serif;
}

.introduction-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'TTNorms-300', sans-serif;
    text-align: left;
}

.success-stats {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--red-logo-color), #e74c3c);
    color: white;
    border-radius: 0;
}

.stat-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Canela-header', serif;
}

.stat-text {
    font-size: 1.3rem;
    font-family: 'TTNorms-300', sans-serif;
    max-width: 400px;
}

/* Pricing Section for Alternant */
.pricing-section {
    background: white;
    padding: 60px 0;
}

.black-price{
    color: black !important;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header .section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    font-family: 'Playfair Display';
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 10% auto;
}

.boldd{

    font-family: 'Canela', serif;
}

.black-font {
    color: black !important;
}

/* Pricing Cards for Alternant */
.pricing-card {
    background: white;
    padding: 17px 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid black;
    display: grid;
    grid-template-rows: 200px 90px 450px 40px;

}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border-color: #036eb0;
    /* transform: scale(1.05); */
}

.pricing-card.premium {
    border-color: #1e8f25;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

/* Card Badges for Alternant */
.popular-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #036eb0;
    color: white;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Canela-header', sans-serif;
    text-align: center;
    letter-spacing: 2px;
}

.premium-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    /* background: linear-gradient(135deg, #ffd700, #ffed4e); */
    background: #1e8f25;
    color: white;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Canela-header', sans-serif;
    text-align: center;
    letter-spacing: 2px;
}

/* Card Header for Alternant */
.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-icon {
    font-size: 3rem;
    display: block;
}

.card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-family: 'Canela', serif;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
}

/* Card Price for Alternant */
.card-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 2px 0;
    /* border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; */
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #036eb0;
    font-family: 'Canela-header', serif;
}

.premium .price {
    color: #1e8f25;
}

.period {
    font-size: 1.1rem;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
}

/* Card Features for Alternant */
.card-features {
    margin-bottom: 30px;
    /* background: #80808012;
    padding: 20px; */
}

.card-features h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'TTNorms-500', sans-serif;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-content h2{
    color: black !important;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
}

.card-features li i {
    color: #036eb0;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 0.9rem;
}

.premium .card-features li i {
    color: #1e8f25;
}

/* Card Description for Alternant */
.card-description {
    margin-bottom: 30px;
}

.card-description h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'TTNorms-500', sans-serif;
}

.card-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
    margin-bottom: 20px;
}

.perfect-for {
    background: #f8f9fa;
    padding: 20px;
    margin-top: 20px;
}

.perfect-for strong {
    color: var(--dark-color);
    font-family: 'TTNorms-500', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.perfect-for ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.perfect-for li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
    position: relative;
    padding-left: 15px;
}

.perfect-for li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--red-logo-color);
    font-weight: bold;
}

/* Pricing Buttons for Alternant */
.pricing-btn {
    width: 100%;
    padding: 10px 15px;
    font-size: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'TTNorms-300', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background-color: #0071bb;
}

.pricing-btn:hover {
    background: var(--red-logo-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.pricing-btn.primary {
    background: var(--red-logo-color);
    color: white;
}

.pricing-btn.primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.pricing-btn.premium {
    border-color: #ffd700;
    color: #ffd700;
    background: transparent;
}

.pricing-btn.premium:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* CTA Section for Alternant */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-family: 'Canela-header', serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 40px;
    font-family: 'TTNorms-300', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 10px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'TTNorms-300', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-btn.primary {
    background: white;
    color: var(--red-logo-color);
    border: 2px solid white;
}

/* .cta-btn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
} */

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--red-logo-color);
    transform: translateY(-2px);
}

/* ========================================
   FORMULA CONFIRMATION POPUP
   ======================================== */

.formula-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.formula-popup-overlay.active {
    display: flex;
}

.formula-popup {
    background: white;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    /* background: linear-gradient(135deg, var(--red-logo-color), #e74c3c); */
    background: #0071bb;
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Canela-header', serif;
}

.popup-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'TTNorms-300', sans-serif;
}

.popup-content {
    padding: 30px;
}

.popup-formula-info {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid black;
}

.popup-formula-name {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-family: 'TTNorms-500', sans-serif;
}

.popup-formula-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0071bb;
    margin-bottom: 15px;
    font-family: 'Canela-header', serif;
}

.popup-formula-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
}

.popup-features {
    margin-bottom: 25px;
}

.popup-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'TTNorms-500', sans-serif;
}

.popup-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    font-family: 'TTNorms-300', sans-serif;
}

.popup-features li i {
    color: var(--red-logo-color);
    margin-right: 10px;
    margin-top: 2px;
    font-size: 0.8rem;
}

.popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-btn {
    color: rgb(0, 113, 187);
    background-color: white;
    border: 2px solid rgb(0, 113, 187);
    padding: 15px 10px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'TTNorms-300', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
    display: inline-block;
}

.popup-btn:hover {
    background: rgb(0, 113, 187);
    color: white;
    transform: translateY(-2px);
    /* box-shadow: 0 5px 15px rgba(0, 113, 187, 0.3); */
}

.popup-btn.secondary {
    background: transparent;
    color: var(--text-color);
    border-color: #ddd;
}

.popup-btn.secondary:hover {
    background: #f8f9fa;
    color: var(--dark-color);
    border-color: #ccc;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-icon {
    font-size: 1.2rem;
    color: #dc2626;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin: 0;
    font-family: 'TTNorms-500', sans-serif;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
    color: black;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
    font-family: 'TTNorms-300', sans-serif;
    font-size: 1rem;
    margin-top: 10px;
}

/* FAQ Animation */
.faq-item.active .faq-question {
    background: #f8f9fa;
    border-bottom: 1px solid var(--gray-200);
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {

    .card-features {
        /* padding: 17px; */
    }

    .formula-popup-overlay {
        padding: 10px;
    }
    
    .formula-popup {
        max-height: 90vh;
    }
    
    .popup-header {
        padding: 25px 20px;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .popup-btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
    
    .faq-question-icon {
        font-size: 1rem;
        margin-right: 10px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

.profile-btn:focus,
.pricing-btn:focus {
    outline: 3px solid rgba(231, 76, 60, 0.3);
    outline-offset: 2px;
}

/* ========================================
   MODERN PRICING CARDS DESIGN
   ======================================== */

.modern-pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 33px 15px;
    position: relative;
    transition: all 0.3s ease;
    flex-direction: column;
    height: 100%;
    border: 1px solid #d5dfff;
    display: grid;
    grid-template-rows: 160px 90px 80px 100px 80px 270px;
}

.cards-alternant{
    grid-template-rows: 160px 90px 80px 100px 80px 400px !important;
}


.modern-pricing-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Popular card styling */
.modern-pricing-card.popular-card {
    border: 2px solid #A8A8FF;
    /* transform: scale(1.05); */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.modern-pricing-card.popular-card:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Popular badge */
.popular-badge {
    background: linear-gradient(135deg, #8A2BE2 0%, #9370DB 50%, #DDA0DD 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
    width: 101%;
    box-sizing: border-box;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e8f4f8;
    color: #0071bb;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Card header */
.modern-pricing-card .card-header {
    margin-bottom: 20px;
    text-align: center;
}

.modern-pricing-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.modern-pricing-card .card-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Price styling */
.modern-pricing-card .card-price {
    text-align: center;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
}

.price-currency {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* Free months */
.free-months {
    text-align: center;
    color: #0071bb;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

/* Select button */
.select-btn {
    width: 100%;
    background: white;
    color: #0071bb;
    border: 2px solid #0071bb;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.select-btn:hover {
    background: #0071bb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 113, 187, 0.3);
}

.popular-btn {
    background: #0071bb;
    color: white;
    border: 2px solid #0071bb;
}

.popular-btn:hover {
    background: #0056b3;
    border-color: #0056b3;
}

/* Pricing details */
.pricing-details {
    margin-bottom: 30px;
    text-align: center;
}

.total-price {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.renewal-price {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Features styling */
.modern-pricing-card .card-features {
    flex: 1;
}

.modern-pricing-card .card-features h4 {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
}

.modern-pricing-card .card-features ul {
    list-style: none;
    padding: 15px;
    margin: 0;
    /* background: #80808012; */
}

.modern-pricing-card .card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.modern-pricing-card .card-features li:last-child {
    margin-bottom: 0;
}

.modern-pricing-card .card-features li i {
    color: black;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .modern-pricing-card.popular-card {
        transform: none;
    }
    
    .modern-pricing-card.popular-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .modern-pricing-card {
        padding: 25px 10px;
        display: flex;
        flex-direction: column;
        height: 100%;
        border: 1px solid #d5dfff;
        grid-template-rows: none;
    }
    
    .modern-pricing-card .card-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .select-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Mobile slider specific styles */
    .pricing-slider-mobile .modern-pricing-card {
        margin: 0 10px;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    
    .pricing-slider-mobile .modern-pricing-card.popular-card {
        border: 2px solid #A8A8FF;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }
    
    .pricing-slider-mobile .popular-badge {
        width: 101%;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

/* ========================================
   GRADIENT BACKGROUNDS FOR FORMULES
   ======================================== */

/* Formule 1 - White Background */
.formule-1-gradient {
    background: white;
    color: #2c3e50;
    
}

.formule-1-gradient, .formule-3-gradient {
    border: 2px solid #d5dfff !important;
}

.formule-1-gradient:hover, .formule-3-gradient:hover {
    transform: scale(1.05) translateY(-5px);
}

.formule-1-gradient .card-title,
.formule-1-gradient .card-subtitle,
.formule-1-gradient h4,
.formule-1-gradient .price-amount,
.formule-1-gradient .price-currency {
    color: #2c3e50;
}

.formule-1-gradient .card-features ul li {
    color: #555;
}

.formule-1-gradient .card-features h4 {
    color: #2c3e50;
}

.formule-1-gradient .select-btn {
    background: #0071bb;
    color: white;
    border: 2px solid #0071bb;
}

.formule-1-gradient .select-btn:hover {
    background: #005a9c;
    color: white;
}

/* Formule 2 - Blue Gradient (from formule 3) */
.formule-2-gradient {
    background: linear-gradient(135deg, #8c85ff 0%, #3c5898 100%);
    color: white;
}

.formule-2-gradient .card-title,
.formule-2-gradient .card-subtitle,
.formule-2-gradient h4,
.formule-2-gradient .price-amount,
.formule-2-gradient .price-currency {
    color: white;
}

.formule-2-gradient .card-features ul li {
    color: rgba(255, 255, 255, 0.9);
}

.formule-2-gradient .card-features h4 {
    color: white;
}

.formule-2-gradient .select-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.formule-2-gradient .select-btn:hover {
    background: white;
    color: #8c85ff;
}

.formule-2-gradient .popular-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #8c85ff;
    border: 2px solid white;
}

.formule-2-gradient .popular-btn:hover {
    background: white;
    color: #8c85ff;
}

/* Formule 3 - White Background */
.formule-3-gradient {
    background: white;
    color: #2c3e50;
    border: 2px solid #e5e7eb;
}

.formule-3-gradient .card-title,
.formule-3-gradient .card-subtitle,
.formule-3-gradient h4,
.formule-3-gradient .price-amount,
.formule-3-gradient .price-currency {
    color: #2c3e50;
}

.formule-3-gradient .card-features ul li {
    color: #555;
}

.formule-3-gradient .card-features h4 {
    color: #2c3e50;
}

.formule-3-gradient .select-btn {
    background: #0071bb;
    color: white;
    border: 2px solid #0071bb;
}

.formule-3-gradient .select-btn:hover {
    background: #005a9c;
    color: white;
}

/* Override popular badge colors for gradient cards */
.formule-1-gradient .popular-badge,
.formule-3-gradient .popular-badge {
    background: #0071bb;
    color: white;
}

/* Special styling for formule 2 popular badge */
.formule-2-gradient .popular-badge {
    /* background: linear-gradient(135deg, #8A2BE2 0%, #9370DB 50%, #DDA0DD 100%); */
    background: #8c85ff;;
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

/* Mobile adjustments for gradient cards */
@media (max-width: 768px) {
    .formule-1-gradient .select-btn,
    .formule-2-gradient .select-btn,
    .formule-3-gradient .select-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
