/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-card: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth page transitions */
* {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    * {
        scroll-margin-top: 80px;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    will-change: transform, box-shadow;
}

.header.scrolled {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.99);
}

.navbar {
    padding: 1.25rem 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.logo a:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 75vh;
        padding-top: 60px;
        padding-bottom: 30px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    animation: fadeInUp 0.6s ease;
    padding: 2rem 0;
    will-change: opacity, transform;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4), 0 10px 10px -5px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.5), 0 15px 15px -5px rgba(99, 102, 241, 0.3);
    filter: brightness(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(15px); }
}

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

/* Performance optimizations */
section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

@media (max-width: 1024px) {
    section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 360px) {
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .plans-grid {
        gap: 0.5rem;
    }
    
    .plan-card {
        min-width: 140px;
    }
    
    .price-current {
        font-size: 1.25rem;
    }
    
    .plan-duration {
        font-size: 0.9rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Text overflow handling */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure tables and long content don't break layout */
table {
    width: 100%;
    table-layout: auto;
}

@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

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

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 40px;
    padding: 0.5rem 1.25rem;
    margin-top: 0.75rem;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
}

.payment-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--primary-color);
}

.payment-icon svg {
    width: 1rem;
    height: 1rem;
}

.payment-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.4;
}

.payment-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-separator {
    color: var(--text-secondary);
    font-weight: 300;
    opacity: 0.5;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .payment-badge {
        padding: 0.45rem 1rem;
        gap: 0.4rem;
        margin-top: 0.625rem;
    }
    
    .payment-icon {
        font-size: 0.9rem;
    }
    
    .payment-text {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .payment-separator {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .payment-badge {
        padding: 0.4rem 0.875rem;
        gap: 0.35rem;
        border-radius: 30px;
    }
    
    .payment-icon {
        font-size: 0.85rem;
    }
    
    .payment-text {
        font-size: 0.7rem;
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .payment-separator {
        font-size: 0.6rem;
    }
}

/* Abonnements Section */
.abonnements {
    background: var(--bg-secondary);
}

.plans-category {
    margin-bottom: 3rem;
}

.plans-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.category-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plans-category {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    padding-bottom: 1rem;
}

.plans-category::-webkit-scrollbar {
    height: 8px;
}

.plans-category::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.plans-category::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

.plans-category::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 0.625rem;
    margin-top: 1.5rem;
    min-width: min-content;
    width: 100%;
}

/* Mobile: Vertical scroll one by one */
@media (max-width: 768px) {
    .plans-category {
        overflow-x: visible;
        overflow-y: visible;
        padding-bottom: 0;
    }
    
    .plans-category::-webkit-scrollbar {
        display: none;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
        min-width: 100%;
        width: 100%;
    }
    
    .plan-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(4, minmax(160px, 1fr));
        gap: 0.625rem;
    }
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(4, minmax(150px, 1fr));
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .plans-category {
        overflow-x: visible;
        overflow-y: visible;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 2rem;
        padding-bottom: 0;
    }
    
    .plans-category::-webkit-scrollbar {
        display: none;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
        min-width: 100%;
        width: 100%;
    }
    
    .plan-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }
    
    .plan-header {
        padding: 1rem 1.25rem 0.5rem;
    }
    
    .plan-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .plan-duration {
        font-size: 1.125rem;
    }
    
    .plan-price-section {
        padding: 0.875rem 1.25rem;
    }
    
    .price-current {
        font-size: 1.875rem;
    }
    
    .price-old {
        font-size: 0.875rem;
    }
    
    .price-save {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
    
    .plan-features-wrapper {
        padding: 1rem 1.25rem;
    }
    
    .plan-features li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        padding-left: 1.25rem;
    }
    
    .plan-features li .feature-icon {
        width: 16px;
        height: 16px;
    }
    
    .plan-card .btn-plan {
        margin: 0 1.25rem 1rem;
        width: calc(100% - 2.5rem);
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .plan-guarantee {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .plans-category {
        overflow-x: visible;
        overflow-y: visible;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 1.5rem;
        padding-bottom: 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .plan-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }
    
    .plan-header {
        padding: 0.875rem 1rem 0.5rem;
    }
    
    .plan-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .plan-duration {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .plan-price-section {
        padding: 0.75rem 1rem;
    }
    
    .price-current {
        font-size: 1.625rem;
    }
    
    .price-period {
        font-size: 0.7rem;
    }
    
    .price-old {
        font-size: 0.8rem;
    }
    
    .price-save {
        font-size: 0.6rem;
        padding: 0.125rem 0.4rem;
    }
    
    .plan-features-wrapper {
        padding: 0.875rem 1rem;
    }
    
    .plan-features li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        padding-left: 1rem;
        line-height: 1.5;
    }
    
    .plan-features li .feature-icon {
        width: 14px;
        height: 14px;
    }
    
    .plan-card .btn-plan {
        margin: 0 1rem 0.875rem;
        width: calc(100% - 2rem);
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .plan-guarantee {
        padding: 0.625rem 1rem;
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .plan-popular-badge {
        top: 15px;
        right: -30px;
        padding: 5px 30px;
        font-size: 0.65rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 360px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .plan-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .plan-header {
        padding: 0.75rem 0.875rem 0.45rem;
    }
    
    .plan-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .plan-duration {
        font-size: 0.95rem;
    }
    
    .plan-price-section {
        padding: 0.625rem 0.875rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .plan-features-wrapper {
        padding: 0.75rem 0.875rem;
    }
    
    .plan-features li {
        font-size: 0.75rem;
        padding-left: 0.9rem;
    }
    
    .plan-card .btn-plan {
        margin: 0 0.875rem 0.75rem;
        width: calc(100% - 1.75rem);
        padding: 0.7rem;
        font-size: 0.8rem;
    }
    
    .plan-guarantee {
        padding: 0.5rem 0.875rem;
        font-size: 0.65rem;
    }
}

.plan-card {
    background: white;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 160px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.plan-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    border-color: var(--primary-color);
    border-width: 2.5px;
    transform: scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}

.plan-card.featured::before {
    opacity: 1;
    height: 6px;
}

.plan-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.plan-popular-badge {
    position: absolute;
    top: 10px;
    right: -26px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 4px 28px;
    font-size: 0.6rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.plan-header {
    padding: 0.625rem 0.75rem 0.375rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.plan-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
    letter-spacing: 0.3px;
}

.plan-badge.best-value {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.plan-badge.best-price {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.plan-duration {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.plan-price-section {
    padding: 0.5rem 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 1px solid var(--border-color);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1;
}

.price-period {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-old-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.2rem;
    flex-wrap: wrap;
}

.price-old {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-save {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.125rem 0.4rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    white-space: nowrap;
}

.price-save.highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
}

.price-monthly {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-features-wrapper {
    padding: 0.625rem 0.75rem;
    flex: 1;
}

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

.plan-features li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.3;
    font-size: 0.7rem;
}

.plan-features li .feature-icon {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.3rem;
    width: 14px;
}

.plan-features li .feature-icon svg {
    width: 12px;
    height: 12px;
}

.plan-card .btn-plan {
    margin: 0 0.75rem 0.5rem;
    width: calc(100% - 1.5rem);
}

.plan-guarantee {
    text-align: center;
    padding: 0.4rem 0.75rem;
    background: var(--bg-secondary);
    font-size: 0.65rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.plan-guarantee svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.plan-devices {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

@media (min-width: 769px) {
    .plan-devices {
        margin-top: 0.75rem;
        font-size: 0.875rem;
    }
}

.btn-plan {
    background: var(--gradient);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
}

a.btn-plan {
    text-decoration: none;
    color: white;
    display: inline-block;
}

a.btn-plan:hover {
    color: white;
    text-decoration: none;
}

.btn-plan.featured-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
    filter: brightness(1.05);
}

/* Pourquoi Section */
.pourquoi {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.feature-card {
    text-align: center;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.8rem;
}

/* Meilleur Abonnement Section */
.meilleur-abonnement {
    background: var(--bg-secondary);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.text-content {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (min-width: 769px) {
    .text-content {
        font-size: 1.125rem;
        line-height: 1.9;
    }
}

.text-content p {
    margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
    .text-content p {
        margin-bottom: 2rem;
    }
}

.text-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.advantages-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

@media (min-width: 769px) {
    .advantages-list {
        margin: 2.5rem 0;
    }
}

.advantages-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .advantages-list li {
        padding: 1.25rem 0;
        padding-left: 2.5rem;
        line-height: 1.8;
        font-size: 1.0625rem;
    }
}

.advantages-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
    top: 0.75rem;
}

@media (min-width: 769px) {
    .advantages-list li::before {
        font-size: 1.5rem;
        top: 1rem;
    }
}

/* Compatibilité Section */
.compatibilite {
    background: white;
}

.compatibilite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .compatibilite-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .compatibilite-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.compatibilite-card {
    background: var(--bg-secondary);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.compatibilite-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
    border-color: var(--primary-color);
}

.compatibilite-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.compatibilite-icon svg {
    width: 32px;
    height: 32px;
}

.compatibilite-card:hover .compatibilite-icon {
    transform: scale(1.1);
}

.compatibilite-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.compatibilite-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.compatibilite-list {
    list-style: none;
    padding-left: 0;
}

.compatibilite-list li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.5;
}

.compatibilite-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.875rem;
}

.vitesse-internet {
    background: var(--bg-secondary);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
}

.vitesse-internet h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.vitesse-internet p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.6;
}

.vitesse-list {
    list-style: none;
    padding-left: 0;
}

.vitesse-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.vitesse-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

/* Applications Section */
.applications {
    background: var(--bg-secondary);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

.app-card {
    background: white;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.app-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.app-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.app-features {
    list-style: none;
    padding-left: 0;
}

.app-features li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.5;
}

.app-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.125rem;
}

.installation-note {
    background: white;
    padding: 1.25rem 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.installation-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 0.8rem;
}

/* VPN et Sécurité Section */
.vpn-securite {
    background: white;
}

.vpn-content {
    max-width: 900px;
    margin: 0 auto;
}

.vpn-section {
    margin-bottom: 2rem;
    padding: 1.5rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.vpn-section:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.vpn-section:last-child {
    margin-bottom: 0;
}

.vpn-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.vpn-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.vpn-advantages,
.legal-info {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.vpn-advantages li,
.legal-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.8rem;
}

.vpn-advantages li::before,
.legal-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.875rem;
}

.vpn-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.vpn-steps li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.8rem;
}

/* FAQ Section */
.faq {
    background: white;
}

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

.faq-item {
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    gap: 1rem;
}

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

@media (min-width: 769px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question:hover {
        padding-left: 2rem;
    }
}

.faq-question h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    text-align: left;
}

@media (min-width: 769px) {
    .faq-question h3 {
        font-size: 1.125rem;
    }
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .faq-icon {
        font-size: 1.5rem;
    }
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.85rem;
}

@media (min-width: 769px) {
    .faq-answer p {
        padding: 1.25rem 1.5rem;
        font-size: 0.9375rem;
        line-height: 1.8;
    }
}

/* Politiques Légales Section */
.politiques-legales {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.politique-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    scroll-margin-top: 100px;
}

.politique-section:last-child {
    margin-bottom: 0;
}

.politique-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.politique-content {
    color: var(--text-primary);
    line-height: 1.8;
}

.politique-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.politique-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.politique-content h3:first-of-type {
    margin-top: 0;
}

.politique-content ul {
    margin: 1rem 0 1.5rem;
    padding-left: 2rem;
    list-style-type: disc;
}

.politique-content li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.politique-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.politique-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .politiques-legales {
        padding: 3rem 0;
    }
    
    .politique-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
        border-radius: 12px;
    }
    
    .politique-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .politique-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .politique-content p,
    .politique-content li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .politique-section {
        padding: 1.5rem 1rem;
    }
    
    .politique-title {
        font-size: 1.5rem;
    }
    
    .politique-content h3 {
        font-size: 1.125rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-top {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.footer-section {
    position: relative;
}

.footer-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-color);
}

.footer-icon svg {
    width: 20px;
    height: 20px;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 769px) {
    .footer-section h3 {
        font-size: 1.35rem;
    }
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (min-width: 769px) {
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-info a {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.payment-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.payment-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.payment-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.legal-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.dmca-text {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.dmca-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-legal {
    text-align: center;
}

.footer-legal-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

.legal-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
    text-decoration: none;
    transform: translateY(-1px);
}

.legal-separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.875rem;
    font-weight: 300;
}

.footer-certifications {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-badge svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.footer-badge:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.copyright strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-top {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo a {
        font-size: 1.75rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-bottom-wrapper {
        gap: 1.5rem;
    }
    
    .footer-legal {
        padding: 0;
    }
    
    .footer-legal-title {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .legal-separator {
        display: none;
    }
    
    .footer-certifications {
        padding: 1.25rem 0;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-badge {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .legal-separator {
        display: none;
    }
    
    .legal-link {
        font-size: 0.8rem;
        padding: 0.5rem 0;
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom-wrapper {
        gap: 1.25rem;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

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

.scroll-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .plans-grid {
        gap: 0.75rem;
    }
    
    .features-grid,
    .compatibilite-grid,
    .applications-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-xl);
        padding: 5rem 0 2rem;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.75rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
        display: block;
        width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-secondary);
        color: var(--primary-color);
    }
    
    .nav-link::after {
        display: none;
    }

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

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

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

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
    
    .section-subtitle {
        padding: 0 1rem;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-popular-badge {
        top: 15px;
        right: -30px;
        padding: 6px 35px;
        font-size: 0.7rem;
    }
    
    .plan-header {
        padding: 0.625rem 0.75rem 0.375rem;
    }
    
    .plan-price-section {
        padding: 0.5rem 0.75rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .plan-features-wrapper {
        padding: 0.625rem 0.75rem;
    }
    
    .plan-card .btn-plan {
        margin: 0 0.75rem 0.5rem;
        width: calc(100% - 1.5rem);
    }
    
    .category-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .category-subtitle {
        padding: 0 1rem;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .vitesse-internet {
        padding: 2rem 1.5rem;
    }
    
    .vpn-section {
        padding: 1.25rem 1rem;
    }
    
    .vpn-section h3 {
        font-size: 1rem;
    }
    
    .vpn-advantages li,
    .legal-info li,
    .vpn-steps li {
        font-size: 0.75rem;
        padding-left: 1.25rem;
    }
    
    .vpn-steps {
        padding-left: 1.25rem;
    }
    
    .app-card {
        padding: 1.25rem 1rem;
    }
    
    .installation-note {
        padding: 1rem 0.875rem;
        margin-top: 1.25rem;
    }
    
    .compatibilite-card {
        padding: 1.25rem 1rem;
    }
    
    .vitesse-internet {
        padding: 1.25rem 1rem;
    }
    
    .vitesse-internet h3 {
        font-size: 1rem;
    }
    
    .vitesse-list li {
        font-size: 0.75rem;
        padding-left: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .vpn-content {
        padding: 0;
    }
    
    .faq-list {
        padding: 0;
    }
    
    .content-wrapper {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    html {
        font-size: 14px;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        display: none;
    }

    .plan-header {
        padding: 0.625rem 0.75rem 0.375rem;
    }
    
    .plan-price-section {
        padding: 0.5rem 0.75rem;
    }

    .price-current {
        font-size: 1.375rem;
    }
    
    .price-old {
        font-size: 0.7rem;
    }
    
    .price-save {
        font-size: 0.6rem;
        padding: 0.125rem 0.4rem;
    }
    
    .plan-features-wrapper {
        padding: 0.625rem 0.75rem;
    }
    
    .plan-card .btn-plan {
        margin: 0 0.75rem 0.5rem;
        width: calc(100% - 1.5rem);
        padding: 0.6rem;
        font-size: 0.7rem;
    }
    
    .plan-guarantee {
        padding: 0.4rem 0.75rem;
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .category-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: 0.5rem;
    }
    
    .category-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 0.875rem;
    }
    
    .faq-question h3 {
        font-size: 0.875rem;
    }
    
    .faq-answer {
        padding: 0.875rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
    
    .scroll-top {
        bottom: 70px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .meilleur-abonnement {
        padding: 2rem 0;
    }
    
    .vpn-securite {
        padding: 2rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-list li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-bottom-wrapper {
        gap: 1.25rem;
    }
    
    .footer-legal-title {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }
    
    .legal-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .footer-certifications {
        padding: 1rem 0;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    .text-content {
        font-size: 0.85rem;
    }
    
    .text-content p {
        margin-bottom: 1rem;
    }
    
    .advantages-list {
        margin: 1rem 0;
    }
    
    .advantages-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.85rem;
    }
    
    .advantages-list li::before {
        font-size: 1.125rem;
        top: 0.5rem;
    }
    
    /* Additional responsive improvements */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .plan-card {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .features-grid,
    .compatibilite-grid,
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }
    
    .footer-section-header {
        margin-bottom: 1rem;
    }
    
    .footer-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .feature-icon svg,
    .compatibilite-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .plan-features li {
        font-size: 0.65rem;
        padding-left: 0.875rem;
    }
    
    .plan-features li .feature-icon {
        width: 12px;
    }
    
    .plan-features li .feature-icon svg {
        width: 10px;
        height: 10px;
    }
    
    .vpn-content {
        gap: 1rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .installation-note p {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    html {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .plans-grid {
        gap: 0.5rem;
    }
    
    .plan-card {
        min-width: 140px;
    }
    
    .price-current {
        font-size: 1.25rem;
    }
    
    .plan-duration {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .footer-logo a {
        font-size: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .legal-link {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }
    
    .footer-badge {
        font-size: 0.7rem;
        padding: 0.45rem 0.75rem;
    }
    
    .features-grid,
    .compatibilite-grid,
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .payment-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }
    
    .footer-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .feature-icon svg,
    .compatibilite-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Tablet portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .plans-grid {
        gap: 0.75rem;
    }
    
    .features-grid,
    .compatibilite-grid,
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet landscape and small desktops */
@media (min-width: 769px) and (max-width: 1024px) {
    .plans-grid {
        gap: 0.75rem;
    }
    
    .features-grid,
    .compatibilite-grid,
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Large desktops */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}
