@charset "UTF-8";

:root {
    --bg-dark: #070905; /* Deep, almost black green-tinted background */
    --neon-green: #D4FF00; /* Vibrant neon lime */
    --text-main: #FFFFFF;
    --text-muted: #A3A7A0;
    --card-bg: rgba(255, 255, 255, 0.03);
    
    --font-sans: 'Lufga', sans-serif;
    --font-serif: 'Lufga', sans-serif;
    
    --nav-height: 100px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 100px;
}

/* Reset & Scaffolding */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; display: block; }

/* Backgrounds Effects */
.ambient-glow {
    position: fixed;
    top: -20vh;
    left: -10vw;
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle closest-side, rgba(212, 255, 0, 0.12), transparent 100%);
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
}
.vertical-streaks {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(255, 255, 255, 0.01) 80px,
        rgba(255, 255, 255, 0.01) 81px
    );
    z-index: -1;
    pointer-events: none;
}

/* Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
}
.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}
.glass-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.nav-container {
    width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 4vw;
    display: flex; justify-content: space-between; align-items: center;
}
.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex; align-items: center; gap: 4px;
}
.neon-icon {
    display: flex; align-items: center;
    width: 20px; height: 20px;
}
.nav-links {
    display: flex; gap: 2.5rem;
}
.nav-links a {
    font-size: 0.95rem; font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--neon-green); }

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem; font-weight: 500;
    transition: background 0.3s, border-color 0.3s;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--nav-height) + 10vh);
    padding-bottom: 10vh;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4vw;
    align-items: center;
}

/* Hero Content */
.tag-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-muted);
}
.hero-title {
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.hero-title .italic-serif {
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

/* ================================== */
/* Hero Premium WhatsApp CTA          */
/* ================================== */
.hero-cta-group {
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem; margin-top: 2rem;
    width: fit-content;
    position: relative;
    z-index: 10;
}
.btn-hero-wa {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: var(--radius-full);
    padding: 16px 36px;
    font-size: 1.1rem; font-weight: 600; font-family: 'Lufga', sans-serif;
    text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.15), inset 0 0 10px rgba(212, 255, 0, 0.1);
}
.btn-hero-wa::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--neon-green);
    z-index: -1;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-wa:hover::before { transform: scaleX(1); }
.btn-hero-wa:hover {
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.4);
    transform: translateY(-4px) scale(1.02);
}
.wa-btn-icon {
    width: 24px; height: 24px; fill: currentColor;
    transition: transform 0.4s ease;
}
.btn-hero-wa:hover .wa-btn-icon { transform: scale(1.1) rotate(5deg); }

/* Hero Premium PDF Download Button */
.btn-hero-pdf {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 16px 36px;
    font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans);
    text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: premium-glow-pulse 3s infinite alternate ease-in-out;
}

.btn-hero-pdf span {
    position: relative;
    z-index: 2;
}

/* Internal Premium Light Sweep */
.btn-hero-pdf::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    z-index: 1;
    animation: premium-light-sweep 6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
}

/* Idle Pulses */
@keyframes premium-glow-pulse {
    0% { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.02); border-color: rgba(255,255,255,0.15); }
    100% { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 255, 255, 0.15); border-color: rgba(255,255,255,0.3); }
}

@keyframes premium-light-sweep {
    0% { left: -100%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

/* Hover Interaction */
.btn-hero-pdf:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
    color: #FFF;
    animation: none; /* stop idle glow on hover */
}

/* Icon Animation */
.pdf-btn-icon {
    width: 24px; height: 24px; fill: currentColor;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    z-index: 2;
}
.btn-hero-pdf:hover .pdf-btn-icon {
    transform: translateY(3px) scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.glow-pulse-btn::after {
    content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: var(--radius-full);
    border: 1px solid var(--neon-green);
    opacity: 0;
    z-index: -2;
    animation: wa-pulse-ring 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
}

@keyframes wa-pulse-ring {
    0% { transform: scale(0.9); opacity: 0.8; border-width: 2px; }
    50% { transform: scale(1.15); opacity: 0; border-width: 1px; }
    100% { transform: scale(1.15); opacity: 0; }
}

.btn-solid-neon {
    display: inline-block;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-solid-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 255, 0, 0.25);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 3rem 0;
}
.floating-rating {
    position: absolute;
    top: 5vh;
    left: -4vw;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.avatars { display: flex; }
.avatars img {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid var(--bg-dark);
    object-fit: cover;
}
.avatars .overlap { margin-left: -12px; }
.floating-rating span {
    font-size: 0.85rem; font-weight: 500;
}
.connector-line {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: -1;
}

.main-video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 10 / 13;
    overflow: hidden;
    padding: 16px; /* Glass border effect inside */
}
.main-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
}

