:root {
    --pulse-red: #E30613;
    --pulse-gold: #D4AB29;
    --pulse-white: #FFFFFF;
    --pulse-black: #0F0F0F;
    --pulse-gray-dark: #1A1A1A;
    --pulse-gray-light: #F5F5F7;
    --glass-background: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --border-radius: 20px;
}

section {
    scroll-margin-top: 140px;
    /* Global header compensation */
}

.demo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 0.5rem;
    scroll-margin-top: 80px;
}

.demo-section .section-header {
    margin-bottom: 0.3rem;
}

.demo-section .section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.2rem;
}

.demo-section .subtitle {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.demo-card {
    background: var(--pulse-white);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.demo-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0.6rem;
}

.demo-stepper-step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    background: var(--pulse-white);
    transition: all 0.3s ease;
}

.demo-stepper-step.demo-stepper-active {
    border-color: var(--pulse-red);
    background: var(--pulse-red);
    color: var(--pulse-white);
}

.demo-stepper-step.demo-stepper-done {
    border-color: var(--pulse-gold);
    background: var(--pulse-gold);
    color: var(--pulse-white);
}

.demo-stepper-line {
    width: 40px;
    height: 2px;
    background: #ddd;
}

.demo-state {
    display: none;
}

.demo-state.demo-state-active {
    display: block;
}

.demo-state-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.demo-state-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.demo-input-group {
    position: relative;
    margin-bottom: 0.8rem;
}

.demo-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #999;
}

.demo-url-field {
    width: 100%;
    padding: 0.7rem 0.7rem 0.7rem 2.5rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.demo-url-field:focus {
    outline: none;
    border-color: var(--pulse-red);
}

.demo-launch-btn {
    width: 100%;
}

.demo-progress {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.demo-progress-bar {
    height: 100%;
    background: var(--pulse-red);
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s ease;
}

.demo-step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: #999;
    transition: color 0.3s;
}

.demo-step-item.active {
    color: var(--pulse-black);
}

.demo-step-item.done {
    color: var(--pulse-gold);
}

.demo-step-check {
    display: none;
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.demo-step-item.done .demo-step-check {
    display: block;
    color: var(--pulse-gold);
}

.demo-result-content {
    text-align: center;
    padding: 1rem 0;
}

.demo-result-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.demo-result-note {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--pulse-black);
    background: var(--pulse-white) url('Asset/Fond de soft.jpeg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    min-height: 100svh;
    padding-bottom: 60px;
}

/* Base Body Overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
    z-index: -1;
}

/* Layout Utilities */
.glass-nav .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
    width: 100%;
}

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

/* Section overrides for depth */
.section-dark {
    background-color: var(--pulse-black);
    color: var(--pulse-white);
    background-image: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 140px;
    /* Compensation for the sticky header */
    padding-bottom: 15rem;
    /* Significantly elongated as requested */
}

.section-footer {
    margin-top: 4rem;
    width: 100%;
}

.section-dark::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 171, 41, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Bento Grid Enhanced Depth */
.bento-item {
    background: var(--glass-background);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.bento-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(212, 171, 41, 0.3);
    border-color: rgba(212, 171, 41, 0.4);
}

/* Hero Section Lighting */
/* Hero Section Lighting */
/* .hero merged into main definition below */


.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

/* PAS Items Refresh */
.pas-container {
    margin-bottom: 3rem;
    /* Reduced from 5rem */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pas-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    /* Reduced from 3rem 2.5rem */
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pas-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 171, 41, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pas-step {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--pulse-white);
}

.pas-item i {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    /* Reduced from 4rem */
    line-height: 1.1;
}

.pas-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--pulse-white);
}

.pas-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--pulse-gold);
    position: relative;
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: var(--pulse-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--pulse-gold);
    font-size: 0.9rem;
}

.white-text {
    color: var(--pulse-white);
}

.text-gray-light {
    color: var(--pulse-gray-light);
    opacity: 1 !important;
}

.opacity-70 {
    opacity: 0.7;
}

