/* =====================================================
   FLUXOI — GLOBAL CSS
   PART 1/10
===================================================== */

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "Poppins", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================
   GLOBAL VARIABLES
========================= */

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;

    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;

    --white: #ffffff;

    --border: #e2e8f0;
    --background: #f8fafc;

    --success: #16a34a;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --shadow-sm: 0 5px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 15px 40px rgba(15, 23, 42, 0.08);

    --transition: 0.3s ease;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   SECTION GLOBAL
========================= */

section {
    position: relative;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 16px;

    color: var(--dark);

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 800;
}

.section-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--muted);

    font-size: 16px;
}


/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 14px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.20);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);

    border: 1px solid var(--border);
}

.btn-secondary:hover {
    color: var(--primary);
    border-color: var(--primary);

    transform: translateY(-2px);
}


/* =========================
   MOBILE GLOBAL
========================= */

@media (max-width: 768px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading p {
        font-size: 15px;
    }

}
/* =====================================================
   HEADER & NAVIGATION
   PART 2/10
===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}

.header-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary);
    color: var(--white);

    font-size: 18px;

    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.20);
}

.logo-text {
    color: var(--dark);

    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}


/* =========================
   NAVIGATION
========================= */

.nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-left: auto;
}

.nav a {
    position: relative;

    color: var(--text);

    font-size: 14px;
    font-weight: 500;

    transition: color var(--transition);
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--primary);

    transition: width var(--transition);
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;

    background: transparent;
    border: none;

    color: var(--text);

    font-size: 24px;

    cursor: pointer;
}


/* =========================
   MOBILE HEADER
========================= */

@media (max-width: 900px) {

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        margin-left: 10px;
    }

    .nav {
        display: none;
    }

    .nav.mobile-active {
        display: flex;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;

        gap: 0;

        padding: 20px;

        background: var(--background);

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

        z-index: 999;
    }

    .nav.mobile-active a {
        width: 100%;

        padding: 14px 10px;

        text-align: center;
    }

}


}


/* =========================
   HEADER ACTIONS
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.header-actions .btn-primary,
.header-actions .btn-secondary {
    min-height: 44px;
    padding: 0 17px;

    font-size: 13px;
}
/* =========================
   HEADER WHATSAPP / TELEGRAM
========================= */

.header-actions .header-whatsapp,
.header-actions .header-telegram {
    min-height: 44px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    color: #ffffff;

    transition: all 0.2s ease;
}

.header-actions .header-whatsapp {
    background: #25d366;
    border: 1px solid #25d366;
}

.header-actions .header-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #ffffff;

    transform: translateY(-2px);
}

.header-actions .header-telegram {
    background: #229ed9;
    border: 1px solid #229ed9;
}

.header-actions .header-telegram:hover {
    background: #168ac2;
    border-color: #168ac2;
    color: #ffffff;

    transform: translateY(-2px);
}

.header-actions .header-whatsapp i,
.header-actions .header-telegram i {
    font-size: 15px;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 18px;

    transition:
        background var(--transition),
        color var(--transition);
}

.menu-toggle:hover {
    background: var(--primary);
    color: var(--white);
}


/* =========================
   HEADER RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .nav {
        gap: 18px;
    }

    .header-actions .btn-secondary {
        display: none;
    }
}

@media (max-width: 850px) {

    .header-container {
        min-height: 70px;
    }

    .nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {

    .logo-text {
        font-size: 21px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}
/* =====================================================
   HERO SECTION
   PART 3/10
===================================================== */

.hero {
    padding: 95px 0 105px;

    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 55%,
            #eff6ff 100%
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.07);

    filter: blur(10px);
}

.hero-container {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 22px;
    padding: 8px 14px;

    border: 1px solid #dbeafe;
    border-radius: 30px;

    background: #eff6ff;
    color: var(--primary);

    font-size: 13px;
    font-weight: 600;
}

.hero-badge i {
    font-size: 12px;
}

.hero h1 {
    margin-bottom: 22px;

    color: var(--dark);

    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-content > p {
    max-width: 610px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 32px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    min-height: 52px;
    padding: 0 24px;
}

.hero-trust {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--muted);

    font-size: 13px;
    font-weight: 500;
}

.trust-item i {
    color: var(--success);
    font-size: 13px;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;

    width: min(100%, 460px);

    padding: 28px;

    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.12);

    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: var(--primary);
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.hero-card-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 18px;
}

.hero-card-brand strong {
    display: block;

    color: var(--dark);

    font-size: 15px;
}

.hero-card-brand small {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 11px;
}

.online-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--success);

    font-size: 11px;
    font-weight: 600;
}

.online-status i {
    font-size: 7px;
}

.hero-card-main {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    padding: 25px 0;
}

.hero-stat {
    padding: 18px 10px;

    border-radius: 14px;

    background: var(--background);

    text-align: center;
}

.hero-stat strong {
    display: block;

    margin-bottom: 3px;

    color: var(--primary);

    font-size: 25px;
    font-weight: 800;
}

.hero-stat span {
    color: var(--muted);

    font-size: 11px;
}

.hero-card-features {
    display: grid;

    gap: 12px;

    padding: 5px 0 22px;
}

.hero-card-features div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 13px;
}

.hero-card-features i {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dcfce7;
    color: var(--success);

    font-size: 10px;
}

.hero-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 18px;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 11px;
}

.hero-card-bottom span:first-child {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.hero-card-bottom i {
    color: var(--primary);
}


/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 950px) {

    .hero {
        padding: 75px 0 85px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 55px;

        text-align: center;
    }

    .hero-content {
        max-width: 760px;

        margin: 0 auto;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 60px 0 70px;
    }

    .hero h1 {
        font-size: 40px;

        letter-spacing: -1.2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-card {
        padding: 22px;

        border-radius: 20px;
    }

    .hero-card-main {
        gap: 8px;
    }

    .hero-stat strong {
        font-size: 21px;
    }

    .hero-card-bottom {
        flex-direction: column;

        align-items: flex-start;
    }
}
/* =====================================================
   FEATURES + DEVICES
   PART 4/10
===================================================== */

/* =========================
   FEATURES
========================= */

.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.feature-card {
    padding: 30px 26px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;

    color: var(--dark);

    font-size: 18px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   DEVICES
========================= */

.devices {
    padding: 100px 0;

    background: var(--background);
}

.devices-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.device-card {
    padding: 30px 24px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.device-card:hover {
    transform: translateY(-5px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-md);
}

.device-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 16px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 23px;
}

.device-card h3 {
    margin-bottom: 7px;

    color: var(--dark);

    font-size: 17px;
}

.device-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================
   FEATURES + DEVICES
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .features,
    .devices {
        padding: 80px 0;
    }

    .features-grid,
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .features,
    .devices {
        padding: 70px 0;
    }

    .features-grid,
    .devices-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .device-card {
        padding: 25px 22px;
    }
}
/* =====================================================
   PRICING SECTION
   PART 5/10
===================================================== */

.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;

    align-items: stretch;
}

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 32px 24px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--primary);

    box-shadow:
        0 15px 40px rgba(37, 99, 235, 0.14);
}

