/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #7c3aed;
    --purple-dark: #6d28d9;
    --purple-light: #ede9fe;
    --purple-bg: #f5f3ff;
    --black: #0f0a1e;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --blue: #2563eb;
    --font: 'Plus Jakarta Sans', sans-serif;
    --shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
    --shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.15);
    --radius: 14px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.header__logo img {
    height: 48px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__link {
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition);
}

.header__link:hover {
    color: var(--purple);
}

.header__cta {
    font-size: 16px;
    font-weight: 600;
    color: var(--purple);
    border: 2px solid var(--purple);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all var(--transition);
}

.header__cta:hover {
    background: var(--purple);
    color: var(--white);
}

/* Burger Menu */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.btn--primary:hover {
    background: var(--purple-dark);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-700);
    font-weight: 500;
}

.btn--ghost:hover {
    color: var(--purple);
}

/* ===== HERO ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero__content {
    flex: 1;
    max-width: 620px;
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 24px;
}

.hero__highlight {
    color: var(--purple);
    display: inline-block;
    position: relative;
}

.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--purple);
    opacity: 0.18;
    border-radius: 3px;
}

/* Rotating word animation */
.hero__highlight.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

.hero__highlight.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

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

.hero__subtitle {
    font-size: 19px;
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 44px;
}

.hero__stores {
    display: flex;
    gap: 16px;
}

.store-badge img {
    height: 52px;
    width: auto;
    transition: transform var(--transition);
}

.store-badge:hover img {
    transform: scale(1.05);
}

/* Hero illustration */
.hero__illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__illustration img {
    max-width: 205%;
    width: 830px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* ===== SHARED ===== */
.badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
    border: 1.5px solid var(--purple);
    padding: 6px 20px;
    border-radius: 50px;
    background: var(--white);
}

.text-purple {
    color: var(--purple);
}

/* ===== CHANNELS BAR ===== */
.channels {
    padding: 40px 0 60px;
}

.channels__bar {
    display: flex;
    justify-content: center;
    background: var(--white);
    border-radius: 20px;
    padding: 24px 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.channels__bar img {
    height: 130px;
    width: auto;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0 100px;
}

.features__header {
    text-align: center;
    margin-bottom: 56px;
}

.features__header .badge {
    margin-bottom: 20px;
}

.features__title {
    font-size: 44px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.features__subtitle {
    font-size: 18px;
    color: var(--gray-500);
}

/* Tabs */
.features__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.features__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 36px;
    border: none;
    background: transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    flex: 1;
}

.features__tab:hover {
    background: var(--purple-light);
}

.features__tab.active {
    background: var(--purple);
    color: var(--white);
}

.features__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.features__tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features__tab-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    transition: color var(--transition);
    white-space: nowrap;
}

.features__tab.active .features__tab-label {
    color: var(--white);
}

/* Tab Content / Panels */
.features__content {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.features__panel {
    display: none;
    align-items: center;
    gap: 48px;
    padding: 56px;
}

.features__panel.active {
    display: flex;
}

.features__panel-text {
    flex: 1;
}

.features__panel-text .badge {
    margin-bottom: 20px;
}

.features__panel-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.features__panel-text p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn--sm {
    padding: 12px 24px;
    font-size: 15px;
}

.features__panel-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 380px;
}

.features__panel-image img {
    max-width: 100%;
    max-height: 360px;
    width: auto;
    object-fit: contain;
}

/* ===== BOOST / PROPULSEZ-VOUS ===== */
.boost {
    padding: 80px 0 100px;
}

.boost__header {
    text-align: center;
    margin-bottom: 60px;
}

.boost__header .badge {
    margin-bottom: 20px;
}

.boost__title {
    font-size: 44px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.boost__subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.boost__content {
    display: flex;
    align-items: center;
    gap: 64px;
    background: var(--purple-bg);
    border-radius: 24px;
    padding: 64px;
}

.boost__text {
    flex: 1;
}

.boost__text .badge--green {
    color: var(--purple);
    border-color: var(--purple);
    margin-bottom: 20px;
}

.boost__text h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.boost__text p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

.boost__cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.boost__card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}

.boost__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.1);
}