/* Benefits Section (Now inside dark section) */
.section-dark .benefits-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.section-dark .benefit-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-dark .benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--pulse-gold);
    box-shadow: 0 10px 25px rgba(212, 171, 41, 0.1);
}

.benefit-item i {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 2.2rem;
}

.benefit-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--pulse-white);
    line-height: 1.3;
}

.benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .section-benefits {
        padding-bottom: 4rem;
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-impact {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.highlight-gold {
    color: var(--pulse-gold);
}

.highlight-red {
    color: var(--pulse-red);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    transition: all 0.4s ease;
    max-width: 100vw;
    overflow-x: hidden;
}

.glass-nav .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-container {
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    box-shadow: none;
}

.logo-img {
    height: clamp(60px, 8vh, 120px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--pulse-black);
    font-weight: 700;
    transition: color var(--transition-speed);
}

.nav-links a.btn-primary {
    color: var(--pulse-white) !important;
}

.nav-links a:hover {
    color: var(--pulse-red);
}

.nav-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pulse-black);
    transition: color var(--transition-speed), transform var(--transition-speed);
}

.nav-linkedin i {
    width: 1.3rem;
    height: 1.3rem;
}

.nav-linkedin:hover {
    color: #0A66C2;
    transform: scale(1.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--pulse-red);
    color: var(--pulse-white);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
}

.btn-primary:hover {
    background-color: var(--pulse-gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 171, 41, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--pulse-black);
    color: var(--pulse-black);
}