.floating-badge {
    position: absolute;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    display: flex; align-items: center; gap: 8px;
    font-size: 0.95rem; font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.floating-badge svg { width: 24px; height: 24px; }
.floating-badge strong { color: var(--text-main); font-weight: 700; margin-left: 2px; }


/* Marquee Brands */
.trusted-marquee {
    padding: 5vh 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    margin-bottom: 10vh;
}
.marquee-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.marquee-wrapper {
    overflow: hidden; width: 100%;
}
.marquee-track {
    display: flex; gap: 1rem;
    animation: marquee-scroll 20s linear infinite;
}
.brand-card {
    flex-shrink: 0;
    padding: 1.5rem 3.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    min-width: 150px;
}
.brand-card:hover {
    background: rgba(255, 255, 255, 0.06);
}
.brand-ref-img {
    height: 42px; /* Uniform premium height */
    width: auto;
    max-width: 140px;
    object-fit: contain;
    /* Force tout logo couleur/noir en blanc parfait avec opacité réduite */
    filter: brightness(0) invert(1) opacity(0.4);
    transition: filter 0.4s ease, transform 0.4s ease;
    user-select: none;
}
.brand-card:hover .brand-ref-img {
    /* Opacité totale et très léger zoom au survol */
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% / 2)); }
}

/* Our Creative Arsenal Adapted Grid */
.creative-arsenal {
    padding: 10vh 0 15vh;
}
.section-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 3rem;
    text-align: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 1.5rem;
}
.bento-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }

.bento-card .card-content {
    position: relative; z-index: 2;
}
.bento-card h3 {
    font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: 1rem; letter-spacing: -1px;
}
.bento-card p {
    font-size: 1rem; color: #E0E0E0; font-weight: 400; max-width: 90%;
}
.bento-card .top-badge {
    position: absolute; top: 2rem; right: 2rem; z-index: 2;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px; border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--neon-green);
}

.card-visual {
    position: absolute; inset: 0; z-index: 1;
}
.card-visual video {
    width: 100%; height: 100%; object-fit: cover;
}
.overlay-dark {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* Manifesto Section */
.manifesto-section { padding: 15vh 0; }
.manifesto-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 6vw; align-items: center;
}
.m-left h2 {
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 0.95; font-weight: 600; letter-spacing: -2px; margin-bottom: 2rem;
}
.green-line {
    width: 60px; height: 4px; background: var(--neon-green); border-radius: 2px;
}
.m-right .big-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.25; font-weight: 500; margin-bottom: 2rem; color: var(--text-main);
}
.m-right .small-text {
    font-size: 1.15rem; color: var(--text-muted); max-width: 500px;
}

/* Process Section */
.process-section { padding: 10vh 0; border-top: 1px solid rgba(255,255,255,0.03); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2vw;
}
.process-card {
    padding: 3rem 2.5rem;
    display: flex;    flex-direction: column; gap: 0.5rem; text-align: center; margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: rgba(212, 255, 0, 0.2);
}
.process-num {
    font-family: var(--font-serif);
    font-size: 3rem; font-style: italic; font-weight: 600;
    color: var(--neon-green); line-height: 1;
}
.process-card h3 { font-size: 1.5rem; font-weight: 600; }
.process-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ========================================================================= */
/* Infinite Services Marquee */
.services-gsap-section {
    position: relative;
    padding: 10vh 0;
    overflow: hidden;
}
.services-sticky-wrapper {
    display: flex; flex-direction: column; justify-content: center;
}
.services-header {
    margin-bottom: 3rem; text-align: left; padding: 0 5vw;
}
.services-horizontal-track {
    display: flex; gap: 2rem; width: max-content;
    animation: services-loop 60s linear infinite;
    padding-left: 2rem;
}
.services-horizontal-track:hover {
    animation-play-state: paused;
}
@keyframes services-loop {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% / 2 - 1rem)); }
}