.pricing-badge {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 13px;

    border-radius: 20px;

    background: var(--primary);
    color: var(--white);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.pricing-card h3 {
    margin-bottom: 18px;

    color: var(--dark);

    font-size: 20px;
    font-weight: 700;

    text-align: center;
}

.pricing-price {
    margin-bottom: 5px;

    text-align: center;
}

.pricing-price strong {
    color: var(--primary);

    font-size: 36px;
    line-height: 1;

    font-weight: 800;
}

.pricing-period {
    margin-bottom: 28px;

    color: var(--muted);

    font-size: 12px;

    text-align: center;
}

.pricing-features {
    display: flex;
    flex-direction: column;

    gap: 13px;

    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    color: var(--text);

    font-size: 12px;
    line-height: 1.5;
}

.pricing-features li i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--success);

    font-size: 11px;
}

.pricing-button {
    width: 100%;

    margin-top: auto;

    min-height: 46px;

    font-size: 13px;
}


/* =========================
   PRICING RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {

    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {

    .pricing {
        padding: 70px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-price strong {
        font-size: 34px;
    }
}
/* =====================================================
   HOW IT WORKS
   PART 6/10
===================================================== */

.how-it-works {
    padding: 100px 0;
    background: var(--background);
}

.steps-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.step-card {
    position: relative;

    padding: 32px 25px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #dbeafe;

    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.step-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 20px;
}

.step-card h3 {
    margin-bottom: 10px;

    color: var(--dark);

    font-size: 17px;
    line-height: 1.35;
}

.step-card p {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   HOW IT WORKS RESPONSIVE
========================= */

@media (max-width: 950px) {

    .how-it-works {
        padding: 80px 0;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .how-it-works {
        padding: 70px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 28px 23px;
    }
}
/* =====================================================
   FAQ SECTION
   PART 7/10
===================================================== */

/* =========================
   FAQ
========================= */

.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: var(--white);

    overflow: hidden;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.faq-item:hover {
    border-color: #bfdbfe;
}

.faq-question {
    width: 100%;

    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 22px;

    background: transparent;

    color: var(--dark);

    font-size: 15px;
    font-weight: 600;

    text-align: left;
}

.faq-question i {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 12px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 22px 22px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================
   FAQ ACTIVE STATE
========================= */

.faq-item.active {
    border-color: #bfdbfe;

    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);

    background: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* =========================
   FAQ RESPONSIVE
========================= */

@media (max-width: 600px) {

    .faq {
        padding: 70px 0;
    }

    .faq-question {
        min-height: 62px;

        padding: 16px 18px;

        font-size: 14px;
    }

    .faq-question i {
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        padding: 0 18px 18px;

        font-size: 13px;
    }
}
/* =====================================================
   TESTIMONIALS + CTA
   PART 8/10
===================================================== */

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    padding: 100px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.testimonial-card {
    padding: 30px 27px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;

    gap: 4px;

    margin-bottom: 18px;

    color: #f59e0b;

    font-size: 13px;
}

.testimonial-card > p {
    margin-bottom: 25px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-top: 18px;

    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;

    color: var(--dark);

    font-size: 13px;
}

.testimonial-author span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 100px 0;

    background: var(--dark);

    text-align: center;

    overflow: hidden;
}

.cta::before {
    content: "";

    position: absolute;

    top: -180px;
    left: 50%;

    width: 500px;
    height: 500px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.16);

    filter: blur(20px);
}

.cta .container {
    position: relative;

    z-index: 1;
}

.cta-content {
    max-width: 760px;

    margin: 0 auto;
}

.cta .section-label {
    color: #93c5fd;
}

.cta h2 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.2;

    font-weight: 800;
}

.cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #cbd5e1;

    font-size: 15px;

    line-height: 1.8;
}

.cta-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.cta .btn-secondary {
    background: transparent;

    border-color: #475569;

    color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);

    border-color: var(--white);

    color: var(--dark);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {

    .testimonials {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;

        max-width: 600px;

        margin: 0 auto;
    }

    .cta {
        padding: 80px 0;
    }
}

@media (max-width: 600px) {

    .testimonials {
        padding: 70px 0;
    }

    .testimonial-card {
        padding: 25px 22px;
    }

    .cta {
        padding: 70px 0;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;

        max-width: 320px;
    }
}
/* =====================================================
   FOOTER
   PART 9/10
===================================================== */

/* =========================
   FOOTER
========================= */

.footer {
    padding: 70px 0 25px;

    background: #020617;

    color: #cbd5e1;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom: 1px solid #1e293b;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    max-width: 330px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-bottom: 22px;

    color: #94a3b8;

    font-size: 13px;

    line-height: 1.8;
}

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 42px;

    padding: 0 16px;

    border-radius: 9px;

    background: #16a34a;

    color: var(--white);

    font-size: 12px;

    font-weight: 600;

    transition:
        background var(--transition),
        transform var(--transition);
}

.footer-whatsapp:hover {
    background: #15803d;

    transform: translateY(-2px);
}


/* =========================
   FOOTER COLUMNS
========================= */

.footer-column h3 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;
}

.footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column a {
    color: #94a3b8;

    font-size: 12px;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}


/* =========================
   FOOTER CONTACT
========================= */

.footer-contact li {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #94a3b8;

    font-size: 12px;
}

.footer-contact i {
    width: 18px;

    color: #60a5fa;

    text-align: center;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;
}

.footer-bottom p {
    color: #64748b;

    font-size: 11px;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;

    font-size: 11px;

    transition:
        color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}


/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 850px) {

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 550px) {

    .footer {
        padding: 55px 0 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;

        gap: 12px 18px;
    }
}
/* =====================================================
   FINAL POLISH
   PART 10/10
===================================================== */

/* =========================
   ACCESSIBILITY
========================= */

:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);

    outline-offset: 3px;
}

::selection {
    background: var(--primary);

    color: var(--white);
}


/* =========================
   SMOOTH CARD EFFECTS
========================= */

.feature-card,
.device-card,
.pricing-card,
.step-card,
.testimonial-card,
.faq-item {
    will-change: transform;
}


/* =========================
   SMALL SCREEN FIXES
========================= */

@media (max-width: 400px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-actions {
        flex-direction: column;

        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;

        gap: 10px;
    }

    .hero-card {
        padding: 18px;
    }

    .hero-card-main {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        padding: 14px;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }
}


/* =========================
   ANCHOR SCROLL FIX
========================= */

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 90px;
}
/* =====================================================
   MEILLEUR IPTV PAGE
   PARTIE 1 - PAGE HERO
===================================================== */

.meilleur-iptv-page .page-hero {
    padding: 90px 0 80px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 35%
        ),
        #ffffff;
}

.meilleur-iptv-page .page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 70px;
}

.meilleur-iptv-page .page-hero-content {
    max-width: 650px;
}

.meilleur-iptv-page .page-hero-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;

    font-size: 14px;
    font-weight: 800;

    color: #2563eb;

    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.meilleur-iptv-page .page-hero h1 {
    margin: 0 0 24px;

    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;

    font-weight: 800;

    color: #111827;
}

.meilleur-iptv-page .page-hero h1 span {
    color: #2563eb;
}

.meilleur-iptv-page .page-hero-description {
    max-width: 620px;

    margin-bottom: 30px;

    font-size: 18px;
    line-height: 1.75;

    color: #64748b;
}

.meilleur-iptv-page .page-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;
}

.meilleur-iptv-page .page-hero-actions a {
    text-decoration: none;
}

.meilleur-iptv-page .page-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meilleur-iptv-page .page-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 14px;
    font-weight: 500;

    color: #475569;
}

.meilleur-iptv-page .page-hero-trust i {
    color: #16a34a;
}


/* =========================
   HERO VISUAL
========================= */

.meilleur-iptv-page .page-hero-visual {
    display: flex;
    justify-content: flex-end;
}

