/* css/style.css */
:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #ff6b6b;
    --dark: #0f1117;
    --dark-light: #1a1e24;
    --dark-card: #1e1e2a;
    --light: #f7fafc;
    --gray: #4a5568;
    --gray-light: #a0aec0;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ff8e8e 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-hover: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: var(--dark);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-subtitle {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary);
    backdrop-filter: blur(10px);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
header {
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 800;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.2rem;
    z-index: 1001;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: white;
}

.nav-link {
    position: relative;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-pricing {
    background: var(--gradient);
    color: white;
    padding: 0.9rem;
    font-size: 1rem;
    width: 100%;
    border-radius: 50px;
    margin-top: 0.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.6); }
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header .section-header {
    margin-bottom: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--dark);
    z-index: 1;
    line-height: 0;
}

.hero-wave svg {
    display: block;
}

/* ===== DOCUMENTATION PAGES ===== */
.doc {
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 2;
}

.doc-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.doc-sidebar {
    position: sticky;
    top: 100px;
    padding: 1.5rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.doc-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.doc-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.doc-sidebar li {
    margin-bottom: 0.5rem;
}

.doc-sidebar ul ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
    border-left: 1px solid var(--glass-border);
    padding-left: 1rem;
}

.doc-sidebar-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.doc-sidebar-link:hover,
.doc-sidebar-link.active {
    color: white;
    background: var(--glass-hover);
}

/* Content */
.doc-content {
    min-width: 0;
}

.doc-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.doc-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.doc-subsection {
    margin-bottom: 3rem;
}

.doc-subsection h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.doc-card {
    padding: 2rem;
    margin-bottom: 2rem;
}

.doc-card p {
    margin-bottom: 1rem;
    color: var(--gray-light);
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
}

/* Code blocks */
code {
    font-family: 'Fira Code', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--primary);
    border: 1px solid var(--glass-border);
}

.code-block {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: var(--primary);
    border: 1px solid var(--glass-border);
    margin: 0.2rem 0;
}

.code-inline {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: var(--primary);
}

/* Tables */
.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.doc-table th {
    text-align: left;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-weight: 600;
    border-bottom: 1px solid var(--glass-border);
}

.doc-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--gray-light);
}

.doc-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.doc-table code {
    background: rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

/* Notes and warnings */
.doc-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.doc-note i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.doc-note p {
    margin: 0;
    color: var(--gray-light);
}

.doc-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.doc-warning i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.doc-warning ul {
    margin: 0.5rem 0 0 1.5rem;
    color: var(--gray-light);
}

/* Steps */
.doc-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    color: var(--gray-light);
}

/* Lists */
.doc-list {
    list-style: none;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--gray-light);
}

.doc-list i {
    color: var(--primary);
}

/* ===== FEATURES DETAIL PAGE ===== */
.features-detail {
    padding: 4rem 0 6rem;
}

.feature-category {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.category-title i {
    font-size: 2rem;
    color: var(--primary);
}

.category-title .badge {
    margin-left: auto;
}

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

.feature-card {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.6;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sanction-chain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 12px;
}

.sanction-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-light);
    white-space: nowrap;
}

.sanction-chain i {
    color: var(--primary);
    font-size: 0.9rem;
}

.total-commands {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    margin-top: 2rem;
    background: var(--gradient);
    color: white;
    border: none;
}

.note {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 1rem;
    font-style: italic;
}

/* ===== HERO SECTION (from index) ===== */
.hero {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    margin-bottom: 2rem;
}

.badge-pulse {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin: 2rem 0;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats-mini {
    display: flex;
    gap: 2rem;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gradient);
    filter: blur(50px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

/* ===== FEATURES SECTION (from index) ===== */
.features {
    padding: 6rem 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
    color: var(--secondary);
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-light);
    font-weight: 500;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 6rem 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    z-index: 3;
    border: 2px solid var(--dark);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-light);
}

.savings {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(72, 187, 120, 0.15);
    border: 1px solid #48bb78;
    border-radius: 50px;
    color: #48bb78;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-features {
    flex-grow: 1;
    margin: 1.5rem 0;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--gray-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.payment-info {
    text-align: center;
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--glass-bg);
    border-radius: 10px;
    color: var(--gray-light);
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

.payment-info i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.btn-pricing {
    background: var(--gradient);
    color: white;
    padding: 0.9rem;
    font-size: 1rem;
    width: 100%;
    border-radius: 50px;
    margin-top: 0.5rem;
}

/* ===== BOUTON CENTRÉ ===== */
.text-center {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.text-center .btn {
    display: inline-flex;
    margin: 0 auto;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    padding: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-light);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: var(--gray-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section ul a i {
    font-size: 0.8rem;
    color: var(--primary);
}

.footer-section ul a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .doc-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        z-index: 1000;
        padding: 2rem;
    }
    
    nav.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats-mini {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul a {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .sanction-chain {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sanction-chain i {
        transform: rotate(90deg);
        margin: 0.25rem 0;
    }

    .category-title {
        flex-wrap: wrap;
    }
    
    .category-title .badge {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats-mini {
        flex-wrap: wrap;
    }
    
    .doc-table {
        font-size: 0.8rem;
    }
    
    .doc-table td, 
    .doc-table th {
        padding: 0.5rem;
    }
    
    .feature-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* À AJOUTER dans style.css pour la page features */

.features-section {
    padding: 2rem 0 5rem;
}

.feature-group {
    margin-bottom: 3rem;
}

.feature-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--glass-border);
}

.feature-group-header i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-group-header h2 {
    font-size: 1.8rem;
    margin: 0;
    flex: 1;
}

.feature-count {
    background: var(--gradient);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item h3 i {
    color: var(--primary);
    width: 24px;
}

.feature-item p {
    color: var(--gray-light);
    margin: 0;
    line-height: 1.6;
}

.feature-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-item li {
    color: var(--gray-light);
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-item li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sanction-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    background: rgba(0,0,0,0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.sanction-steps .step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.sanction-steps i {
    color: var(--primary);
    font-size: 0.9rem;
}

.feature-note {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.total-commands-block {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient);
    border-radius: 12px;
}

.total-commands-block p {
    margin: 0;
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .feature-group-header {
        flex-wrap: wrap;
    }
    
    .feature-group-header h2 {
        font-size: 1.4rem;
    }
    
    .feature-count {
        font-size: 0.8rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .sanction-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sanction-steps i {
        transform: rotate(90deg);
        margin: 0.25rem 0;
    }
}