.service-card {
    position: relative; width: clamp(350px, 45vw, 650px); height: clamp(450px, 60vh, 700px);
    border-radius: var(--radius-lg); overflow: hidden; flex-shrink: 0;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, filter 0.4s ease;
}
.services-horizontal-track:hover .service-card { filter: brightness(0.4); }
.services-horizontal-track .service-card:hover { transform: translateY(-10px); filter: brightness(1.1); z-index: 10; }

.service-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s ease;
}
.service-card:hover .service-bg { transform: scale(1.05); }

.gradient-tall {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
}
.service-content {
    position: relative; z-index: 2; max-width: 90%;
}
.service-icon {
    width: 48px; height: 48px; background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.1;
}
.service-desc {
    font-size: 1.15rem; color: #E0E0E0; margin-bottom: 1.5rem; line-height: 1.6;
}
.service-valeur {
    font-size: 0.95rem; color: var(--neon-green); font-weight: 500;
    background: rgba(212, 255, 0, 0.1); border: 1px solid rgba(212, 255, 0, 0.2);
    padding: 10px 16px; border-radius: var(--radius-md); display: inline-block;
}

/* ========================================================================= */
/* Packages Bento Pricing */
.packages-section { padding: 15vh 0; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; align-items: stretch;
}
.price-pack {
    position: relative; padding: 3rem 2.5rem; display: flex; flex-direction: column;
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.price-pack:hover { transform: translateY(-5px); }

.pack-header { margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 2rem; }
.pack-header h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 1rem; }
.pack-price { font-size: 2.5rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; line-height: 1; }
.pack-price span { font-size: 1.2rem; font-weight: 500; color: var(--text-muted); }
.pack-subtitle { font-size: 0.95rem; color: var(--text-muted); }

.pack-features { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.pack-features li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.4; color: #CCC;
}
.pack-features svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.highlight-feature { color: var(--text-main) !important; font-weight: 500; }

.pack-signature {
    transform: scale(1.05); border: 1px solid var(--neon-green); z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: visible !important; /* Fixes badge cutoff */
}
.pack-signature:hover { transform: scale(1.05) translateY(-5px); }
.neon-glow-bg {
    position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(212, 255, 0, 0.08), transparent 70%); pointer-events: none; z-index: 0;
    border-radius: inherit;
}
.pack-signature > * { position: relative; z-index: 1; }
.badge-recommended {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--neon-green); color: var(--bg-dark); font-weight: 700; font-size: 0.8rem;
    padding: 6px 16px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212,255,0,0.4);
}
.w-100 { width: 100%; text-align: center; display: block; }
.long-term-offer { font-size: 0.9rem; color: var(--text-muted); opacity: 0.8; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* ========================================================================= */
/* Animated Comparative Table */
.comparative-table-section { padding: 5vh 0 15vh; }
.table-container { overflow-x: auto; border-radius: var(--radius-lg); padding: 1px; }
.premium-table { width: 100%; min-width: 900px; border-collapse: collapse; text-align: left; }

.premium-table th, .premium-table td {
    padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.premium-table th { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); border-bottom: 2px solid rgba(255,255,255,0.1); }
.premium-table td { font-size: 0.95rem; color: #CCC; transition: background 0.3s; }
.premium-table td strong { color: var(--text-main); font-weight: 500; font-size: 1rem; }

/* Central Signature Column Styling */
.col-signature-header { color: var(--neon-green) !important; background: rgba(212,255,0,0.03); border-top-left-radius: var(--radius-md); border-top-right-radius: var(--radius-md); }
.col-signature-cell { background: rgba(212,255,0,0.03); font-weight: 500; color: var(--text-main) !important; }
.highlight-text { color: var(--neon-green) !important; font-weight: 600 !important; }

/* Icons in Table */
.check-icon { color: var(--text-muted); font-weight: bold; font-size: 1.2rem; }
.signature-check { color: var(--neon-green); }
.dash-icon { color: rgba(255,255,255,0.2); font-weight: bold; }

/* Hover FX */
.stagger-rows tr { transition: background 0.2s, transform 0.2s; }
.stagger-rows tr:hover td { background: rgba(255,255,255,0.03); cursor: default; }
.stagger-rows tr:hover .col-signature-cell { background: rgba(212,255,0,0.06); }
.last-row th, .last-row td { border-bottom: none; }

/* Premium Structured Video Portfolio */
.premium-portfolio-section { padding: 10vh 0 15vh; }
.premium-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.portfolio-video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    aspect-ratio: 16/9; /* Perfect cinematic symmetry */
    cursor: pointer;
}
.portfolio-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background: rgba(0,0,0,0.25);
    transition: background 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
}

