:root {
    --primary: #0031cc;
    --primary-dark: #0025a0;
    --accent: #fdc003;
    --accent-hover: #fccf05;
    --dark: #0f172a;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px -10px rgba(0, 49, 204, 0.12);
    --shadow-lg: 0 25px 50px -15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
}

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

img {
    max-width: 100%;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER ========== */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.95rem;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

nav a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--gray);
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
}

.lang-switch .active {
    color: var(--primary);
}

.lang-switch .sep {
    color: var(--gray-light);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0.7rem 1.35rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    padding: 0.7rem 1.35rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 0.7rem 1.35rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-lg {
    padding: 0.95rem 1.75rem;
    font-size: 1rem;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(145deg, #eef2ff 0%, #ffffff 55%, #fffbeb 100%);
    padding: 4.5rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.badge-hero {
    display: inline-block;
    background: rgba(0, 49, 204, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
    margin-top: 0.35rem;
}

.hero-content > p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.75rem;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-item strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
}

.proof-item span {
    font-size: 0.8rem;
    color: var(--gray);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeUp 0.6s ease both;
}

.visual-card.delay-1 { animation-delay: 0.15s; }
.visual-card.delay-2 { animation-delay: 0.3s; }

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

.visual-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 49, 204, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.visual-icon.yellow {
    background: rgba(253, 192, 3, 0.2);
    color: #b8860b;
}

.visual-icon.green {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.visual-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.visual-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
    padding: 3.5rem 1.5rem 3rem;
    text-align: center;
}

.page-hero.dark {
    background: var(--dark);
    color: var(--white);
}

.page-hero.dark .section-label.light {
    background: rgba(253, 192, 3, 0.15);
    color: var(--accent);
}

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
}

.page-hero.dark p {
    color: var(--gray-light);
}

/* ========== SECTIONS ========== */
.section {
    padding: 4.5rem 0;
}

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

.section-label {
    display: inline-block;
    background: rgba(0, 49, 204, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
}

/* ========== PROBLEMS ========== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.problem-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.25s;
    display: block;
}

.problem-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 49, 204, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 1.1rem;
}

.card-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ========== FREINS DETAIL ========== */
.frein-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.frein-block:last-child {
    border-bottom: none;
}

.frein-block.reverse {
    direction: rtl;
}

.frein-block.reverse > * {
    direction: ltr;
}

.frein-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 49, 204, 0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.frein-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.frein-desc {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.frein-symptoms h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.frein-symptoms ul {
    list-style: none;
    margin-bottom: 1.75rem;
}

.frein-symptoms li {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.frein-symptoms li i {
    font-size: 0.4rem;
    color: var(--primary);
}

.solution-box {
    background: #f0f4ff;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(0, 49, 204, 0.12);
}

.solution-box h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.solution-box p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.solution-price {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0.85rem 0 1rem;
}

.solution-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
}

.visual-illustration {
    width: 100%;
    aspect-ratio: 1;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
}

.visual-illustration span {
    font-size: 1rem;
    font-weight: 700;
}

.visual-illustration.blue {
    background: linear-gradient(145deg, #dbe4ff, #eef2ff);
    color: var(--primary);
}

.visual-illustration.yellow {
    background: linear-gradient(145deg, #fef3c7, #fffbeb);
    color: #b8860b;
}

.visual-illustration.purple {
    background: linear-gradient(145deg, #ede9fe, #f5f3ff);
    color: #7c3aed;
}

.visual-illustration.green {
    background: linear-gradient(145deg, #d1fae5, #ecfdf5);
    color: #059669;
}

/* ========== WHY ========== */
.why-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.why-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.why-list {
    list-style: none;
    margin-bottom: 2rem;
}

.why-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.why-list li i {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-list strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.why-list span {
    font-size: 0.9rem;
    color: var(--gray);
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.big-number {
    background: var(--primary);
    color: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.big-number .number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.big-number .label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-card strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
}

.stat-card span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ========== PACKS ========== */
.pack-detail {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.pack-detail.highlight {
    border-color: var(--accent);
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 40%);
}

.pack-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pack-badge {
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pack-badge.popular {
    background: var(--accent);
    color: var(--dark);
}

.pack-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pack-main {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
}

.pack-info h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.pack-tagline {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.pack-objectif {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary);
}

.pack-objectif h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
}

.pack-objectif p {
    font-size: 0.95rem;
}

.pack-info > h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pack-features {
    list-style: none;
    margin-bottom: 1.75rem;
}

.pack-features li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.pack-features li > i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pack-features strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

.pack-features span {
    font-size: 0.88rem;
    color: var(--gray);
}

.pack-price-block {
    margin-bottom: 1.25rem;
}

.pack-price-block .price {
    font-size: 1.85rem;
    font-weight: 800;
}

.pack-price-block .price-sub {
    font-size: 0.9rem;
    color: var(--gray);
}

.pack-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pack-illustration {
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 3rem;
}

.pack-illustration span {
    font-size: 0.95rem;
    font-weight: 700;
}

.pack-illustration.blue {
    background: linear-gradient(145deg, #dbe4ff, #eef2ff);
    color: var(--primary);
}

.pack-illustration.yellow {
    background: linear-gradient(145deg, #fef3c7, #fffbeb);
    color: #b8860b;
}

.pack-illustration.purple {
    background: linear-gradient(145deg, #ede9fe, #f5f3ff);
    color: #7c3aed;
}

.pack-for {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1.15rem;
    border: 1px solid var(--border);
}

.pack-for h5 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.pack-for p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========== STEPS ========== */
.how-section {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.step-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.75rem 1.35rem;
    border: 1px solid var(--border);
    text-align: center;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--gray);
}

/* ========== CTA ========== */
.cta-section {
    padding: 3rem 0 4.5rem;
}

.cta-box {
    background: var(--dark);
    color: var(--white);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-box h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.cta-box p {
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== DIAGNOSTIC ========== */
.diagnostic-section {
    padding-top: 2rem;
}

.diagnostic-box {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-width: 720px;
    margin: 0 auto;
}

.diagnostic-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.diag-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.98rem;
}

.diag-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.diag-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
    font-family: inherit;
}

.diag-option:hover {
    border-color: var(--primary);
    background: #f0f4ff;
}

.diag-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.diag-icon.blue { background: rgba(0,49,204,0.1); color: var(--primary); }
.diag-icon.yellow { background: rgba(253,192,3,0.2); color: #b8860b; }
.diag-icon.purple { background: rgba(124,58,237,0.1); color: #7c3aed; }

.diag-text {
    flex: 1;
}

.diag-text strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

.diag-text span {
    font-size: 0.85rem;
    color: var(--gray);
}

.diag-option > .fa-chevron-right {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.diag-result {
    display: none;
    margin-top: 2rem;
    background: #f0f4ff;
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid rgba(0,49,204,0.15);
    animation: fadeUp 0.4s ease;
}

.diag-result.visible {
    display: block;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.result-header i {
    color: var(--accent);
    font-size: 1.35rem;
}

.result-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.result-pack {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.result-reason {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.15rem;
}

.result-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-details .detail {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.help-box {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.help-box h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.help-box p {
    color: var(--gray);
    margin-bottom: 1.25rem;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 1.75rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    transition: all 0.2s;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-card.whatsapp:hover {
    border-color: #25d366;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,49,204,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-icon {
    background: rgba(37,211,102,0.12);
    color: #25d366;
}

.contact-card strong {
    display: block;
    font-size: 0.98rem;
}

.contact-card span {
    font-size: 0.82rem;
    color: var(--gray);
}

.address-box {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    border: 1px solid var(--border);
}

.address-box h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.address-box p {
    font-size: 0.95rem;
    color: var(--gray);
}

.contact-form-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.contact-form-box > p {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.mentions-section {
    padding-top: 0;
}

.mentions-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mentions-section p {
    font-size: 0.88rem;
    color: var(--gray);
    max-width: 700px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3.5rem 1.5rem 1.75rem;
}

.footer-content {
    max-width: 1120px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 2.5rem;
}

.footer-logo {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: var(--gray-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.55rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--gray);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.25rem 3.5rem;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

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

    .why-grid,
    .frein-block,
    .frein-block.reverse,
    .pack-main,
    .contact-grid {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.55rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .btn-primary,
    .result-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ========== PROOF BAR ========== */
.proof-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.proof-bar-inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-bar .proof-item {
    text-align: center;
}

.proof-bar .proof-item strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
}

.proof-bar .proof-item span {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ========== SERVICES GRID ========== */
.services-teaser {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.services-grid.big {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s;
    display: block;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-card.large {
    display: grid;
    grid-template-columns: 120px 1fr;
}

.service-visual {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.service-visual.tall {
    height: 100%;
    min-height: 140px;
    font-size: 2.8rem;
}

.service-visual.blue { background: linear-gradient(145deg, #dbe4ff, #eef2ff); color: #0031cc; }
.service-visual.indigo { background: linear-gradient(145deg, #e0e7ff, #eef2ff); color: #4338ca; }
.service-visual.pink { background: linear-gradient(145deg, #fce7f3, #fdf2f8); color: #db2777; }
.service-visual.teal { background: linear-gradient(145deg, #ccfbf1, #f0fdfa); color: #0d9488; }
.service-visual.purple { background: linear-gradient(145deg, #ede9fe, #f5f3ff); color: #7c3aed; }
.service-visual.yellow { background: linear-gradient(145deg, #fef3c7, #fffbeb); color: #b8860b; }
.service-visual.dark { background: var(--dark); color: var(--accent); }

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 1rem 1.15rem 0.25rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray);
    padding: 0 1.15rem 1.15rem;
}

.service-body {
    padding: 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-body h3 {
    padding: 0;
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
}

.service-body p {
    padding: 0;
    margin-bottom: 0.75rem;
}

/* ========== PRODUCT PAGES ========== */
.product-hero {
    background: linear-gradient(145deg, #eef2ff 0%, #ffffff 60%);
    padding: 3.5rem 1.5rem;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.product-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.product-tagline {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.75rem;
    max-width: 420px;
}

.product-hero-visual {
    aspect-ratio: 1;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.product-hero-visual.blue { background: linear-gradient(145deg, #dbe4ff, #eef2ff); color: #0031cc; }
.product-hero-visual.indigo { background: linear-gradient(145deg, #e0e7ff, #eef2ff); color: #4338ca; }
.product-hero-visual.pink { background: linear-gradient(145deg, #fce7f3, #fdf2f8); color: #db2777; }
.product-hero-visual.teal { background: linear-gradient(145deg, #ccfbf1, #f0fdfa); color: #0d9488; }
.product-hero-visual.purple { background: linear-gradient(145deg, #ede9fe, #f5f3ff); color: #7c3aed; }

.product-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.point-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
}

.point-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.point-icon.blue { background: rgba(0,49,204,0.1); color: #0031cc; }
.point-icon.indigo { background: rgba(67,56,202,0.1); color: #4338ca; }
.point-icon.pink { background: rgba(219,39,119,0.1); color: #db2777; }
.point-icon.teal { background: rgba(13,148,136,0.1); color: #0d9488; }
.point-icon.purple { background: rgba(124,58,237,0.1); color: #7c3aed; }

.point-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.point-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.alt-bg {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.for-who-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    text-align: center;
}

.for-who-card i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.85rem;
}

.for-who-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.for-who-card p {
    font-size: 0.88rem;
    color: var(--gray);
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 968px) {
    .services-grid,
    .services-grid.big {
        grid-template-columns: 1fr;
    }
    .service-card.large {
        grid-template-columns: 1fr;
    }
    .service-visual.tall {
        min-height: 100px;
    }
    .product-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .product-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    .product-points,
    .for-who-grid {
        grid-template-columns: 1fr;
    }
    .proof-bar-inner {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .product-hero-text h1 {
        font-size: 1.85rem;
    }
}