.btn-secondary:hover {
    background-color: var(--pulse-black);
    color: var(--pulse-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 3px;
    border-radius: 100px;
    margin: 0 0.5rem;
    border: 1px solid var(--pulse-black);
    flex-shrink: 0;
    min-width: 60px;
}

@media (max-width: 480px) {
    .lang-switcher {
        margin: 0 0.5rem;
        gap: 2px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
    background: var(--pulse-black);
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Mobile Dropdown Logic */
@media (max-width: 768px) {
    .lang-switcher {
        position: relative;
        flex-direction: column;
        height: 36px;
        overflow: hidden;
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: white;
        border: 1px solid var(--pulse-black);
    }

    .lang-switcher.open {
        height: auto;
        border-radius: 12px;
        padding: 5px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .lang-btn {
        width: 100%;
        text-align: center;
        padding: 8px 12px;
        display: none;
    }

    .lang-btn.active,
    .lang-switcher.open .lang-btn {
        display: block;
    }

    .lang-switcher::after {
        content: '▼';
        font-size: 8px;
        position: absolute;
        right: 8px;
        top: 13px;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .lang-switcher.open::after {
        transform: rotate(180deg);
    }
}

/* Legal Disclaimer Box */
.legal-disclaimer {
    background: rgba(212, 171, 41, 0.1);
    border: 1px solid rgba(212, 171, 41, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
    display: none;
    /* Hidden by default in FR */
}

html[lang="en"] .legal-disclaimer,
html[lang="es"] .legal-disclaimer {
    display: block;
}

.section-dark .lang-switcher {
    background: rgba(255, 255, 255, 0.1);
}

.section-dark .lang-btn {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .lang-btn.active {
    background: white;
    color: var(--pulse-red);
}

/* Sections */
section {
    padding: clamp(4rem, 10vh, 10rem) 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section - Viewport aware */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    scroll-margin-top: 160px;
}

@media (max-width: 1366px) {
    .hero {
        padding-top: 10rem;
    }

    .text-impact {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    /* Compact PAS & Bento for Laptops */
    .pas-item {
        padding: 1.5rem;
    }

    .pas-item i {
        width: 2rem;
        height: 2rem;
        margin-bottom: 1rem;
    }

    .bento-grid {
        gap: 1rem;
        margin-top: 2rem;
    }

    .bento-item {
        padding: 1.5rem;
    }

    .bento-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .bento-large {
        padding: 2rem;
    }
}

@media (max-height: 800px) {
    .hero {
        padding-top: 10rem;
        min-height: auto;
        padding-bottom: 6rem;
    }
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* PAS Items */
.pas-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-speed);
}

.pas-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.pas-item i {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
}

.icon-red {
    color: var(--pulse-red);
}

.icon-gold {
    color: var(--pulse-gold);
}

.icon-white {
    color: var(--pulse-white);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    /* Flexible height for better content fit */
    gap: 1.25rem;
    margin-top: 3rem;
}

.bento-item {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(227, 6, 19, 0.1);
    border-color: rgba(227, 6, 19, 0.2);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 3rem;
}

.bento-medium {
    grid-column: span 2;
}

.bento-small {
    grid-column: span 1;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pulse-black);
    letter-spacing: -0.01em;
}

.bento-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
}

.bento-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    opacity: 0.04;
    color: var(--pulse-red);
    transform: rotate(-10deg);
    transition: all 0.6s ease;
}

.bento-item:hover .bento-icon {
    opacity: 0.1;
    transform: scale(1.1) rotate(0deg);
}

/* ── Hero Split Layout — 3 columns ── */
.hero-split {
    min-height: calc(100svh - 70px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 4rem);
    padding-top: 6.5rem;
    padding-bottom: 1rem;
    scroll-margin-top: 160px;
    max-width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
}

.hero-content {
    flex: 0 1 55%;
    text-align: left;
}

.hero-split .text-impact {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.hero-split .subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    margin-bottom: 1.2rem;
}

.hero-split .hero-actions {
    gap: 0.8rem;
}

.hero-content .subtitle {
    margin: 0 0 0;
    text-align: left;
}

.hero-content .hero-actions {
    justify-content: flex-start;
}

.hero-visual {
    flex: 0 1 40%;
    display: flex;
    min-width: 0;
    overflow: hidden;
    justify-content: center;
}

.hero-visual .hero-mockup {
    transform: perspective(1200px) rotateY(-4deg);
}

.hero-mockup {
    background: var(--pulse-white);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    max-height: 400px;
    animation: heroFloat 6s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.hero-mockup:hover {
    transform: perspective(1200px) rotateY(0deg) scale(1.02);
}

.hero-mockup-dots {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    background: #f1f1f1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-mockup-dots span:nth-child(1) {
    background: #ff5f56;
}

.hero-mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.hero-mockup-dots span:nth-child(3) {
    background: #27c93f;
}

.hero-screenshot {
    width: 100%;
    display: block;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 171, 41, 0.1);
    border: 1px solid rgba(212, 171, 41, 0.3);
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pulse-gold);
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .hero-split {
        padding-top: 8rem;
        gap: 1.5rem;
    }

    .hero-visual {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-split {
        padding-top: 7rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--pulse-black);
    color: var(--pulse-white);
    padding: 0.5rem 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.stats-disclaimer {
    text-align: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    margin-top: 0.8rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-disclaimer {
        display: none;
    }
}

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

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0;
    text-align: left;
    line-height: 1.2;
}

.stat-value {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

.stat-number {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: var(--pulse-gold);
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 900;
    color: var(--pulse-gold);
}


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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Steps Section ── */
.steps-section {
    background: var(--pulse-white);
    padding: 6rem 0;
}

.steps-section .section-header {
    margin-bottom: 4rem;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-row-reverse {
    flex-direction: row-reverse;
}

.step-text {
    flex: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 171, 41, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--pulse-black);
}

.step-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    max-width: 450px;
}

.step-visual {
    flex: 1;
}

.step-mockup {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.step-screenshot {
    width: 100%;
    display: block;
}

@media (max-width: 992px) {

    .step-row,
    .step-row-reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .step-text {
        text-align: center;
    }

    .step-text p {
        max-width: 100%;
        margin: 0 auto;
    }

    .step-number {
        font-size: 3rem;
    }
}

/* ── Showcase Section ── */
.showcase-section {
    padding-bottom: 6rem;
}

/* ── Demo Section ── */
.demo-section {
    background: linear-gradient(180deg, var(--pulse-gray-light) 0%, var(--pulse-white) 100%);
    padding: 6rem 0;
}

.demo-card {
    max-width: 700px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    min-height: 200px;
    position: relative;
}

/* Demo Stepper */
.demo-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.demo-stepper-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pulse-gray-light);
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.demo-stepper-step.demo-stepper-active {
    background: var(--pulse-red);
    color: white;
}

.demo-stepper-step.demo-stepper-done {
    background: #27c93f;
    color: white;
}

.demo-stepper-line {
    width: 60px;
    height: 3px;
    background: var(--pulse-gray-light);
    transition: background 0.4s ease;
}

.demo-stepper-line.demo-stepper-line-done {
    background: #27c93f;
}

/* Demo State Titles */
.demo-state-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--pulse-black);
}

.demo-state-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.demo-state {
    display: none;
}

.demo-state-active {
    display: block;
}

.demo-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--pulse-gray-light);
    border-radius: 14px;
    padding: 0.75rem 1.2rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    position: relative;
}

