/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== A11Y ===== */
.skip-link {
    position: absolute; top: -40px; left: 8px; z-index: 200;
    background: #4338ca; color: #fff; padding: 8px 14px;
    border-radius: 0 0 8px 8px; font-size: 0.9rem; font-weight: 600;
    transition: top 0.15s;
}
.skip-link:focus { top: 0; outline: 3px solid #fbbf24; outline-offset: 2px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible, label:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
    border-radius: 4px;
}

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

/* ===== LAYOUT ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; gap: 6px; }
.logo-icon { color: #f59e0b; font-size: 1.4rem; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.9rem; font-weight: 400; color: #64748b; transition: color 0.2s; }
.nav a:hover { color: #1a1a2e; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #1a1a2e; margin: 5px 0; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 10px 24px; border-radius: 8px;
    font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
    border: 2px solid #6366f1; color: #6366f1; cursor: pointer;
    text-align: center;
}
.btn:hover { background: #6366f1; color: #fff; transform: translateY(-1px); }
.btn-primary { background: #6366f1; color: #fff; }
.btn-primary:hover { background: #4f46e5; border-color: #4f46e5; }
.btn-outline { border-color: #cbd5e1; color: #475569; }
.btn-outline:hover { background: #f8fafc; color: #1a1a2e; border-color: #6b7280; }
.btn-sm { padding: 6px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px; text-align: center;
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: #ecfdf5; color: #065f46; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
    line-height: 1.1; margin-bottom: 20px; color: #0f172a;
}
.hero-sub {
    font-size: 1.15rem; color: #64748b; max-width: 640px; margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-sub strong { color: #0f172a; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: #6366f1; }
.stat-label { font-size: 0.85rem; color: #6b7280; font-weight: 400; }

/* ===== WHY CARDS ===== */
.why { padding: 80px 0; background: #fff; }
.why h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    max-width: 800px; margin: 0 auto;
}
.why-card {
    padding: 32px 28px; border-radius: 16px; background: #f8fafc;
    border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 32px rgba(99,102,241,0.08);
    border-color: #c7d2fe;
}
.why-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-card:nth-child(1) .why-icon { background: #eef2ff; }
.why-card:nth-child(2) .why-icon { background: #fef3c7; }
.why-card:nth-child(3) .why-icon { background: #dbeafe; }
.why-card:nth-child(4) .why-icon { background: #ede9fe; }
.why-card:nth-child(5) .why-icon { background: #fce7f3; }
.why-card:nth-child(6) .why-icon { background: #d1fae5; }
.why-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: #1a1a2e; }
.why-card p { font-size: 0.9rem; color: #64748b; line-height: 1.65; }

/* ===== EXAMPLES ===== */
.examples { padding: 80px 0; background: #f8fafc; }
.examples h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.example-card {
    background: #fff; border-radius: 12px; padding: 28px;
    border: 1px solid #e2e8f0; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.example-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.example-text { font-size: 0.92rem; color: #475569; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.example-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #6b7280; }
.example-name { font-weight: 600; color: #1a1a2e; }
.examples-note { text-align: center; font-size: 0.8rem; color: #6b7280; margin-top: 20px; }

/* ===== SECTION HEADERS ===== */
.how h2, .pricing h2, .testimonials h2, .faq h2, .order h2, .extras h2 {
    text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 12px;
}
.section-sub {
    text-align: center; color: #64748b; font-size: 1.05rem;
    margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ===== HOW ===== */
.how { padding: 80px 0; background: #fff; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { text-align: center; position: relative; }
.step-num {
    width: 48px; height: 48px; border-radius: 50%; background: #6366f1; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; margin: 0 auto 16px;
}
.step-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: #64748b; line-height: 1.6; }

/* ===== PRICING ===== */
.pricing { padding: 80px 0; background: #f8fafc; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.price-card {
    border: 2px solid #e2e8f0; border-radius: 16px; padding: 32px 24px;
    text-align: center; position: relative; transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.price-card.popular { border-color: #6366f1; background: linear-gradient(180deg, #faf5ff 0%, #fff 30%); }
.price-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #6366f1; color: #fff; padding: 4px 16px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 800; white-space: nowrap;
}
.price-name { font-size: 0.85rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.price-count { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.price-old { font-size: 1rem; color: #94a3b8; text-decoration: line-through; margin-bottom: 2px; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: #6366f1; margin-bottom: 4px; }
.price-unit { font-size: 0.85rem; color: #6b7280; margin-bottom: 24px; }
.price-features { margin-bottom: 24px; }
.price-features li { font-size: 0.88rem; color: #475569; padding: 6px 0; border-bottom: 1px solid #f1f5f9; }
.price-features li:last-child { border: none; }
.price-desc { font-size: 0.82rem; color: #64748b; line-height: 1.5; margin-bottom: 20px; padding: 0 4px; }

.pricing-info {
    max-width: 720px; margin: 0 auto 32px; padding: 28px 32px;
    background: #fff; border-radius: 12px; border: 1px solid #e2e8f0;
}
.pricing-info h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; text-align: center; }
.info-cols { display: flex; gap: 20px; }
.info-col {
    flex: 1; padding: 20px; border-radius: 12px; background: #fff;
    border: 1px solid #e2e8f0; text-align: center;
}
.info-col-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.info-col strong { display: block; font-size: 0.9rem; margin-bottom: 6px; color: #1a1a2e; }
.info-col p { font-size: 0.85rem; color: #64748b; line-height: 1.6; margin: 0; }
.pricing-info p { font-size: 0.92rem; color: #64748b; line-height: 1.7; margin-bottom: 8px; }
.pricing-info p:last-child { margin-bottom: 0; }
.pricing-info strong { color: #1a1a2e; }

.pricing-note { text-align: center; color: #6b7280; font-size: 0.9rem; }
.pricing-note a { color: #6366f1; font-weight: 600; }

/* ===== COMPARE ===== */
.compare { padding: 80px 0; background: #fff; }


/* ===== FAQ ===== */
.faq { padding: 80px 0; background: #f8fafc; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #e2e8f0; padding: 16px 0;
}
.faq-item {
    border-bottom: 1px solid #e2e8f0; padding: 0;
}
.faq-item summary {
    cursor: pointer; font-weight: 600; font-size: 1rem; color: #1a1a2e;
    padding: 20px 0; list-style: none; display: flex; justify-content: space-between;
    align-items: center; transition: color 0.2s;
}
.faq-item summary:hover { color: #6366f1; }
.faq-item summary::after {
    content: '+'; font-size: 1.5rem; color: #6366f1; flex-shrink: 0; margin-left: 16px;
    width: 32px; height: 32px; border-radius: 50%; background: #eef2ff;
    display: flex; align-items: center; justify-content: center; font-weight: 400;
    transition: all 0.2s;
}
.faq-item[open] summary::after { content: '-'; background: #6366f1; color: #fff; }
.faq-item p { padding: 0 0 20px; font-size: 0.95rem; color: #64748b; line-height: 1.7; }

/* ===== ORDER FORM ===== */
.order { padding: 80px 0; background: #fff; }
.order-form { max-width: 640px; margin: 0 auto; background: #f8fafc; padding: 40px; border-radius: 16px; border: 1px solid #e2e8f0; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1.5px solid #d1d5db; border-radius: 8px;
    font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-hint { font-size: 0.8rem; color: #6b7280; margin-top: 4px; display: block; }
.form-disclaimer { text-align: center; font-size: 0.8rem; color: #6b7280; margin-top: 16px; }
.form-error { font-size: 0.8rem; color: #dc2626; margin-top: 4px; display: block; }
.maps-help { margin-top: 4px; }
.maps-help summary { cursor: pointer; color: #6366f1; font-weight: 600; font-size: 0.82rem; }
.maps-help summary:hover { text-decoration: underline; }
.maps-help ol { margin: 10px 0 0 16px; font-size: 0.82rem; color: #475569; line-height: 1.8; }
.maps-help ol li { margin-bottom: 2px; }
.field-error { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,0.1) !important; }

.order-success { text-align: center; padding: 60px 20px; max-width: 640px; margin: 0 auto; }
.success-icon {
    width: 64px; height: 64px; border-radius: 50%; background: #10b981; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 20px;
}
.order-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.order-success p { color: #64748b; }

/* ===== METIERS ===== */
.metiers { padding: 80px 0; background: #fff; }
.metiers h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.metiers-grid {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    max-width: 900px; margin: 0 auto;
}
.metier-link {
    display: inline-block; padding: 8px 18px; border-radius: 20px;
    background: #f1f5f9; border: 1px solid #e2e8f0; font-size: 0.88rem;
    font-weight: 500; color: #475569; transition: all 0.2s;
}
.metier-link:hover { background: #eef2ff; border-color: #c7d2fe; color: #4338ca; }

/* ===== BLOG ARTICLES ===== */
.seo-text h2 {
    font-size: 1.4rem; font-weight: 800; color: #0f172a; margin: 40px 0 16px;
    padding-bottom: 10px; border-bottom: 2px solid #eef2ff;
}
.seo-text h3 {
    font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin: 28px 0 12px;
}
.seo-text p {
    font-size: 0.95rem; color: #475569; line-height: 1.85; margin-bottom: 16px;
}
.seo-text strong { color: #1a1a2e; }
.seo-text ul, .seo-text ol {
    margin: 12px 0 20px 24px; font-size: 0.95rem; color: #475569; line-height: 1.85;
}
.seo-text li { margin-bottom: 8px; }
.seo-text blockquote {
    margin: 24px 0; padding: 20px 24px; border-left: 4px solid #6366f1;
    background: #f8fafc; border-radius: 0 8px 8px 0;
    font-size: 0.95rem; color: #475569; font-style: italic;
}
.seo-text a { color: #6366f1; font-weight: 600; text-decoration: none; }
.seo-text a:hover { text-decoration: underline; }
.seo-text hr {
    border: none; height: 1px; background: #e2e8f0; margin: 32px 0;
}
.seo-text table {
    width: 100%; border-collapse: collapse; margin: 20px 0;
    font-size: 0.9rem;
}
.seo-text th {
    background: #f8fafc; padding: 12px 16px; text-align: left;
    font-weight: 700; color: #1a1a2e; border-bottom: 2px solid #e2e8f0;
}
.seo-text td {
    padding: 10px 16px; border-bottom: 1px solid #f1f5f9; color: #475569;
}
.seo-text tr:hover td { background: #faf9ff; }

.seo-text .btn {
    display: inline-flex; align-items: center; justify-content: center;
    margin: 4px;
}
.seo-text .btn-primary { background: #6366f1; color: #fff; border-color: #6366f1; }
.seo-text .btn-outline { background: transparent; color: #6366f1; border-color: #6366f1; }

/* ===== SEO CONTENT ===== */
.seo-content { padding: 80px 0; background: #f8fafc; border-top: 1px solid #e2e8f0; }
.seo-content > .container > h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; color: #0f172a; text-align: center; }
.seo-content > .container > .section-sub { margin-bottom: 40px; }
.seo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.seo-card {
    padding: 28px; border-radius: 14px; background: #fff;
    border: 1px solid #e2e8f0;
}
.seo-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.seo-card p { font-size: 0.88rem; color: #64748b; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { padding: 32px 0; border-top: 1px solid #e2e8f0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #6b7280; }
.footer-center { display: flex; gap: 20px; }
.footer-center a { color: #6b7280; font-size: 0.85rem; transition: color 0.2s; }
.footer-center a:hover { color: #6366f1; }
.footer-right { display: flex; gap: 20px; }
.footer-right a { color: #6b7280; font-size: 0.85rem; transition: color 0.2s; }
.footer-right a:hover { color: #6366f1; }

/* ===== PACK CARDS ===== */
.pack-cards { display: flex; gap: 10px; }
.pack-card {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 18px 8px; border: 2px solid #e2e8f0; border-radius: 12px;
    cursor: pointer; transition: all 0.2s; background: #fff; text-align: center;
}
.pack-card:hover { border-color: #c7d2fe; background: #faf9ff; }
.pack-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.pack-count { font-size: 1.4rem; font-weight: 800; color: #1a1a2e; display: block; }
.pack-price { font-size: 0.85rem; color: #6b7280; margin-top: 2px; }
.pack-card.selected { border-color: #6366f1; background: #eef2ff; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.pack-card.selected .pack-count { color: #4338ca; }
.pack-card.selected .pack-price { color: #6366f1; }

/* ===== FORM EXTRAS ===== */
.required { color: #dc2626; }
.optional-tag { font-weight: 400; color: #94a3b8; font-size: 0.82rem; }
.form-optional { margin-bottom: 20px; border: none; padding: 0; }
.form-optional summary {
    cursor: pointer; font-size: 0.88rem; font-weight: 600; color: #6366f1;
    padding: 12px 0; list-style: none;
}
.form-optional summary::before { content: '+ '; }
.form-optional[open] summary::before { content: '- '; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%); }
.testimonials h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    padding: 32px; border-radius: 16px; background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 16px; left: 24px;
    font-size: 3rem; color: #c7d2fe; font-family: Georgia, serif; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(99,102,241,0.1); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: #475569; line-height: 1.75; margin-bottom: 20px; padding-top: 12px; }
.testimonial-author { border-top: 1px solid #f1f5f9; padding-top: 16px; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: #1a1a2e; }
.testimonial-author span { font-size: 0.8rem; color: #6b7280; }

/* ===== FAQ GRID ===== */
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.faq-card {
    padding: 28px 24px; border-radius: 14px; background: #fff;
    border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s;
}
.faq-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.faq-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.faq-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; color: #1a1a2e; }
.faq-card p { font-size: 0.85rem; color: #64748b; line-height: 1.6; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: #fff; }
.contact-box {
    display: flex; gap: 40px; max-width: 800px; margin: 0 auto;
    background: #f8fafc; border-radius: 16px; border: 1px solid #e2e8f0;
    padding: 40px;
}
.contact-side { flex: 0 0 200px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.contact-point { display: flex; align-items: center; gap: 10px; }
.contact-point span { font-size: 0.88rem; font-weight: 600; color: #374151; }
.contact-form { flex: 1; }
.contact-success { text-align: center; padding: 40px 20px; max-width: 520px; margin: 0 auto; }

/* ===== PAYMENT CARDS ===== */
.pay-cards { display: flex; gap: 12px; }
.pay-card {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    padding: 24px 16px; border: 2px solid #e2e8f0; border-radius: 12px;
    cursor: pointer; transition: all 0.2s; background: #fff; text-align: center;
}
.pay-card:hover { border-color: #c7d2fe; background: #faf9ff; }
.pay-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.pay-card-text { display: flex; flex-direction: column; align-items: center; }
.pay-card-text strong { font-size: 0.95rem; color: #1a1a2e; }
.pay-card-text span { font-size: 0.78rem; color: #94a3b8; margin-top: 2px; }
.pay-card.selected { border-color: #6366f1; background: #eef2ff; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.pay-card.selected .pay-card-text strong { color: #4338ca; }

.checkout-box {
    margin-top: 20px; padding: 24px; border-radius: 12px;
    background: #fff; border: 2px solid #e2e8f0; text-align: center;
}
.checkout-header {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-bottom: 16px;
}
.checkout-header span { font-size: 0.85rem; font-weight: 600; color: #10b981; }
.checkout-logos {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 20px;
}
.checkout-logos img { border-radius: 50%; }
.checkout-logos span {
    width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700; color: #94a3b8;
}
.checkout-note { font-size: 0.78rem; color: #94a3b8; margin-top: 10px; }
.pay-help-details { text-align: center; margin-top: 10px; }
.pay-help-details summary { cursor: pointer; font-size: 0.82rem; color: #6366f1; font-weight: 600; list-style: none; }
.pay-help-details summary:hover { text-decoration: underline; }
.pay-tuto {
    margin-top: 16px; padding: 24px; border-radius: 12px; text-align: left;
    background: #f8fafc; border: 1px solid #e2e8f0;
}
.pay-tuto-intro { font-size: 0.88rem; color: #374151; margin-bottom: 20px; line-height: 1.6; }
.pay-tuto-step { display: flex; gap: 14px; margin-bottom: 18px; }
.pay-tuto-step:last-of-type { margin-bottom: 0; }
.pay-tuto-num {
    width: 34px; height: 34px; min-width: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem; margin-top: 2px;
}
.pay-tuto-step strong { font-size: 0.88rem; color: #1a1a2e; display: block; margin-bottom: 4px; }
.pay-tuto-step p { font-size: 0.82rem; color: #64748b; line-height: 1.6; margin: 0; }
.pay-tuto-footer {
    margin-top: 18px; padding-top: 14px; border-top: 1px solid #e2e8f0;
    font-size: 0.82rem; color: #64748b;
}
.pay-tuto-footer a { color: #6366f1; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .extras-grid { grid-template-columns: repeat(2, 1fr); }
    .examples-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .nav.open {
        display: flex; flex-direction: column; position: absolute;
        top: 64px; left: 0; right: 0; background: #fff;
        padding: 20px 24px; gap: 16px; border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav.open a { padding: 12px 0; min-height: 48px; display: flex; align-items: center; font-size: 1rem; }
    .nav-toggle { display: block; min-width: 48px; min-height: 48px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .steps { grid-template-columns: 1fr; }
    .extras-grid { grid-template-columns: 1fr; }
    .examples-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .hero-stats { gap: 32px; }
    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
    .order-form { padding: 24px; }
    .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
    .btn-lg { min-height: 52px; font-size: 1rem; }
    .form-group input, .form-group select, .form-group textarea { min-height: 48px; font-size: 16px; }
    .payment-option { min-height: 52px; }
    .faq-item summary { min-height: 48px; font-size: 1rem; }
    .hero { padding: 100px 0 60px; }
    .compare, .examples, .how, .pricing, .faq, .order, .contact { padding: 60px 0; }
    .info-cols { flex-direction: column; }
    .pack-cards { flex-wrap: wrap; }
    .pack-card { min-width: calc(50% - 8px); }
    .pay-cards { flex-direction: column; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-box { flex-direction: column; padding: 24px; gap: 24px; }
    .contact-side { flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .seo-grid { grid-template-columns: 1fr; }
    .section-sub { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 1rem; }
    .price-amount { font-size: 2rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; }
}