.boost__card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.boost__card span {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

/* ===== PRICING ===== */
.pricing {
    padding: 80px 0 100px;
}

.pricing__header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing__header .badge {
    margin-bottom: 20px;
}

.pricing__title {
    font-size: 44px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing__subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing__badge-row {
    text-align: center;
    margin-bottom: 40px;
}

.pricing__badge-nos-offres {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--purple);
    padding: 10px 28px;
    border-radius: 50px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing__card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing__card--featured {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    transform: scale(1.03);
}

.pricing__card--featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.3);
}

.pricing__plan-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.pricing__card--featured .pricing__plan-name {
    color: var(--white);
}

.pricing__plan-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 28px;
    flex: 1;
}

.pricing__card--featured .pricing__plan-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.pricing__currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.pricing__card--featured .pricing__currency {
    color: var(--white);
}

.pricing__amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.pricing__card--featured .pricing__amount {
    color: var(--white);
}

.pricing__period {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-500);
}

.pricing__card--featured .pricing__period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
    padding: 14px 28px;
}

.pricing__cta--white {
    background: var(--white);
    color: var(--purple);
    border: 2px solid var(--white);
}

.pricing__cta--white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.pricing__card--featured .pricing__features li {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 0 100px;
    background: var(--purple-bg);
}

.about__header {
    text-align: center;
    margin-bottom: 56px;
}

.about__header .badge {
    margin-bottom: 20px;
}

.about__title {
    font-size: 44px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about__subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about__card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about__card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.about__card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.about__card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0 100px;
}

.contact__inner {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    background: var(--purple-bg);
    border-radius: 24px;
    padding: 64px;
}

.contact__text {
    flex: 1;
    min-width: 0;
    padding-top: 40px;
}

.contact__form {
    flex: 1.5;
    min-width: 0;
}

.contact__text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 16px;
}

.contact__text p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__field label {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.required {
    color: #ef4444;
}

.contact__field input,
.contact__field textarea {
    font-family: var(--font);
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus {
    border-color: var(--purple);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: #9ca3af;
}

.btn--submit {
    align-self: flex-start;
    background: #1a7a8a;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--submit:hover {
    background: #15616d;
    transform: translateY(-2px);
}

.btn--submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 12px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.form-message--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===== MENTIONS LÉGALES ===== */

.ml-hero {
    background: var(--purple-bg);
    padding: 130px 0 60px;
    text-align: center;
}

.ml-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.ml-hero p {
    color: var(--gray-500);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--purple-light);
    color: var(--purple);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

/* Nav ancres sticky */
.ml-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 90px;
    z-index: 50;
    padding: 0;
}

.ml-nav .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.ml-nav .container::-webkit-scrollbar {
    display: none;
}

.ml-nav a {
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: all var(--transition);
}

.ml-nav a:hover,
.ml-nav a.active {
    color: var(--purple);
    border-bottom-color: var(--purple);
}

/* Contenu principal */
.ml-content {
    padding: 60px 0 80px;
    background: var(--gray-100);
}

.ml-section {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 40px;
    margin-bottom: 20px;
    scroll-margin-top: 160px;
    transition: box-shadow var(--transition);
}

.ml-section:hover {
    box-shadow: var(--shadow);
}

.ml-section-icon {
    width: 52px;
    height: 52px;
    background: var(--purple-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ml-section h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--purple-bg);
}

.ml-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--purple-dark);
    margin: 24px 0 10px;
}

.ml-section p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 12px;
}

.ml-section strong {
    color: var(--gray-700);
    font-weight: 600;
}

.ml-section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px;
}

.ml-section ul li {
    font-size: 15px;
    color: var(--gray-500);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.6;
}

.ml-section ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
}

/* Info grid (éditeur/hébergeur) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
}

.info-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color var(--transition);
}

.info-card:hover {
    border-color: var(--purple-light);
}

.info-card label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    display: block;
    margin-bottom: 6px;
}

.info-card span {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    line-height: 1.5;
}

.info-card a {
    color: var(--purple);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.info-card a:hover {
    color: var(--purple-dark);
    text-decoration: underline;
}

/* Droits RGPD */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.right-badge {
    background: var(--purple-bg);
    border: 1.5px solid var(--purple-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-dark);
    text-align: center;
    transition: all var(--transition);
}

.right-badge:hover {
    background: var(--purple-light);
    border-color: var(--purple);
}

/* Alert box */
.alert-box {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 12px;
    padding: 14px 20px;
    margin: 16px 0;
    font-size: 14px;
    color: #166534;
    font-weight: 500;
}