.demo-input-row {
    margin-bottom: 1rem;
}

.demo-input-group:focus-within {
    border-color: var(--pulse-red);
}

.demo-input-label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: white;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    pointer-events: none;
}

.demo-launch-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.demo-input-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: #999;
    flex-shrink: 0;
}

.demo-url-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--pulse-black);
    outline: none;
    min-width: 0;
}

.demo-url-field::placeholder {
    color: #999;
}

/* Demo Progress */
.demo-progress {
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.demo-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pulse-red), var(--pulse-gold));
    border-radius: 100px;
    transition: width 0.5s ease;
}

.demo-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.demo-step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.demo-step-item i:first-child {
    width: 1.2rem;
    height: 1.2rem;
    color: #666;
    flex-shrink: 0;
}

.demo-step-item span {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

.demo-step-check {
    width: 1.2rem;
    height: 1.2rem;
    color: #27c93f;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.demo-step-item.demo-step-active {
    opacity: 1;
    background: rgba(227, 6, 19, 0.04);
}

.demo-step-item.demo-step-done {
    opacity: 1;
}

.demo-step-item.demo-step-done .demo-step-check {
    opacity: 1;
}

/* Demo Result */
.demo-result-content {
    text-align: center;
    padding: 1rem 0;
}

.demo-result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.demo-result-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--pulse-black);
}

.demo-result-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-result-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #999;
}

.cta-section {
    padding-bottom: 2rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--pulse-red), #90040B);
    color: var(--pulse-white);
    padding: 6rem 4rem;
    border-radius: 40px;
    box-shadow:
        0 40px 80px rgba(227, 6, 19, 0.3),
        inset 0 0 100px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Asset/Fond de soft.jpeg');
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background-color: var(--pulse-white);
    color: var(--pulse-red);
}

.cta-box .btn-primary:hover {
    background-color: var(--pulse-gold);
    color: var(--pulse-white);
}

/* Browser Mockup & Carousel */
.section-showcase {
    padding-bottom: 8rem;
}

.browser-mockup {
    background: var(--pulse-white);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 3rem auto;
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background-color: #27c93f;
}

.browser-address {
    background: white;
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
    flex-grow: 1;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7.9;
    /* Final fine-tuning for dashboard dimensions */
    overflow: hidden;
    background: #fff;
}

.carousel-track-container {
    height: 100%;
    position: relative;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    display: flex;
}

.carousel-slide {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    flex-shrink: 0;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--pulse-red);
    border-color: var(--pulse-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    background: #fafafa;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.current-indicator {
    background: var(--pulse-red);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .browser-mockup {
        border-radius: 8px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

/* Footer Section Padding */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--pulse-gray-light);
    font-size: 0.9rem;
    color: #888;
}

.footer-links {
    display: flex;
    align-items: center;
}

.footer-links a {
    margin-left: 1.5rem;
    color: #888;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:first-child {
    margin-left: 0;
}