.meilleur-iptv-page .iptv-info-card {
    width: 100%;
    max-width: 500px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-top: 4px solid #2563eb;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);
}

.meilleur-iptv-page .iptv-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid #e2e8f0;
}

.meilleur-iptv-page .iptv-info-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.meilleur-iptv-page .iptv-info-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 22px;
}

.meilleur-iptv-page .iptv-info-title h3 {
    margin: 0 0 4px;

    font-size: 18px;
    font-weight: 800;

    color: #111827;
}

.meilleur-iptv-page .iptv-info-title p {
    margin: 0;

    font-size: 13px;

    color: #64748b;
}

.meilleur-iptv-page .iptv-status {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 13px;
    font-weight: 700;

    color: #16a34a;
}

.meilleur-iptv-page .iptv-status::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #16a34a;
}


/* =========================
   HERO STATS
========================= */

.meilleur-iptv-page .iptv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin: 24px 0;
}

.meilleur-iptv-page .iptv-stat {
    padding: 22px 14px;

    text-align: center;

    border-radius: 16px;

    background: #f8fafc;
}

.meilleur-iptv-page .iptv-stat strong {
    display: block;

    margin-bottom: 7px;

    font-size: 28px;
    font-weight: 800;

    color: #2563eb;
}

.meilleur-iptv-page .iptv-stat span {
    font-size: 12px;

    color: #64748b;
}


/* =========================
   HERO FEATURES
========================= */

.meilleur-iptv-page .iptv-feature-list {
    display: grid;

    gap: 13px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.meilleur-iptv-page .iptv-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;

    color: #475569;
}

.meilleur-iptv-page .iptv-feature-list i {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dcfce7;

    color: #16a34a;

    font-size: 10px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .meilleur-iptv-page .page-hero {
        padding: 70px 0 60px;
    }

    .meilleur-iptv-page .page-hero-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .meilleur-iptv-page .page-hero-content {
        max-width: 100%;
    }

    .meilleur-iptv-page .page-hero-visual {
        justify-content: center;
    }

}


@media (max-width: 550px) {

    .meilleur-iptv-page .page-hero {
        padding: 55px 0 45px;
    }

    .meilleur-iptv-page .page-hero-container {
        padding: 0 18px;
    }

    .meilleur-iptv-page .page-hero h1 {
        font-size: 42px;
    }

    .meilleur-iptv-page .page-hero-description {
        font-size: 16px;
    }

    .meilleur-iptv-page .page-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .meilleur-iptv-page .page-hero-actions a {
        width: 100%;
        text-align: center;
    }

    .meilleur-iptv-page .page-hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .meilleur-iptv-page .iptv-info-card {
        padding: 20px;
    }

    .meilleur-iptv-page .iptv-stats {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   ABONNEMENT IPTV PAGE
   PARTIE 4 - SUBSCRIPTION DESIGN
===================================================== */

.abonnement-iptv-page {
    background: #f8fafc;
}


/* =====================================================
   SUBSCRIPTION HERO
===================================================== */

.subscription-hero {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(37, 99, 235, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fafc 55%,
            #eff6ff 100%
        );
}

.subscription-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;
    gap: 70px;
}

.subscription-hero-content {
    max-width: 680px;
}

.subscription-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;

    color: #2563eb;
}

.subscription-hero h1 {
    margin: 0 0 24px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;

    font-weight: 700;

    color: #0f172a;
}

.subscription-hero h1 strong {
    color: #2563eb;
}

.subscription-hero-text {
    max-width: 650px;

    margin-bottom: 30px;

    font-size: 17px;
    line-height: 1.8;

    color: #64748b;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.subscription-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 30px;
}

.subscription-btn-primary,
.subscription-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 22px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.subscription-btn-primary {
    background: #2563eb;
    color: #ffffff;

    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.20);
}

.subscription-btn-outline {
    background: #ffffff;

    border: 1px solid #dbeafe;

    color: #2563eb;
}

.subscription-btn-primary:hover,
.subscription-btn-outline:hover {
    transform: translateY(-2px);
}


/* =====================================================
   HERO BENEFITS
===================================================== */

.subscription-benefits {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;
}

.subscription-benefit {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 13px;
    font-weight: 600;

    color: #475569;
}

.subscription-benefit i {
    color: #16a34a;
}


/* =====================================================
   HERO CARD
===================================================== */

.subscription-hero-card {
    position: relative;

    max-width: 430px;

    margin-left: auto;

    padding: 30px;

    background: #0f172a;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.18);
}

.subscription-hero-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -100px;
    right: -70px;

    border-radius: 50%;

    background: rgba(37, 99, 235, 0.25);
}

.subscription-card-top {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #93c5fd;
}

.subscription-card-top i {
    font-size: 22px;
}

.subscription-card-main {
    position: relative;
}

.subscription-card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 16px;

    background: rgba(59, 130, 246, 0.16);

    color: #60a5fa;

    font-size: 22px;
}

.subscription-card-main h2 {
    margin: 0 0 10px;

    font-size: 28px;
    font-weight: 800;

    color: #ffffff;
}

.subscription-card-main p {
    margin: 0 0 26px;

    font-size: 14px;
    line-height: 1.7;

    color: #94a3b8;
}

.subscription-card-list {
    position: relative;

    display: grid;

    gap: 13px;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.subscription-card-list div {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 13px;

    color: #cbd5e1;
}

.subscription-card-list i {
    color: #4ade80;
}

.subscription-card-footer {
    position: relative;

    display: flex;
    align-items: baseline;

    gap: 5px;

    padding-top: 22px;
}

.subscription-card-footer span {
    font-size: 12px;

    color: #94a3b8;
}

.subscription-card-footer strong {
    font-size: 30px;
    font-weight: 800;

    color: #ffffff;
}

.subscription-card-footer small {
    font-size: 12px;

    color: #94a3b8;
}


/* =====================================================
   SUBSCRIPTION PLANS
===================================================== */

.subscription-plans {
    padding: 90px 0;
    background: #ffffff;
}

.subscription-section-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}

.subscription-section-heading h2 {
    margin: 0 0 16px;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;

    color: #0f172a;
}

.subscription-section-heading p {
    margin: 0;

    font-size: 16px;
    line-height: 1.8;

    color: #64748b;
}


/* =====================================================
   PLANS GRID
===================================================== */

.subscription-plans-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    max-width: 1150px;

    margin: 0 auto;
}

.subscription-plan {
    position: relative;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.subscription-plan:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.09);
}

.plan-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 18px;
}

.subscription-plan h3 {
    margin: 0 0 12px;

    font-size: 22px;

    color: #0f172a;
}

.plan-price {
    margin-bottom: 4px;
}

.plan-price strong {
    font-size: 32px;
    font-weight: 800;

    color: #2563eb;
}

.plan-period {
    display: block;

    margin-bottom: 24px;

    font-size: 12px;

    color: #94a3b8;
}

.subscription-plan ul {
    display: grid;

    gap: 12px;

    margin: 0 0 25px;
    padding: 0;

    list-style: none;
}

.subscription-plan li {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 13px;

    color: #475569;
}

.subscription-plan li i {
    color: #16a34a;
}


/* =====================================================
   PLAN BUTTON
===================================================== */

.subscription-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 13px 18px;

    border-radius: 11px;

    background: #f1f5f9;

    color: #0f172a;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.subscription-plan-btn:hover {
    background: #2563eb;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =====================================================
   POPULAR PLAN
===================================================== */