@media (hover: hover) {
    .portfolio-video-card:hover .portfolio-video {
        transform: scale(1.05);
    }
    .portfolio-video-card:hover .portfolio-overlay {
        background: rgba(0,0,0,0);
        border-color: rgba(212,255,0,0.3);
    }
}

@media (max-width: 900px) {
    .premium-portfolio-grid { grid-template-columns: 1fr; gap: 2rem; }
}
/* Custom Branding Hacks */
.brand-ref-img.brighten-logo {
    opacity: 0.8 !important; /* Brighter visibility for Ref2, Ref6, Ref7 */
}

/* WhatsApp Floating CTA */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-text { font-weight: 600; font-size: 0.95rem; }
.wa-float:hover {
    transform: translateY(-8px);
    border-color: #25D366;
    box-shadow: 0 20px 40px rgba(37,211,102,0.25);
    background: rgba(0,0,0,0.8);
}

/* Premium Form Modal Overlay */
.premium-modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
}
.premium-modal-overlay.active {
    opacity: 1; pointer-events: auto;
}
.premium-modal-container {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    border-radius: var(--radius-lg);
    width: 90%; max-width: 650px;
    padding: 4rem 3rem; position: relative;
    transform: translateY(40px) scale(0.98);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-modal-overlay.active .premium-modal-container { transform: translateY(0) scale(1); }
.modal-close-btn {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; font-size: 2.5rem;
    color: var(--text-muted); cursor: pointer; transition: color 0.3s;
    line-height: 1;
}
.modal-close-btn:hover { color: var(--neon-green); }
.modal-header h2 { font-size: 3rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1; letter-spacing: -1px; }
.modal-header p { color: var(--text-muted); margin-bottom: 2.5rem; }

/* Premium Floating Label Form */
.premium-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { position: relative; margin-bottom: 1.5rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 1.4rem 1.2rem 0.6rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm); color: var(--text-main);
    font-size: 1.05rem; font-family: 'Lufga', sans-serif;
    outline: none; transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--neon-green); background: rgba(255,255,255,0.06);
}
.form-group label {
    position: absolute; left: 1.2rem; top: 1.2rem;
    color: var(--text-muted); font-size: 1rem;
    transition: all 0.3s ease; pointer-events: none;
}
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label {
    top: 0.5rem; left: 1rem; font-size: 0.75rem; color: var(--neon-green); font-weight: 500;
}

@media (max-width: 600px) {
    .premium-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .premium-modal-container { padding: 3rem 1.5rem; width: 95%; max-height: 90vh; overflow-y: auto; }
    .wa-float { bottom: 20px; right: 20px; padding: 10px 20px; border-radius: 30px; }
}


/* Finale CTA */
.finale-cta { padding: 10vh 0 15vh; }
.cta-card {
    position: relative; padding: 12vh 4vw; text-align: center; overflow: hidden;
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,255,0,0.2) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.cta-title {
    position: relative; z-index: 1;
    font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 600; letter-spacing: -2px; margin-bottom: 3rem; line-height: 1;
}
.cta-card .btn-solid-neon { position: relative; z-index: 1; font-size: 1.1rem; padding: 20px 48px; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.03); padding: 8vh 0 4vh; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 6vh; }
.footer-sub { color: var(--text-muted); margin-top: 1rem; }
.f-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 600; }
.f-col p, .footer-link { font-size: 1rem; color: var(--text-main); display: block; margin-bottom: 0.5rem; transition: color 0.3s; }
.footer-link:hover { color: var(--neon-green); }
.footer-bottom {
    display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 2rem; font-size: 0.9rem; color: var(--text-muted);
}