.footer-links a i {
    width: 1.1rem;
    height: 1.1rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-company-logo {
    height: 180px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-company-logo:hover {
    opacity: 1;
}

.footer-left {
    text-align: left;
}

.footer-simple .flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 992px) {

    .grid-3,
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-large {
        grid-column: span 2;
    }

    .bento-medium {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .grid-3,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 8rem;
    }

    .text-impact {
        font-size: 3rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a:not(.btn) {
        display: none;
    }

    .logo-img {
        height: 55px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-item,
    .bento-large,
    .bento-medium {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        padding: 1.5rem;
    }

    .cta-box {
        padding: 2.5rem 1.25rem;
        border-radius: 24px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .section-dark .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-dark .benefit-item {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .lang-switcher {
        height: 32px;
        min-width: 50px;
        margin: 0 0.25rem;
    }

    .lang-btn {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .text-impact {
        font-size: 4rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .logo-img {
        height: 80px;
    }

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

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

    .section-dark .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0 1rem 1rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08),
        0 4px 20px rgba(0, 0, 0, 0.04);
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-banner-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-banner-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-link {
    color: var(--pulse-red);
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.cookie-banner-link:hover {
    color: var(--pulse-gold);
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background-color: var(--pulse-red);
    color: var(--pulse-white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.2);
}

.cookie-btn-accept:hover {
    background-color: var(--pulse-gold);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(212, 171, 41, 0.3);
}

.cookie-btn-refuse {
    background-color: transparent;
    color: var(--pulse-black);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.cookie-btn-refuse:hover {
    border-color: var(--pulse-black);
    background-color: rgba(0, 0, 0, 0.03);
}

.cookie-settings-btn {
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    transition: color var(--transition-speed);
    cursor: pointer;
}

.cookie-settings-btn:hover {
    color: var(--pulse-red);
}

/* Cookie Banner Mobile */
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
        border-radius: 16px;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn-accept,
    .cookie-btn-refuse {
        flex: 1;
        text-align: center;
    }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤992px)
   ══════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-split {
        gap: clamp(1rem, 2vw, 2rem);
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .hero-content {
        flex: 0 1 55%;
    }

    .hero-visual {
        flex: 0 1 40%;
    }

    .hero-mockup {
        max-height: 300px;
    }

    .stats-grid {
        gap: 1rem;
    }

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

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Nav ── */
    .nav-links a:not(.btn) {
        display: none;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .lang-switcher {
        display: none;
    }

    .linkedin-icon {
        display: none;
    }

    /* ── Hero ── */
    .hero-split {
        flex-direction: column;
        padding-top: 5rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: auto;
        gap: 1rem;
    }

    .hero-content {
        flex: 1 1 auto;
        text-align: center;
    }

    .hero-content .subtitle {
        text-align: center;
    }

    .hero-content .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        flex: 1 1 auto;
        width: 100%;
        max-width: 350px;
    }

    .hero-visual .hero-mockup {
        transform: none;
    }

    .hero-mockup {
        max-height: 200px;
    }

    .hero-split .text-impact {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-split .subtitle {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    /* ── Stats Footer Bar ── */
    .stats-bar {
        padding: 0.4rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .stat-item {
        flex-direction: column;
        gap: 0.1rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-suffix {
        font-size: 0.7rem;
    }

    .stat-label {
        font-size: 0.55rem;
        text-align: center;
    }

    .stats-disclaimer {
        display: none;
    }

    /* ── Steps ── */
    .steps-section {
        padding: 3rem 1rem;
    }

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

    /* ── PAS Section ── */
    .section-pas {
        padding: 3rem 1rem;
    }

    .pas-text h2 {
        font-size: 1.5rem;
    }

    /* ── Bento Grid ── */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* ── Showcase / Carousel ── */
    .carousel-viewport {
        max-width: 100%;
    }

    /* ── Demo Section ── */
    .demo-section {
        padding-top: 5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .demo-card {
        padding: 1rem;
        max-width: 100%;
    }

    /* ── CTA ── */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.3rem;
    }

    /* ── Footer ── */
    .footer-simple {
        padding: 1rem;
    }

    .footer-simple .flex-between {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-company-logo {
        max-height: 40px;
    }

    /* ── Generic ── */
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .btn-large {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    body {
        padding-bottom: 50px;
    }
}