.subscription-plan-popular {
    border: 2px solid #2563eb;

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(37, 99, 235, 0.12);
}

.subscription-plan-popular:hover {
    transform: translateY(-13px);
}

.popular-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 6px 10px;

    border-radius: 999px;

    background: #2563eb;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.6px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .subscription-hero-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .subscription-hero-content {
        max-width: 100%;
    }

    .subscription-hero-card {
        margin: 0 auto;
    }

    .subscription-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .subscription-plan-popular {
        transform: none;
    }

    .subscription-plan-popular:hover {
        transform: translateY(-5px);
    }

}


@media (max-width: 650px) {

    .subscription-hero {
        padding: 60px 0;
    }

    .subscription-hero-container {
        padding: 0 18px;
    }

    .subscription-hero h1 {
        font-size: 42px;
    }

    .subscription-hero-text {
        font-size: 15px;
    }

    .subscription-hero-actions {
        flex-direction: column;
    }

    .subscription-btn-primary,
    .subscription-btn-outline {
        width: 100%;
    }

    .subscription-benefits {
        flex-direction: column;
        gap: 10px;
    }

    .subscription-hero-card {
        padding: 24px;
        border-radius: 22px;
    }

    .subscription-plans {
        padding: 65px 0;
    }

    .subscription-plans-grid {
        grid-template-columns: 1fr;
    }

    .subscription-plan {
        padding: 25px;
    }

}
/* =====================================================
   ABONNEMENT IPTV - HEADER LOGO FIX
   ONLY FOR THIS PAGE
===================================================== */

.abonnement-iptv-page .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.abonnement-iptv-page .logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.20);
}

.abonnement-iptv-page .logo-text {
    color: var(--dark);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
/* =========================================================
   CHAINES IPTV PAGE
   Fluxoi - Page-specific styles
   ========================================================= */


/* ---------------------------------------------------------
   PAGE BASE
--------------------------------------------------------- */

.chaines-iptv-page {
    background: #f7f9fc;
    color: #111827;
}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.chaines-iptv-page .channels-main-hero {
    position: relative;
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.18), transparent 35%),
        linear-gradient(135deg, #071426 0%, #0d1f38 55%, #102b4d 100%);
    overflow: hidden;
}


.chaines-iptv-page .channels-main-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -140px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
}


.chaines-iptv-page .channels-main-hero-content {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}


.chaines-iptv-page .hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    color: #93c5fd;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.chaines-iptv-page .channels-main-hero h1 {
    margin: 0 auto 22px;
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
}


.chaines-iptv-page .channels-main-hero p {
    max-width: 720px;
    margin: 0 auto 32px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}


.chaines-iptv-page .channels-main-hero .hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* ---------------------------------------------------------
   HIGHLIGHTS
--------------------------------------------------------- */

.chaines-iptv-page .channel-highlights {
    position: relative;
    margin-top: -35px;
    padding-bottom: 70px;
    z-index: 5;
}


.chaines-iptv-page .channel-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.chaines-iptv-page .channel-highlight {
    padding: 26px 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}


.chaines-iptv-page .channel-highlight strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 18px;
}


.chaines-iptv-page .channel-highlight span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   SECTION HEADINGS
--------------------------------------------------------- */

.chaines-iptv-page .section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


.chaines-iptv-page .section-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.chaines-iptv-page .section-heading h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}


.chaines-iptv-page .section-heading p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   COUNTRIES
--------------------------------------------------------- */

.chaines-iptv-page .channel-countries {
    padding: 90px 0;
    background: #ffffff;
}


.chaines-iptv-page .country-featured-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}


.chaines-iptv-page .country-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 125px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    color: #111827;
    text-decoration: none;
    transition: 0.25s ease;
}


.chaines-iptv-page .country-featured:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
}


.chaines-iptv-page .country-flag {
    font-size: 32px;
}


.chaines-iptv-page .countries-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}


.chaines-iptv-page .countries-list span {
    padding: 9px 14px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}


/* ---------------------------------------------------------
   CHANNEL TYPES
--------------------------------------------------------- */

.chaines-iptv-page .channel-types {
    padding: 90px 0;
    background: #f7f9fc;
}


.chaines-iptv-page .channel-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.chaines-iptv-page .channel-type {
    padding: 30px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    transition: 0.25s ease;
}


.chaines-iptv-page .channel-type:hover {
    transform: translateY(-5px);
    border-color: #bfdbfe;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}


.chaines-iptv-page .channel-type > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 22px;
}


.chaines-iptv-page .channel-type h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 20px;
}


.chaines-iptv-page .channel-type p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
}


/* ---------------------------------------------------------
   FRANCE CHANNELS
--------------------------------------------------------- */

.chaines-iptv-page .france-channels {
    padding: 100px 0;
    background: #ffffff;
}


.chaines-iptv-page .france-channels-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}


.chaines-iptv-page .france-channels-text .section-label {
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.chaines-iptv-page .france-channels-text h2 {
    margin: 14px 0 20px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}


.chaines-iptv-page .france-channels-text p {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.8;
}


.chaines-iptv-page .france-channels-text .btn-primary {
    display: inline-flex;
    margin-top: 12px;
}


.chaines-iptv-page .france-channel-box {
    padding: 32px;
    border-radius: 22px;
    background: linear-gradient(145deg, #0b1c33, #12345b);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}


.chaines-iptv-page .channel-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 22px;
}


.chaines-iptv-page .channel-box-header i {
    color: #60a5fa;
}


.chaines-iptv-page .channel-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.chaines-iptv-page .channel-tags span {
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #e2e8f0;
    font-size: 13px;
}


/* ---------------------------------------------------------
   INTERNATIONAL
--------------------------------------------------------- */

.chaines-iptv-page .international-channels {
    padding: 90px 0;
    background: #f7f9fc;
}


.chaines-iptv-page .international-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


.chaines-iptv-page .international-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}


.chaines-iptv-page .country-code {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 42px;
    border-radius: 9px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
}


.chaines-iptv-page .international-card strong {
    color: #111827;
    font-size: 16px;
}


.chaines-iptv-page .international-card small {
    color: #64748b;
    font-size: 12px;
}


/* ---------------------------------------------------------
   DEVICES
--------------------------------------------------------- */

.chaines-iptv-page .iptv-devices {
    padding: 90px 0;
    background: #ffffff;
}


.chaines-iptv-page .devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.chaines-iptv-page .device-card {
    padding: 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    text-align: center;
    transition: 0.25s ease;
}


.chaines-iptv-page .device-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}


.chaines-iptv-page .device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 25px;
}


.chaines-iptv-page .device-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 19px;
}


.chaines-iptv-page .device-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
}


/* ---------------------------------------------------------
   EXPERIENCE
--------------------------------------------------------- */

.chaines-iptv-page .iptv-experience {
    padding: 100px 0;
    background: #f7f9fc;
}


.chaines-iptv-page .experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}


.chaines-iptv-page .experience-content .section-label {
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.chaines-iptv-page .experience-content h2 {
    margin: 14px 0 20px;
    color: #111827;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}


.chaines-iptv-page .experience-content > p {
    color: #64748b;
    line-height: 1.8;
}


.chaines-iptv-page .experience-list {
    display: grid;
    gap: 13px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}


.chaines-iptv-page .experience-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
}


.chaines-iptv-page .experience-list i {
    color: #2563eb;
}


.chaines-iptv-page .experience-panel {
    padding: 50px 35px;
    border-radius: 24px;
    background: linear-gradient(145deg, #08172a, #12365e);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
}


.chaines-iptv-page .experience-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    color: #60a5fa;
    font-size: 30px;
}


.chaines-iptv-page .experience-panel strong {
    display: block;
    margin-bottom: 8px;
    font-size: 26px;
}


.chaines-iptv-page .experience-panel > span {
    display: block;
    color: #cbd5e1;
}


.chaines-iptv-page .experience-panel-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 25px;
}


