/* ========================================
   MONSITERAPIDE V2 - Style Bleu Cyan
   Couleur Accent: #0EA5E9 (Cyan)
   ======================================== */

/* Font loaded via <link> in HTML for performance */

:root {
    /* Couleurs principales - Bleu Cyan */
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --primary-light: #38BDF8;
    --primary-bg: rgba(14, 165, 233, 0.08);
    --primary-bg-strong: rgba(14, 165, 233, 0.12);

    /* Backgrounds */
    --bg-main: #FAFCFF;
    --bg-white: #FFFFFF;
    --bg-section: #F8FAFC;
    --bg-dark: #0F172A;

    /* Texte */
    --dark: #0F172A;
    --text: #334155;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --white: #FFFFFF;

    /* Accent */
    --accent-cyan: #0EA5E9;
    --accent-red: #EF4444;
    --accent-orange: #F97316;
    --accent-green: #10B981;
    --accent-amber: #F59E0B;

    /* Borders */
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: -0.01em;
}

.text-primary { color: var(--primary); }
.text-underline {
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.text-underline::before {
    content: '';
    position: absolute;
    inset: -2px -6px;
    background: var(--primary-bg);
    border-radius: 6px;
    z-index: -1;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.btn-cta {
    flex-direction: column;
    padding: 16px 48px;
    gap: 4px;
}

.btn-cta .btn-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
    opacity: 1;
}

/* ========================================
   TOP BANNER
   ======================================== */
.top-banner-new {
    background: #0BA5E9 !important;
    color: var(--white) !important;
    padding: 10px 0 !important;
    text-align: center;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1001 !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.top-banner-new .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-spacer {
    height: 0;
    display: none;
}

.banner-content-new {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 20px;
    text-align: center;
}

.banner-content-new a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

/* Mobile Sidebar */
.mobile-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.mobile-sidebar.active { display: block; }

.sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--bg-white);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-close {
    background: var(--bg-section);
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--dark);
    border-radius: var(--radius);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
}

.sidebar-link:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.sidebar-cta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: var(--bg-main);
    padding: 40px 0 60px;
    padding-top: 160px; /* Space for fixed banner (40px) + navbar (70px) + extra */
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    contain: layout style paint;
}

/* Hero Background Decorations - visible but subtle */
.hero::before {
    content: '';
    position: absolute;
    top: -400px;
    right: -160px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -60px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Large decorative shapes - visible but subtle */
.hero-shape {
    position: absolute;
    opacity: 0.04;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -15%;
    left: -10%;
    border-radius: 50%;
}

.hero-shape-2 {
    width: 300px;
    height: 600px;
    background: var(--primary-light);
    top: 10%;
    right: -5%;
    border-radius: 0 0 300px 300px;
}

.hero-shape-3 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -20%;
    right: 20%;
    border-radius: 50% 50% 0 50%;
}

.hero-shape-4 {
    width: 250px;
    height: 250px;
    background: var(--primary-dark);
    bottom: 10%;
    left: 5%;
    border-radius: 50% 0 50% 50%;
}

.hero-shape-5 {
    width: 150px;
    height: 300px;
    background: var(--primary-light);
    top: 30%;
    left: 40%;
    border-radius: 150px 150px 0 0;
    opacity: 0.03;
}

/* Grid pattern overlay - hidden */
.hero-grid {
    display: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
    text-align: left;
}

/* Mobile portfolio stack - hidden on desktop */
.mobile-portfolio-stack {
    display: none;
}

.hero-content h1,
.hero-content .hero-subtitle,
.hero-content .hero-rating {
    text-align: left;
}

/* Rating badge */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-avatars {
    display: flex;
}

.hero-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--bg-main);
    margin-left: -12px;
    object-fit: cover;
}

.hero-avatars img:first-child { margin-left: 0; }

