:root {
    --bg-color: #0d1117; /* Very sleek dark blue/gray */
    --surface-color: rgba(22, 27, 34, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-green: #00df82; /* Bright, vibrant, nice green */
    --primary-green-glow: rgba(0, 223, 130, 0.3);
    --text-main: #ffffff;
    --text-muted: #8b949e;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-green-glow);
    z-index: -1;
    border-radius: 4px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section-padding {
    padding: 8rem 0;
}

.glass {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.lang-switch-mobile {
    display: none;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.logo span {
    color: var(--primary-green);
}

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

.nav-links a:not(.btn-primary) {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-green);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #000;
    box-shadow: 0 4px 20px var(--primary-green-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 223, 130, 0.5);
    background-color: #00fa92;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 223, 130, 0.1);
    border: 1px solid rgba(0, 223, 130, 0.2);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Decorative Blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #0076df;
    bottom: -50px;
    left: -150px;
    animation-delay: -5s;
}

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

@keyframes floatPhone1 {
    0% { transform: translateY(0) rotateY(15deg) rotateX(10deg) rotateZ(-10deg); }
    100% { transform: translateY(-20px) rotateY(18deg) rotateX(12deg) rotateZ(-8deg); }
}

@keyframes floatPhone2 {
    0% { transform: translateY(0) rotateY(-15deg) rotateX(5deg) rotateZ(8deg); }
    100% { transform: translateY(-20px) rotateY(-18deg) rotateX(8deg) rotateZ(10deg); }
}

.hero-phones {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    perspective: 1500px; /* Less distortion than 1200px */
}

.hero-phone {
    position: absolute;
    width: 200px; /* Small enough so they aren't overwhelming */
    height: 433px; /* True iPhone aspect ratio */
    border-radius: 32px;
    background: #000;
    border: 8px solid #20242c; /* Metallic dark gray bezel */
    box-shadow: 
        inset 0 0 0 1px #000, 
        0 30px 60px rgba(0, 0, 0, 0.8), 
        -4px 4px 6px rgba(255,255,255,0.1); /* Fake 3D edge light */
    opacity: 0.75;
    transition: var(--transition);
    transform-style: preserve-3d;
    overflow: hidden;
    filter: blur(2px); /* True depth-of-field blur on the whole device */
    box-sizing: border-box;
}

/* Dynamic Island */
.hero-phone::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 18px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.hero-phone video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
    display: block;
}

.phone-1 {
    top: 15%;
    left: 8%;
    animation: floatPhone1 6s ease-in-out infinite alternate;
}

.phone-2 {
    bottom: 12%;
    right: 8%;
    animation: floatPhone2 8s ease-in-out infinite alternate-reverse;
}

/* Hide on mobile to save performance */
@media (max-width: 1024px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Social Proof Marquee */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-marquee::before,
.logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.client-logo img {
    height: 100%;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); }
}

/* Video Section */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.video-card:hover {
    border-color: var(--primary-green);
    transform: scale(1.02);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 223, 130, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
    background: var(--primary-green);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Process Section - Tabs Layout */
.process-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-tabs {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    font-family: var(--font-heading);
    text-align: left;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.process-tab .step-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.process-tab h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    transition: var(--transition);
}

.process-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.process-tab.active {
    background: var(--surface-color);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

.process-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
    border-radius: 4px;
}

.process-tab.active .step-num {
    color: var(--primary-green);
}

.process-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.process-tab-content.active {
    display: block;
}

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

.process-content-inner {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.step-number-bg {
    position: absolute;
    right: 2rem;
    top: -2rem;
    font-size: 15rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(0, 223, 130, 0.03);
    line-height: 1;
    z-index: 0;
    user-select: none;
}

.process-text {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.process-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.process-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.process-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.process-benefits .check {
    color: var(--primary-green);
    background: rgba(0, 223, 130, 0.1);
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .process-tabs {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .process-content-inner {
        padding: 2.5rem;
    }
    
    .step-number-bg {
        font-size: 8rem;
        top: 1rem;
    }
}

/* Bento Testimonials */
.testimonial-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testi-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

a.testi-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green-glow);
    box-shadow: 0 10px 40px rgba(0, 223, 130, 0.2);
}

.testi-card .stars {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testi-card .quote {
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.testi-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-card .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-card .author .name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    color: var(--text-main);
}

.testi-card .author .role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stat Cards */
.stat-card {
    justify-content: center;
}

.stat-card .stat-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: auto;
}

.stat-card .stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin: 1rem 0 0.5rem;
    font-family: var(--font-heading);
    color: var(--primary-green);
}

.stat-card .stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-card.green {
    background: var(--primary-green);
    color: #000;
    border: none;
    border-radius: 24px;
}

.stat-card.green .stat-subtitle,
.stat-card.green .stat-number,
.stat-card.green .stat-label {
    color: #000;
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .testimonial-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-bento {
        grid-template-columns: 1fr;
    }
    .hide-on-mobile {
        display: none !important;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 2;
    border-color: var(--primary-green-glow);
    animation: float 6s ease-in-out infinite alternate;
}

.about-badge .stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-badge .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 120px;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature .check {
    color: var(--primary-green);
    background: rgba(0, 223, 130, 0.1);
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-badge {
        right: 10px;
        bottom: 10px;
    }
}

/* Enhanced CTA Section */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(0, 223, 130, 0.05) 100%);
    align-items: center;
}

.cta-info {
    text-align: left;
}

.cta-info h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-info p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-benefits {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-benefits .check {
    color: var(--primary-green);
    background: rgba(0, 223, 130, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    background: linear-gradient(135deg, var(--text-muted), #1f242c);
    margin-left: -15px;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
    background-image: url('Willem.avif');
    background-size: cover;
    background-position: center;
}
.avatar-group .avatar:nth-child(2) {
    background-image: url('Victorien.avif');
    background-size: cover;
    background-position: center;
}
.avatar-group .avatar:nth-child(3) {
    background-image: url('Dioni.avif');
    background-size: cover;
    background-position: center;
}
.avatar-group .avatar:nth-child(4) {
    background-image: url('Susan.avif');
    background-size: cover;
    background-position: center;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 200px;
    line-height: 1.4;
}

.trust-text strong {
    color: var(--text-main);
}

.cta-calendar {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 223, 130, 0.15);
}

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.faq-question .icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 1.5rem;
    margin: 0;
}

/* Lead Magnet */
.magnet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.magnet-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.magnet-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
}

.magnet-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.book-wrapper {
    display: inline-block;
    animation: floatBook 6s ease-in-out infinite;
}

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

.book-mockup {
    width: 250px;
    height: 350px;
    margin: 0 auto;
    border-radius: 10px 20px 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    border-left: 10px solid #00df82;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s;
    transform-style: preserve-3d;
}

.book-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,223,130,0.3);
}