.chaines-iptv-page .experience-panel-tags span {
    padding: 8px 12px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.09);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.chaines-iptv-page .channels-cta {
    padding: 90px 0;
    background: #ffffff;
}


.chaines-iptv-page .channels-cta-content {
    padding: 65px 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0b1d35, #123b69);
    text-align: center;
}


.chaines-iptv-page .channels-cta .section-label {
    color: #93c5fd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.chaines-iptv-page .channels-cta h2 {
    margin: 15px auto;
    max-width: 700px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 44px);
}


.chaines-iptv-page .channels-cta p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: #cbd5e1;
    line-height: 1.8;
}


.chaines-iptv-page .cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */

.chaines-iptv-page .channels-faq {
    padding: 90px 0 110px;
    background: #f7f9fc;
}


.chaines-iptv-page .faq-list {
    max-width: 850px;
    margin: 0 auto;
}


.chaines-iptv-page .faq-item {
    margin-bottom: 12px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}


.chaines-iptv-page .faq-item summary {
    position: relative;
    padding: 21px 24px;
    cursor: pointer;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}


.chaines-iptv-page .faq-item summary::-webkit-details-marker {
    display: none;
}


.chaines-iptv-page .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    color: #2563eb;
    font-size: 22px;
    font-weight: 400;
}


.chaines-iptv-page .faq-item[open] summary::after {
    content: "−";
}


.chaines-iptv-page .faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: #64748b;
    line-height: 1.8;
    font-size: 14px;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 1000px) {

    .chaines-iptv-page .channel-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chaines-iptv-page .country-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chaines-iptv-page .channel-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chaines-iptv-page .international-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chaines-iptv-page .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chaines-iptv-page .france-channels-content,
    .chaines-iptv-page .experience-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .chaines-iptv-page .channels-main-hero {
        padding: 75px 0 70px;
    }

    .chaines-iptv-page .channels-main-hero h1 {
        font-size: 36px;
    }

    .chaines-iptv-page .channels-main-hero p {
        font-size: 16px;
    }

    .chaines-iptv-page .channel-highlight-grid,
    .chaines-iptv-page .country-featured-grid,
    .chaines-iptv-page .channel-type-grid,
    .chaines-iptv-page .international-grid,
    .chaines-iptv-page .devices-grid {
        grid-template-columns: 1fr;
    }

    .chaines-iptv-page .channel-highlights {
        margin-top: 0;
        padding-top: 25px;
    }

    .chaines-iptv-page .section-heading {
        margin-bottom: 30px;
    }

    .chaines-iptv-page .france-channels,
    .chaines-iptv-page .international-channels,
    .chaines-iptv-page .iptv-devices,
    .chaines-iptv-page .iptv-experience,
    .chaines-iptv-page .channels-cta,
    .chaines-iptv-page .channels-faq {
        padding: 65px 0;
    }

}
/* =========================================================
   CHAINES IPTV - HEADER ACTIONS
========================================================= */

.chaines-iptv-page .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.chaines-iptv-page .header-whatsapp,
.chaines-iptv-page .header-telegram {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.chaines-iptv-page .header-whatsapp {
    color: #111827;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.chaines-iptv-page .header-whatsapp:hover {
    color: #16a34a;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.chaines-iptv-page .header-telegram {
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #dbeafe;
}

.chaines-iptv-page .header-telegram:hover {
    background: #dbeafe;
    border-color: #bfdbfe;
}

.chaines-iptv-page .header-whatsapp i,
.chaines-iptv-page .header-telegram i {
    font-size: 16px;
}


/* Mobile */

@media (max-width: 900px) {

    .chaines-iptv-page .header-actions {
        gap: 6px;
        margin-left: 10px;
    }

    .chaines-iptv-page .header-whatsapp,
    .chaines-iptv-page .header-telegram {
        padding: 8px 10px;
        font-size: 13px;
    }

}

@media (max-width: 700px) {

    .chaines-iptv-page .header-actions {
        display: none;
    }

}
/* =========================================================
   ABONNEMENT IPTV - HEADER BUTTONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-whatsapp,
.header-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
}

.header-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
}

.header-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff;
}

.header-telegram {
    background: #229ED9;
    color: #ffffff;
    border: 1px solid #229ED9;
}

.header-telegram:hover {
    background: #168ac0;
    color: #ffffff;
}

.header-whatsapp i,
.header-telegram i {
    font-size: 16px;
}


/* Mobile */

@media (max-width: 900px) {

    .header-actions {
        gap: 6px;
    }

    .header-whatsapp,
    .header-telegram {
        padding: 8px 10px;
        font-size: 13px;
    }

}

@media (max-width: 700px) {

    .header-actions {
        display: none;
    }

}
/* =========================================================
   TARIFS PAGE - PARTIE 1
   Hero + Pricing Cards
   ========================================================= */

.tarifs-page .pricing-hero {
    padding: 100px 0 90px;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.18), transparent 35%),
        linear-gradient(135deg, #071426 0%, #0d2442 55%, #12365d 100%);
    text-align: center;
}

.tarifs-page .pricing-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.tarifs-page .pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50px;
    background: rgba(255,255,255,.06);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.tarifs-page .pricing-hero h1 {
    margin: 0 auto 22px;
    color: #fff;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
}

.tarifs-page .pricing-hero h1 strong {
    color: #60a5fa;
}

.tarifs-page .pricing-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}

.tarifs-page .pricing-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tarifs-page .pricing-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #e2e8f0;
    font-size: 13px;
}

.tarifs-page .pricing-hero-badges i {
    color: #60a5fa;
}


/* =========================================================
   PRICING PLANS
   ========================================================= */

.tarifs-page .pricing-plans {
    padding: 100px 0;
    background: #f7f9fc;
}

.tarifs-page .pricing-section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.tarifs-page .pricing-section-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.tarifs-page .pricing-section-heading h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.tarifs-page .pricing-section-heading p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

.tarifs-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    align-items: stretch;
}

.tarifs-page .pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 23px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.tarifs-page .pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(15,23,42,.12);
}

.tarifs-page .pricing-card-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.tarifs-page .pricing-duration {
    color: #111827;
    font-size: 22px;
    font-weight: 800;
}

.tarifs-page .pricing-type {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.tarifs-page .pricing-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3px;
    color: #111827;
}

.tarifs-page .pricing-price .currency {
    margin-top: 8px;
    margin-right: 4px;
    color: #2563eb;
    font-size: 22px;
    font-weight: 700;
}

.tarifs-page .pricing-price strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 850;
}

.tarifs-page .pricing-period {
    margin: 0 0 24px;
    color: #94a3b8;
    font-size: 13px;
}

.tarifs-page .pricing-features {
    display: grid;
    gap: 13px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.tarifs-page .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.tarifs-page .pricing-features li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2563eb;
}

.tarifs-page .pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 12px 14px;
    border-radius: 9px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: #2563eb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.tarifs-page .pricing-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}


/* =========================================================
   POPULAR PLAN
   ========================================================= */

.tarifs-page .pricing-card-featured {
    border: 2px solid #2563eb;
    box-shadow: 0 18px 45px rgba(37,99,235,.15);
}