.hero-stars {
    color: var(--accent-amber);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Hero reviews badge */
.hero-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 10px 20px 10px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.hero-reviews-badge .hero-avatars {
    display: flex;
}

.hero-reviews-badge .hero-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    margin-left: -10px;
    object-fit: cover;
}

.hero-reviews-badge .hero-avatars img:first-child {
    margin-left: 0;
}

.hero-reviews-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-reviews-stars {
    color: var(--accent-amber);
    font-size: 0.85rem;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-reviews-text {
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.hero h1 .text-primary {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Hero features list */
.hero-features {
    margin-bottom: 28px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.hero-feature svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-feature strong {
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.hero-visual wistia-player {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-video-banner {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-video-card {
    position: relative;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
}

.hero-video-thumbnail {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-play-button svg {
    color: var(--white);
    margin-left: 4px;
}

/* Annotations on video */
.hero-annotations {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.annotation {
    background: var(--bg-white);
    padding: 10px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 0.85rem;
}

.annotation-arrow {
    color: var(--accent-red);
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer-section {
    background: var(--bg-main);
    padding: 60px 0;
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Portfolio showcase - sticky while scrolling */
.portfolio-showcase {
    position: sticky;
    top: 120px;
    align-self: start;
}

.portfolio-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Limit the offer section so sticky stops at the right place */
.offer-section .offer-wrapper {
    /* The sticky element will stop when it reaches the bottom of this container */
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Testimonial overlays */
.testimonial-overlay {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    max-width: 280px;
    backdrop-filter: blur(8px);
}

.testimonial-overlay-1 {
    top: 120px;
    left: 20px;
    z-index: 10;
}

.testimonial-overlay-2 {
    top: 380px;
    left: 60px;
    z-index: 10;
}

.testimonial-overlay-3 {
    top: 560px;
    left: 0;
    z-index: 10;
}

.testimonial-stars {
    color: var(--accent-amber);
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial-text strong {
    font-weight: 700;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.testimonial-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Offer Card */
.offer-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.1);
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent-green));
}

.offer-card-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-card-column .offer-card {
    width: 100%;
}

.offer-hero-image {
    position: relative;
    margin-bottom: -12px;
    text-align: center;
    pointer-events: none;
}
.offer-hero-image img {
    width: 85%;
    max-width: 440px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.offer-card-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
    color: var(--white);
    padding: 28px 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
}

.offer-card-header h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin: 0;
    position: relative;
    letter-spacing: 0.02em;
}

.offer-card-body {
    padding: 32px;
}

.offer-intro {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.05rem;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(16, 185, 129, 0.08) 100%);
    padding: 16px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.offer-intro strong {
    font-weight: 800;
    color: var(--primary);
}

.offer-section-title {
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 14px 20px;
    border-radius: var(--radius);
    letter-spacing: 0.01em;
}

.offer-features {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    font-size: 0.92rem;
    line-height: 1.55;
    background: var(--bg-section);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.offer-feature:hover {
    background: var(--primary-bg);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(4px);
}

.offer-feature svg {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-feature strong {
    font-weight: 700;
    color: var(--dark);
}

.offer-feature u {
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
}

.offer-bonus-title {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 32px;
    padding: 0;
}

.offer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 28px 0;
}

.offer-cta {
    text-align: center;
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(56, 189, 248, 0.08) 100%);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(14, 165, 233, 0.3);
}

.offer-cta-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dark);
}

.offer-cta-title .text-primary {
    color: var(--accent-red);
    position: relative;
}

.offer-cta-subtitle {
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
}

.offer-cta .btn {
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.process-grid {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.process-card-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.process-card {
    flex: 1;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-section) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    transform: translateY(-4px);
}

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

.process-step {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
}

.process-icon svg {
    width: 28px;
    height: 28px;
}

.process-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.process-desc strong {
    color: var(--text-light);
    font-weight: 600;
}

.process-arrow {
    flex-shrink: 0;
    color: var(--primary);
    opacity: 0.5;
    display: flex;
    align-items: center;
}

.process-arrow svg {
    width: 24px;
    height: 24px;
}

.process-cta {
    text-align: center;
    margin-top: 48px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--bg-main);
    padding: 60px 0;
}

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

.faq-item {
    background: var(--bg-section);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    font-family: inherit;
}

.faq-question svg {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 40px 0 24px;
}

.footer-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand-new .logo-img-footer {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand-new p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-new h3,
.footer-services h3,
.footer-contact-new h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links-new a,
.footer-services a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 5px 0;
    transition: color 0.2s;
}

.footer-links-new a:hover,
.footer-services a:hover {
    color: var(--primary-light);
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-bottom-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ========================================
   WHATSAPP WIDGET
   ======================================== */
.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.wa-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.wa-btn:hover {
    transform: scale(1.1);
}

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

.wa-btn-notif {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: var(--accent-red);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.wa-popup {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 340px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
}

.wa-popup.active { display: block; }

.wa-popup-header {
    background: #25D366;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-popup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.wa-popup-info { flex: 1; }

.wa-popup-name {
    display: block;
    color: var(--white);
    font-weight: 600;
}

.wa-popup-online {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.wa-popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
    border-radius: var(--radius);
}

.wa-popup-body {
    padding: 20px;
    background: #E5DDD5;
}

.wa-popup-message {
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    max-width: 85%;
    font-size: 0.9rem;
}

.wa-popup-footer {
    padding: 16px;
    background: var(--bg-white);
}

.wa-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    resize: none;
    font-family: inherit;
    margin-bottom: 12px;
}

.wa-popup-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content { max-width: 100%; }
    .hero-rating { justify-content: center; }
    .hero-features { text-align: left; max-width: 500px; margin: 0 auto 28px; }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .offer-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase {
        display: none;
    }

    .process-grid {
        flex-wrap: wrap;
    }

    .process-card {
        flex: 1 1 calc(50% - 40px);
        min-width: 250px;
    }

    .process-arrow:nth-of-type(2) {
        display: none;
    }

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

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .nav-center { display: none; }
    .hamburger-btn { display: flex; }

    /* Smaller buttons on mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .btn-cta {
        padding: 12px 24px;
    }

    .btn-cta .btn-subtitle {
        font-size: 0.7rem;
    }

    /* Hide the CTA button in navbar on mobile */
    .nav-right .btn {
        display: none;
    }

    .navbar {
        top: 48px;
        padding-top: 8px;
    }

    .top-banner-new {
        display: flex;
        padding: 12px 0;
        min-height: 48px;
        height: auto !important;
    }

    .banner-content-new {
        font-size: 0.85rem;
        padding: 0 16px;
        line-height: 1.4;
    }

    .header-spacer { display: none; }

    .hero {
        padding: 30px 0 40px;
        padding-top: 150px; /* Space for fixed banner + navbar */
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .hero-visual {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Mobile portfolio stack in offer section */
    .mobile-portfolio-stack {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .mobile-portfolio-item {
        border-radius: 12px;
        overflow: hidden;
    }

    .mobile-portfolio-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

    /* Hide WhatsApp widget on mobile */
    .wa-widget {
        display: none;
    }

    /* Hide arrows between process steps on mobile */
    .process-arrow {
        display: none;
    }

    .process-grid {
        flex-direction: column;
        gap: 24px;
    }

    .process-card {
        flex: 1 1 100%;
    }

    .footer-content-new {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom-new {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .wa-popup {
        width: calc(100vw - 48px);
        right: -12px;
    }

    /* Offer CTA box - smaller on mobile */
    .offer-cta {
        padding: 20px 16px;
        margin-top: 24px;
    }

    .offer-cta-title {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .offer-cta-subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .offer-card-body {
        padding: 24px 16px;
    }

    .offer-card-header {
        padding: 20px 16px 20px;
    }

    .offer-card-header h2 {
        font-size: 1.3rem;
    }
}
