/* ============================================
   Sales Point - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Brand Colors - matching logo */
    --green-primary: #4ADE80;
    --green-light: #86EFAC;
    --green-dark: #22C55E;
    --blue-accent: #3B82F6;
    --blue-light: #60A5FA;
    --blue-dark: #2563EB;

    /* Legacy aliases for easier migration */
    --orange-primary: #4ADE80;
    --orange-light: #86EFAC;
    --orange-dark: #22C55E;
    --gold-accent: #3B82F6;
    --gold-light: #60A5FA;

    /* Backgrounds */
    --navy-dark: #0D1B2A;
    --navy-mid: #1B263B;
    --navy-light: #415A77;
    --white: #FFFFFF;
    --warm-white: #F0FDF4;
    --cyan-accent: #22D3EE;
}

/* ============================================
   Base Styles - Modern CSS Reset
   Only reset OUR elements, not third-party libraries
   ============================================ */

/* Box sizing for all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset body and html */
html, body {
    margin: 0;
    padding: 0;
}

/* Reset common elements - scoped to NOT affect third-party libs */
.hero, .hero *,
.features, .features *,
.why-us, .why-us *,
.testimonials, .testimonials *,
.cta-section > .cta-box:not(.cta-box--form),
.cta-section > .cta-box:not(.cta-box--form) *,
footer, footer *,
nav, nav *,
.mobile-menu, .mobile-menu *,
.bg-pattern, .floating-shapes, .floating-shapes * {
    margin: 0;
    padding: 0;
}

/* Reset list styles for nav */
.nav-links,
.footer-column ul,
.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

html, body {
    max-width: 100%;
}

/* Scroll offset for fixed navigation */
section[id],
footer[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--navy-dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--orange-primary);
    color: var(--navy-dark);
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   Background Elements
   ============================================ */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(27, 38, 59, 1) 0%, var(--navy-dark) 100%);
    z-index: -1;
}

.floating-shapes {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--orange-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--gold-accent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: var(--gold-light);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 222, 128, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--navy-dark);
    border-radius: 50%;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--navy-dark);
    border-radius: 50%;
}

.logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--orange-primary);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.5);
    background: var(--orange-light);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 25px rgba(74, 222, 128, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(74, 222, 128, 0.55);
    background: var(--orange-light);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: rgba(74, 222, 128, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
    color: var(--green-primary);
    position: relative;
    display: inline;
    white-space: nowrap;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-ring {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 3px solid rgba(74, 222, 128, 0.25);
    position: relative;
    animation: pulse-ring 3s infinite ease-in-out;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
}

.stats-ring::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
    border: 2px dashed rgba(59, 130, 246, 0.4);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.45);
}

.center-badge .number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}

.center-badge .label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating stats - positioned on the ring edge */
.floating-stat {
    position: absolute;
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.98) 0%, rgba(13, 27, 42, 0.98) 100%);
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(74, 222, 128, 0.25);
    border: 2px solid rgba(74, 222, 128, 0.6);
    animation: float-stat 4s infinite ease-in-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* Glowing accent on the connecting side */
.floating-stat::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 60%;
    background: var(--green-primary);
    border-radius: 4px;
    box-shadow: 0 0 12px var(--green-primary), 0 0 24px var(--green-primary);
    top: 50%;
    transform: translateY(-50%);
}

/* Stat 1 - Right side (€300-800) */
.floating-stat.stat-1 {
    top: 5%;
    right: -60px;
    animation-delay: 0s;
}

.floating-stat.stat-1::before {
    left: -3px;
    border-radius: 4px 0 0 4px;
}

/* Stat 2 - Bottom left (Geen CV Nodig) */
.floating-stat.stat-2 {
    bottom: 5%;
    left: -60px;
    animation-delay: -1.5s;
}

.floating-stat.stat-2::before {
    right: -3px;
    left: auto;
    border-radius: 0 4px 4px 0;
}

/* Stat 3 - Top left (Direct Starten) */
.floating-stat.stat-3 {
    top: 35%;
    left: -70px;
    animation-delay: -3s;
}

.floating-stat.stat-3::before {
    right: -3px;
    left: auto;
    border-radius: 0 4px 4px 0;
}

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

.floating-stat .stat-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: var(--green-primary);
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    line-height: 1.1;
}

.floating-stat .stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: var(--orange-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 6rem 5%;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, var(--navy-mid) 0%, rgba(27, 38, 59, 0.5) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(74, 222, 128, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 222, 128, 0.04) 50%, transparent 100%);
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-text h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.why-us-text h2 span {
    color: var(--orange-primary);
}

.why-us-text > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-check svg {
    width: 16px;
    height: 16px;
    color: var(--navy-dark);
}

.benefits-list li span {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--navy-mid);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.02);
}

.stat-box .big-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.75rem;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box .stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ZZP Notice */
.zzp-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
}

.zzp-badge {
    background: var(--gold-accent);
    color: var(--navy-dark);
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
}

.zzp-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.zzp-text .zzp-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
}

.zzp-text a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 700;
}

.zzp-text a:hover {
    text-decoration: underline;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 6rem 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--navy-mid);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Archivo Black', sans-serif;
    font-size: 6rem;
    color: var(--orange-primary);
    opacity: 0.25;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--gold-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
}

.author-info .name {
    font-weight: 700;
    font-size: 1rem;
}

.author-info .role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 6rem 5%;
    overflow-x: hidden;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
}

.cta-box--form {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
    padding: 3rem;
    overflow: visible;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-box h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--navy-dark);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Footer
   ============================================ */
footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

.footer-column h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--orange-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--navy-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange-primary);
    color: var(--white);
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 42, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.75rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--orange-primary);
}

.mobile-menu .nav-cta {
    margin-top: 1rem;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

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

    .hero-visual {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .nav-links,
    nav .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text h1 .highlight {
        white-space: normal;
    }

    /* Reduce floating shapes on mobile to avoid collision with text */
    .floating-shapes {
        opacity: 0.4;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
        top: 5%;
        left: -5%;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
        right: -20px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
        left: -20px;
    }

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

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

    .stats-showcase {
        grid-template-columns: 1fr;
    }

    /* CTA Section mobile fixes */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-box {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    /* .cta-box--form styles handled in activecampaign-form.css */

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

    .footer-brand p {
        max-width: 100%;
    }

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

    .zzp-notice {
        flex-direction: column;
        text-align: center;
    }
}