.tarifs-page .pricing-card-featured:hover {
    box-shadow: 0 25px 55px rgba(37,99,235,.22);
}

.tarifs-page .pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 6px 13px;
    border-radius: 50px;
    background: #2563eb;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
}

.tarifs-page .pricing-btn-featured {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.tarifs-page .pricing-btn-featured:hover {
    background: #1d4ed8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1150px) {

    .tarifs-page .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 750px) {

    .tarifs-page .pricing-hero {
        padding: 75px 0 65px;
    }

    .tarifs-page .pricing-hero h1 {
        font-size: 38px;
    }

    .tarifs-page .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 520px) {

    .tarifs-page .pricing-grid {
        grid-template-columns: 1fr;
    }

    .tarifs-page .pricing-plans {
        padding: 70px 0;
    }

}
/* =========================================================
   TARIFS PAGE - PARTIE 2
   Benefits + Guide
   ========================================================= */

.tarifs-page .pricing-benefits {
    padding: 100px 0;
    background: #ffffff;
}

.tarifs-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tarifs-page .benefit-card {
    padding: 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tarifs-page .benefit-card:hover {
    transform: translateY(-5px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 35px rgba(15,23,42,.08);
}

.tarifs-page .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 21px;
}

.tarifs-page .benefit-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 19px;
}

.tarifs-page .benefit-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   GUIDE SECTION
   ========================================================= */

.tarifs-page .pricing-guide {
    padding: 100px 0;
    background: #f7f9fc;
}

.tarifs-page .pricing-guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
    gap: 60px;
    align-items: center;
}

.tarifs-page .pricing-guide-content .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.tarifs-page .pricing-guide-content h2 {
    max-width: 700px;
    margin: 0 0 20px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.tarifs-page .pricing-guide-content > p {
    max-width: 720px;
    margin: 0 0 15px;
    color: #64748b;
    line-height: 1.8;
}

.tarifs-page .guide-points {
    display: grid;
    gap: 22px;
    margin-top: 35px;
}

.tarifs-page .guide-point {
    display: flex;
    gap: 17px;
    align-items: flex-start;
}

.tarifs-page .guide-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.tarifs-page .guide-point h3 {
    margin: 0 0 5px;
    color: #111827;
    font-size: 17px;
}

.tarifs-page .guide-point p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.tarifs-page .pricing-guide-card {
    padding: 38px 30px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(96,165,250,.25), transparent 35%),
        linear-gradient(145deg, #0b1d35, #123b68);
    color: #fff;
    box-shadow: 0 25px 55px rgba(15,23,42,.18);
}

.tarifs-page .guide-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    border-radius: 15px;
    background: rgba(255,255,255,.1);
    color: #93c5fd;
    font-size: 24px;
}

.tarifs-page .pricing-guide-card > span {
    display: block;
    margin-bottom: 12px;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.tarifs-page .pricing-guide-card > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.25;
}

.tarifs-page .pricing-guide-card > p {
    margin: 0 0 25px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.75;
}

.tarifs-page .guide-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 9px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.tarifs-page .guide-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .tarifs-page .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarifs-page .pricing-guide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

@media (max-width: 560px) {

    .tarifs-page .pricing-benefits,
    .tarifs-page .pricing-guide {
        padding: 70px 0;
    }

    .tarifs-page .benefits-grid {
        grid-template-columns: 1fr;
    }

    .tarifs-page .benefit-card {
        padding: 25px;
    }

}
/* =========================================================
   TARIFS PAGE - PARTIE 3
   Final CTA + FAQ
   ========================================================= */

.tarifs-page .pricing-final-cta {
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(96,165,250,.20), transparent 35%),
        linear-gradient(135deg, #071426, #12365d);
}

.tarifs-page .pricing-final-cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.tarifs-page .pricing-final-cta .section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.tarifs-page .pricing-final-cta h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.tarifs-page .pricing-final-cta p {
    max-width: 680px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}

.tarifs-page .pricing-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tarifs-page .pricing-whatsapp-btn,
.tarifs-page .pricing-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 210px;
    padding: 13px 20px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
}

.tarifs-page .pricing-whatsapp-btn {
    background: #25d366;
    color: #fff;
    border: 1px solid #25d366;
}

.tarifs-page .pricing-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.tarifs-page .pricing-home-btn {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}

.tarifs-page .pricing-home-btn:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-2px);
}


/* =========================================================
   FAQ
   ========================================================= */

.tarifs-page .pricing-faq {
    padding: 100px 0;
    background: #fff;
}