.book-mockup::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.mockup-lines {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mockup-lines::before, .mockup-lines::after {
    content: '';
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.mockup-lines::after {
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .magnet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .magnet-form {
        flex-direction: column;
    }
}

/* Contact Modal */
.glass-modal {
    border: none;
    border-radius: 20px;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 0;
    width: 90%;
    max-width: 500px;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Dialog Centering Fix */
    margin: auto;
    max-height: 90vh;
}

.glass-modal::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    padding: 2.5rem;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--text-light);
}

.glass-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.glass-modal p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

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

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

@media (max-width: 768px) {
    .lang-switch-mobile { display: flex; }
    .nav-links { display: none; }
    .hero-buttons { flex-direction: column; }
    .footer-content, .footer-links { flex-direction: column; gap: 1rem; }
    
    .video-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 2rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-green) rgba(255, 255, 255, 0.05);
        scroll-padding-left: 2rem;
        scroll-padding-right: 2rem;
        margin: 0 -2rem; /* Extend to edges of screen */
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .video-grid::-webkit-scrollbar {
        height: 5px;
    }
    .video-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    .video-grid::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 10px;
    }
    .video-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
}

/* Video Scroll Hint Overlay */
.video-grid-wrapper {
    position: relative;
    width: 100%;
}

.scroll-hint {
    display: none;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    background: rgba(0, 223, 130, 0.9);
    color: #0d1117;
    padding: 12px;
    border-radius: 50%;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 223, 130, 0.4);
    animation: hintPulse 2s infinite, hintFloat 2s infinite ease-in-out;
    transition: opacity 0.5s ease;
}

@keyframes hintPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 223, 130, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 223, 130, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 223, 130, 0); }
}

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

@media (max-width: 768px) {
    .scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: slideUp 0.5s ease-out;
}

.cookie-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

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

@keyframes slideUp {
    from { bottom: -100px; opacity: 0; }
    to { bottom: 20px; opacity: 1; }
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
        bottom: 10px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