/* CTA contact */
.contact-cta {
    background: var(--purple);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.contact-cta p {
    color: rgba(255,255,255,0.85) !important;
    margin-bottom: 16px;
    font-size: 16px !important;
}

.contact-cta a {
    background: var(--white);
    color: var(--purple);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
}

.contact-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive mentions légales */
@media (max-width: 768px) {
    .ml-hero h1 {
        font-size: 32px;
    }

    .ml-hero {
        padding: 110px 0 40px;
    }

    .ml-nav {
        top: 90px;
    }

    .ml-nav a {
        padding: 12px 16px;
        font-size: 13px;
    }

    .ml-section {
        padding: 24px 20px;
    }

    .ml-section h2 {
        font-size: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #1e1e2f;
    padding: 64px 0 0;
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}

.footer__col h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col ul a {
    font-size: 15px;
    color: #9ca3af;
    transition: color var(--transition);
}

.footer__col ul a:hover {
    color: var(--white);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #2d2d42;
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition);
}

.footer__socials a:hover {
    background: var(--purple);
}

.footer__bottom {
    border-top: 1px solid #2d2d42;
    padding: 32px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer__logo {
    height: 36px;
    width: auto;
}

.footer__bottom p {
    font-size: 14px;
    color: #6b7280;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    background: var(--white);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--purple);
    color: var(--white);
}

/* ===== MODAL SMS ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    max-width: 780px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.modal__close:hover {
    color: var(--black);
}

.modal__title {
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    text-align: center;
    margin-bottom: 8px;
}

.modal__subtitle {
    font-size: 15px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 32px;
}

.modal__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.modal__card {
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
}

.modal__card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.modal__price {
    font-size: 36px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 4px;
}

.modal__unit {
    font-size: 13px;
    color: var(--gray-500);
    display: block;
    margin-bottom: 16px;
}

.modal__total {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal__btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
}

.modal__note {
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .hero__content {
        max-width: 600px;
    }

    .hero__title {
        font-size: 44px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stores {
        justify-content: center;
    }

    .hero__illustration img {
        width: 500px;
    }

    .features__title {
        font-size: 36px;
    }

    .features__tabs {
        flex-wrap: wrap;
    }

    .features__tab {
        padding: 16px 20px;
    }

    .features__panel {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .boost__content {
        flex-direction: column;
        padding: 40px;
    }

    .boost__text {
        text-align: center;
    }

    .boost__title {
        font-size: 36px;
    }

    .pricing__title {
        font-size: 36px;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing__card--featured {
        transform: none;
    }

    .pricing__card--featured:hover {
        transform: translateY(-4px);
    }

    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__title {
        font-size: 36px;
    }

    .contact__inner {
        flex-direction: column;
        padding: 40px;
        gap: 32px;
    }

    .contact__text {
        flex: none;
        text-align: center;
        padding-top: 0;
    }

    .contact__form {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .header__nav.open {
        display: flex;
    }

    .header__burger {
        display: flex;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero__illustration img {
        width: 380px;
    }

    .features__title {
        font-size: 28px;
    }

    .features__tabs {
        flex-direction: column;
        gap: 4px;
    }

    .features__tab {
        flex-direction: row;
        padding: 14px 20px;
    }

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

    .features__tab-icon svg {
        width: 28px;
        height: 28px;
    }

    .features__panel {
        padding: 28px 20px;
    }

    .features__panel-text h3 {
        font-size: 24px;
    }

    .channels__bar {
        padding: 16px 24px;
    }

    .channels__bar img {
        height: 50px;
    }

    .boost__title {
        font-size: 28px;
    }

    .boost__content {
        padding: 28px 20px;
    }

    .boost__text h3 {
        font-size: 24px;
    }

    .boost__card {
        padding: 16px 20px;
    }

    .pricing__title {
        font-size: 28px;
    }

    .modal {
        padding: 28px 20px;
    }

    .modal__grid {
        grid-template-columns: 1fr;
    }

    .modal__title {
        font-size: 20px;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .about__title {
        font-size: 28px;
    }

    .contact__inner {
        padding: 24px 16px;
        gap: 24px;
    }

    .contact__text h2 {
        font-size: 24px;
    }

    .contact__row {
        grid-template-columns: 1fr;
    }

    .contact__field input,
    .contact__field textarea {
        font-size: 14px;
        padding: 10px 14px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }

    .footer__bottom {
        padding: 24px 0;
    }
}