.tarifs-page .pricing-faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.tarifs-page .pricing-faq-item {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.tarifs-page .pricing-faq-item summary {
    position: relative;
    padding: 20px 52px 20px 22px;
    cursor: pointer;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.tarifs-page .pricing-faq-item summary::-webkit-details-marker {
    display: none;
}

.tarifs-page .pricing-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 22px;
    font-weight: 400;
}

.tarifs-page .pricing-faq-item[open] summary {
    color: #2563eb;
}

.tarifs-page .pricing-faq-item[open] summary::after {
    content: "−";
}

.tarifs-page .pricing-faq-item p {
    margin: 0;
    padding: 0 22px 21px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .tarifs-page .pricing-final-cta {
        padding: 70px 0;
    }

    .tarifs-page .pricing-cta-actions {
        flex-direction: column;
    }

    .tarifs-page .pricing-whatsapp-btn,
    .tarifs-page .pricing-home-btn {
        width: 100%;
        min-width: 0;
    }

    .tarifs-page .pricing-faq {
        padding: 70px 0;
    }

    .tarifs-page .pricing-faq-item summary {
        padding: 18px 48px 18px 18px;
        font-size: 14px;
    }

    .tarifs-page .pricing-faq-item p {
        padding: 0 18px 18px;
    }

}
/* =========================================================
   TARIFS PAGE - PARTIE 4
   Final Responsive Polish
   ========================================================= */

@media (max-width: 900px) {

    .tarifs-page .pricing-hero {
        padding: 85px 20px 75px;
    }

    .tarifs-page .pricing-hero-content {
        max-width: 700px;
    }

    .tarifs-page .pricing-plans,
    .tarifs-page .pricing-benefits,
    .tarifs-page .pricing-guide,
    .tarifs-page .pricing-faq {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tarifs-page .pricing-grid {
        gap: 16px;
    }

    .tarifs-page .pricing-card {
        padding: 27px 20px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 700px) {

    .tarifs-page .pricing-hero {
        padding: 70px 18px 65px;
    }

    .tarifs-page .pricing-hero h1 {
        font-size: 36px;
    }

    .tarifs-page .pricing-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .tarifs-page .pricing-hero-badges {
        gap: 7px;
    }

    .tarifs-page .pricing-hero-badges span {
        font-size: 12px;
        padding: 8px 11px;
    }

    .tarifs-page .pricing-plans {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .tarifs-page .pricing-section-heading {
        margin-bottom: 35px;
    }

    .tarifs-page .pricing-section-heading h2 {
        font-size: 30px;
    }

    .tarifs-page .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarifs-page .pricing-price strong {
        font-size: 38px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .tarifs-page .pricing-hero {
        padding: 60px 16px 55px;
    }

    .tarifs-page .pricing-hero h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .tarifs-page .pricing-hero p {
        font-size: 14px;
    }

    .tarifs-page .pricing-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .tarifs-page .pricing-hero-badges span {
        width: fit-content;
    }


    /* PRICING */

    .tarifs-page .pricing-plans {
        padding: 65px 16px;
    }

    .tarifs-page .pricing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tarifs-page .pricing-card {
        padding: 28px 23px;
    }

    .tarifs-page .pricing-duration {
        font-size: 21px;
    }

    .tarifs-page .pricing-price strong {
        font-size: 43px;
    }


    /* BENEFITS */

    .tarifs-page .pricing-benefits {
        padding: 65px 16px;
    }

    .tarifs-page .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tarifs-page .benefit-card {
        padding: 24px;
    }


    /* GUIDE */

    .tarifs-page .pricing-guide {
        padding: 65px 16px;
    }

    .tarifs-page .pricing-guide-grid {
        gap: 30px;
    }

    .tarifs-page .pricing-guide-content h2 {
        font-size: 30px;
    }

    .tarifs-page .pricing-guide-card {
        padding: 30px 24px;
    }


    /* FINAL CTA */

    .tarifs-page .pricing-final-cta {
        padding: 65px 16px;
    }

    .tarifs-page .pricing-final-cta h2 {
        font-size: 30px;
    }


    /* FAQ */

    .tarifs-page .pricing-faq {
        padding: 65px 16px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .tarifs-page .pricing-hero h1 {
        font-size: 29px;
    }

    .tarifs-page .pricing-section-heading h2 {
        font-size: 27px;
    }

    .tarifs-page .pricing-price strong {
        font-size: 39px;
    }

    .tarifs-page .pricing-card {
        padding: 25px 19px;
    }

}
/* =========================================================
   HEADER CONTACT BUTTONS
   ========================================================= */

.header-whatsapp,
.header-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s ease;
}

.header-whatsapp {
    background: #25d366;
    border: 1px solid #25d366;
    color: #fff;
}

.header-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}

.header-telegram {
    background: #229ed9;
    border: 1px solid #229ed9;
    color: #fff;
}

.header-telegram:hover {
    background: #168ac2;
    border-color: #168ac2;
    color: #fff;
    transform: translateY(-2px);
}

.header-whatsapp i,
.header-telegram i {
    font-size: 15px;
}
.header-actions a.header-whatsapp {
    background: #25d366 !important;
    border: 1px solid #25d366 !important;
    color: #ffffff !important;
}

.header-actions a.header-telegram {
    background: #229ed9 !important;
    border: 1px solid #229ed9 !important;
    color: #ffffff !important;
}
/* =========================================================
   FAQ PAGE
   HERO
========================================================= */

.faq-hero {
    padding: 105px 0 95px;
    background:
        radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.12), transparent 35%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.faq-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 13px;
    border-radius: 30px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.faq-hero h1 {
    margin: 0 auto 22px;
    color: #111827;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.faq-hero h1 strong {
    color: #2563eb;
}

.faq-hero-content > p {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.faq-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.faq-primary-btn,
.faq-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 205px;
    padding: 13px 20px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all .2s ease;
}

.faq-primary-btn {
    background: #2563eb;
    border: 1px solid #2563eb;
    color: #fff;
}

.faq-primary-btn:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
}

.faq-secondary-btn {
    background: #25d366;
    border: 1px solid #25d366;
    color: #fff;
}

.faq-secondary-btn:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   FAQ CATEGORIES
========================================================= */

.faq-categories {
    padding: 95px 0;
    background: #fff;
}

.faq-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.faq-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.faq-section-heading h2 {
    margin: 0 0 15px;
    color: #111827;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.faq-section-heading p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-category {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 27px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    transition: all .25s ease;
}

.faq-category:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    background: #fff;
    box-shadow: 0 18px 35px rgba(15, 23, 42, .07);
}

.faq-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 20px;
}

.faq-category h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
}

.faq-category p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FAQ QUESTIONS
========================================================= */

.faq-questions {
    padding: 95px 0;
    background: #f7f9fc;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item:hover {
    border-color: #bfdbfe;
}

.faq-item[open] {
    border-color: #93c5fd;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.faq-item summary {
    position: relative;
    padding: 21px 60px 21px 24px;
    cursor: pointer;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 23px;
    font-weight: 400;
}

.faq-item[open] summary {
    color: #2563eb;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FAQ RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .faq-hero {
        padding: 80px 20px 75px;
    }

    .faq-categories,
    .faq-questions {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .faq-hero {
        padding: 65px 16px;
    }

    .faq-hero h1 {
        font-size: 34px;
    }

    .faq-hero-content > p {
        font-size: 14px;
    }

    .faq-hero-actions {
        flex-direction: column;
    }

    .faq-primary-btn,
    .faq-secondary-btn {
        width: 100%;
    }

    .faq-categories,
    .faq-questions {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .faq-category {
        padding: 23px;
    }

    .faq-item summary {
        padding: 18px 52px 18px 18px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 18px 19px;
    }

}
/* =========================================================
   FAQ PAGE — CTA
========================================================= */

.faq-final-cta {
    padding: 90px 20px;
    background: #f5f8ff;
    text-align: center;
}

.faq-final-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.faq-final-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.faq-final-cta h2 {
    margin: 0 auto 18px;

    color: #0f172a;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.faq-final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;

    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.faq-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.faq-whatsapp-btn,
.faq-tarifs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.faq-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
}

.faq-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
}

.faq-tarifs-btn {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
}

.faq-tarifs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}


/* =========================================================
   FAQ PAGE — FOOTER
========================================================= */

.faq-final-cta + .footer {
    background: #020617;
    color: #ffffff;
}

.faq-final-cta + .footer .footer-container {
    max-width: 1180px;
    margin: 0 auto;

    padding: 70px 20px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.faq-final-cta + .footer .footer-brand {
    max-width: 340px;
}

.faq-final-cta + .footer .footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}

.faq-final-cta + .footer .footer-brand .logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #2563eb;
    color: #ffffff;

    font-size: 18px;
}

.faq-final-cta + .footer .footer-brand .logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.faq-final-cta + .footer .footer-brand p {
    margin: 20px 0 0;

    color: #94a3b8;

    font-size: 14px;
    line-height: 1.8;
}

.faq-final-cta + .footer .footer-links,
.faq-final-cta + .footer .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-final-cta + .footer h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.faq-final-cta + .footer .footer-links a,
.faq-final-cta + .footer .footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 11px;

    color: #94a3b8;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.25s ease;
}

.faq-final-cta + .footer .footer-links a:hover,
.faq-final-cta + .footer .footer-contact a:hover {
    color: #ffffff;
}

.faq-final-cta + .footer .footer-contact a:first-of-type i {
    color: #25d366;
}

.faq-final-cta + .footer .footer-contact a:last-of-type i {
    color: #229ed9;
}

.faq-final-cta + .footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-final-cta + .footer .footer-bottom .container {
    max-width: 1180px;
    margin: 0 auto;

    padding: 20px;

    text-align: center;
}

.faq-final-cta + .footer .footer-bottom p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
}


/* =========================================================
   FAQ PAGE — MOBILE
========================================================= */

@media (max-width: 900px) {

    .faq-final-cta + .footer .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}