/* Responsive */
.mobile-comparison-cards { display: none; }

@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-subtitle { margin: 0 auto 3rem; }
    .hero-cta-group { align-items: center; }
    .floating-rating { display: none; }
    .main-video-card { max-width: 500px; margin: 0 auto; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large { grid-column: span 2; }
    .bento-small { grid-column: span 1; }
}

@media (max-width: 900px) {
    /* Section 1: Investment Plans Cards Mobile Fix */
    .pricing-grid {
        grid-template-columns: 1fr; /* Switch to vertical stacked layout */
        gap: 3rem; 
        margin-top: 3rem;
    }
    .price-pack {
        width: 100%;
        max-width: 100%;
        padding: 2.5rem 1.5rem;
    }
    .pack-signature {
        transform: none !important; /* remove scale desktop effect to avoid cutoff */
    }
    .pack-signature:hover {
        transform: translateY(-5px) !important;
    }
    .badge-recommended {
        top: 0;
        transform: translate(-50%, -50%);
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    .pack-price {
        font-size: 2rem;
    }

    /* Section 2: Comparison Table Mobile Fix */
    .desktop-table-only {
        display: none !important;
    }
    .mobile-comparison-cards {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .mobile-comp-card {
        padding: 2.5rem 1.5rem;
        position: relative;
        overflow: hidden;
    }
    .comp-card-title {
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .comp-card-price {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text-main);
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .comp-card-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .comp-card-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        font-size: 0.9rem;
    }
    .comp-card-list li:last-child {
        border-bottom: none;
    }
    .comp-card-list li span {
        color: var(--text-muted);
        flex: 1;
        padding-right: 1rem;
        line-height: 1.3;
    }
    .comp-card-list li strong {
        color: var(--text-main);
        text-align: right;
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        line-height: 1.3;
    }
    .mobile-comp-card.col-signature-cell {
        border: 1px solid var(--neon-green);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .mobile-comp-card.col-signature-cell .comp-card-title {
        color: var(--neon-green);
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    /* Reset layout for perfect iPhone rendering */
    body { max-width: 100%; overflow-x: hidden; }
    .nav-links { display: none; }
    
    /* Hero Section */
    .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-subtitle { text-align: center; margin: 0 auto 2rem; font-size: 1.05rem; }
    .hero-cta-group { width: 100%; align-items: stretch; gap: 1rem; margin-top: 1.5rem; }
    .btn-hero-wa, .btn-hero-pdf, .btn-solid-neon { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem; }
    .btn-hero-pdf span { white-space: normal; }
    
    /* Bento Grid fixes */
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 1.5rem; }
    .bento-large, .bento-small { grid-column: 1 / -1; min-height: 400px; padding: 2rem 1.5rem; }
    
    /* Manifesto Grid */
    .manifesto-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .m-left h2 { font-size: clamp(2.5rem, 10vw, 3.5rem); margin-bottom: 1rem; }
    .green-line { margin: 1rem auto; }
    .m-right .big-text { font-size: 1.25rem; }
    
    /* Services track scaling */
    .services-gsap-section { max-width: 100vw; overflow-x: hidden; }
    .service-card { width: 85vw; height: clamp(400px, 60vh, 500px); padding: 2rem 1.5rem; }
    .services-horizontal-track { padding-left: 5vw; }
    
    /* Grids to single column */
    .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .premium-portfolio-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    /* Finale CTA & Margins */
    .cta-title { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 2rem; }
    .cta-card { padding: 4rem 1.5rem; }
    
    /* Footer layout */
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-grid .brand-logo-img img { margin: 0 auto; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .legal-links { flex-direction: column; gap: 1rem; }
    
    /* Brand marquee tuning */
    .brand-card { min-width: 120px; padding: 1rem 1.5rem; }
    .trusted-marquee { max-width: 100vw; overflow-x: hidden; }
    
    /* Modals & Forms */
    .premium-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .premium-modal-container { padding: 3rem 1.5rem; }
    .wa-float { padding: 10px 20px; border-radius: 30px; bottom: 15px; right: 15px; }
}