@media (max-width: 600px) {

    .faq-final-cta {
        padding: 65px 18px;
    }

    .faq-final-cta h2 {
        font-size: 29px;
    }

    .faq-final-cta p {
        font-size: 14px;
    }

    .faq-final-actions {
        flex-direction: column;
        width: 100%;
    }

    .faq-whatsapp-btn,
    .faq-tarifs-btn {
        width: 100%;
    }

    .faq-final-cta + .footer .footer-container {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 35px;
    }

}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-hero h1 {
    margin: 0 auto 20px;

    color: #0f172a;

    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.contact-hero h1 strong {
    color: #2563eb;
}

.contact-hero-text,
.contact-hero p {
    max-width: 720px;
    margin: 0 auto 32px;

    color: #64748b;

    font-size: 16px;
    line-height: 1.8;
}

.contact-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-primary-btn,
.contact-secondary-btn,
.contact-tarifs-btn,
.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 23px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.contact-primary-btn {
    background: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
}

.contact-secondary-btn {
    background: #229ed9;
    color: #ffffff;
    border: 1px solid #229ed9;
}

.contact-primary-btn:hover,
.contact-secondary-btn:hover,
.contact-tarifs-btn:hover,
.contact-whatsapp-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
    padding: 90px 20px;
    background: #ffffff;
}

.contact-section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-section-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-section-heading h2 {
    margin: 0 0 16px;

    color: #0f172a;

    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
}

.contact-section-heading p {
    margin: 0;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}

.contact-cards {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    padding: 32px 26px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    text-align: center;

    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);

    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.contact-card-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    font-size: 25px;
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.telegram-icon {
    background: rgba(34, 158, 217, 0.12);
    color: #229ed9;
}

.location-icon {
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
}

.contact-card h3 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 20px;
    font-weight: 700;
}

.contact-card p {
    margin: 0 0 22px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.75;
}

.contact-card > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #2563eb;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
}

.contact-card-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #64748b;

    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   CONTACT FINAL CTA
========================================================= */

.contact-final-cta {
    padding: 90px 20px;

    background: #f5f8ff;

    text-align: center;
}

.contact-final-content {
    max-width: 820px;
    margin: 0 auto;
}

.contact-final-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.contact-final-content h2 {
    margin: 0 0 18px;

    color: #0f172a;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-final-content p {
    max-width: 680px;
    margin: 0 auto 30px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}

.contact-final-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-tarifs-btn {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
}

.contact-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
}


/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 900px) {

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        padding: 70px 18px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-primary-btn,
    .contact-secondary-btn,
    .contact-tarifs-btn,
    .contact-whatsapp-btn {
        width: 100%;
    }

    .contact-information {
        padding: 65px 18px;
    }

    .contact-section-heading h2 {
        font-size: 29px;
    }

    .contact-final-cta {
        padding: 65px 18px;
    }

    .contact-final-content h2 {
        font-size: 29px;
    }

}
/* =========================================================
   BLOG PAGE
========================================================= */

.blog-hero {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    text-align: center;
}

.blog-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-bottom: 18px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.blog-hero h1 {
    max-width: 800px;

    margin: 0 auto 20px;

    color: #0f172a;

    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.blog-hero h1 strong {
    color: #2563eb;
}

.blog-hero p {
    max-width: 720px;

    margin: 0 auto;

    color: #64748b;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BLOG ARTICLES
========================================================= */

.blog-articles {
    padding: 90px 20px;
    background: #ffffff;
}

.blog-articles .section-heading {
    max-width: 750px;
    margin: 0 auto 50px;

    text-align: center;
}

.blog-articles .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.blog-articles .section-heading h2 {
    margin: 0 0 16px;

    color: #0f172a;

    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
}

.blog-articles .section-heading p {
    margin: 0;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   BLOG GRID
========================================================= */

.blog-grid {
    max-width: 1120px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.blog-card-image {
    width: 100%;
    height: 220px;

    overflow: hidden;

    background: #f1f5f9;
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.blog-card-content {
    padding: 26px 24px 28px;
}

.blog-card-category {
    display: inline-block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.blog-card h3 {
    margin: 0 0 13px;

    color: #0f172a;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card p {
    margin: 0 0 22px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.75;
}

.blog-card-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #2563eb;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: gap 0.2s ease;
}

.blog-card-link:hover {
    gap: 12px;
}


/* =========================================================
   BLOG CTA
========================================================= */

.blog-final-cta {
    padding: 90px 20px;

    background: #f5f8ff;

    text-align: center;
}

.blog-final-content {
    max-width: 820px;

    margin: 0 auto;
}

.blog-final-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.blog-final-content h2 {
    margin: 0 0 18px;

    color: #0f172a;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.blog-final-content p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.8;
}

.blog-final-actions {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.blog-tarifs-btn,
.blog-whatsapp-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.blog-tarifs-btn {
    background: #2563eb;

    color: #ffffff;

    border: 1px solid #2563eb;
}

.blog-whatsapp-btn {
    background: #25d366;

    color: #ffffff;

    border: 1px solid #25d366;
}

.blog-tarifs-btn:hover,
.blog-whatsapp-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   BLOG MOBILE
========================================================= */

@media (max-width: 900px) {

    .blog-hero h1 {
        font-size: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;

        max-width: 760px;
    }

}


@media (max-width: 600px) {

    .blog-hero {
        padding: 70px 18px;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .blog-hero p {
        font-size: 14px;
    }

    .blog-articles {
        padding: 65px 18px;
    }

    .blog-articles .section-heading h2 {
        font-size: 29px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-final-cta {
        padding: 65px 18px;
    }

    .blog-final-content h2 {
        font-size: 29px;
    }

    .blog-tarifs-btn,
    .blog-whatsapp-btn {
        width: 100%;
    }

}
/* =========================================
   ARTICLE PAGE
   ========================================= */

.article-page {
    padding: 60px 20px 80px;
    background: #f8fafc;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.article-header {
    padding: 50px 55px 35px;
    text-align: center;
}

.article-category {
    display: inline-block;
    margin-bottom: 15px;
    color: #1769ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-header h1 {
    margin: 0 auto 20px;
    max-width: 800px;
    color: #071a3d;
    font-size: 42px;
    line-height: 1.15;
}

.article-intro {
    max-width: 720px;
    margin: 0 auto 20px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #64748b;
    font-size: 14px;
}

.article-meta i {
    color: #1769ff;
    margin-right: 6px;
}

.article-image {
    width: 100%;
    overflow: hidden;
}

.article-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}

.article-content {
    max-width: 900px;
    margin: 35px auto 0;
    padding: 0 55px;
}

.article-content p {
    margin: 0 0 22px;
    color: #334155;
    font-size: 17px;
    line-height: 1.8;
}

.article-content h2 {
    margin: 45px 0 18px;
    color: #071a3d;
    font-size: 30px;
    line-height: 1.3;
}

.article-content h3 {
    margin: 32px 0 12px;
    color: #0f2d5c;
    font-size: 21px;
}

.article-cta {
    max-width: 790px;
    margin: 50px auto;
    padding: 35px;
    text-align: center;
    background: #071a3d;
    border-radius: 18px;
}

.article-cta h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 25px;
}

.article-cta p {
    margin: 0 0 22px;
    color: #cbd5e1;
    line-height: 1.6;
}

.article-cta a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 9px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================
   ARTICLE MOBILE
   ========================================= */

@media (max-width: 768px) {

    .article-page {
        padding: 35px 15px 60px;
    }

    .article-header {
        padding: 35px 22px 25px;
    }

    .article-header h1 {
        font-size: 30px;
    }

    .article-intro {
        font-size: 16px;
    }

    .article-content {
        padding: 0 22px;
    }

    .article-content p {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 25px;
    }

    .article-content h3 {
        font-size: 19px;
    }

    .article-cta {
        margin: 40px 22px;
        padding: 25px 20px;
    }

}