/* ============================================
   PRAASH - Main Stylesheet
   ============================================ */
.h3-style {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.footer-heading {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-heading {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

:root {
    --p: #6B4EE6;
    --p-glow: rgba(107, 78, 230, 0.4);
    --p-light: #8B5CF6;
    --dark: #020202;
    --darker: #010101;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --light: #ffffff;
    --gray: #888;
    --success: #10b981;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    background: var(--dark);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Noise Texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   Navigation
   ============================================ */

nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1200px;
}

.nav-glass {
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 16px 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--light);
    text-decoration: none;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--p), #8B5CF6);
    border-radius: 8px;
    position: relative;
}

.logo-mark::before {
    content: 'PB';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
}

.logo-main {
    width: 50px;
    height: 50px;
    margin-top: 13px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--p);
}

.nav-cta {
    background: var(--light);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
    margin-right: 12px;
}

.nav-cta:hover {
    background: transparent;
    color: var(--light);
    border-color: var(--p);
    box-shadow: 0 0 20px var(--p-glow);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--p);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 140px 48px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--p-glow) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(107, 78, 230, 0.1);
    border: 1px solid rgba(107, 78, 230, 0.3);
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--p);
    margin-bottom: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(107, 78, 230, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(107, 78, 230, 0); }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--p);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(107, 78, 230, 0.2);
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.h-stat strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 4px;
}

.h-stat span {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mock {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a1a1e, #0f0f12);
    border: 2px solid var(--glass-border);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 0 0 2px rgba(107, 78, 230, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: var(--dark);
    border-radius: 16px;
    margin-top: 12px;
    z-index: 2;
    background: #000;
}

.phone-screen {
    width: 100%;
    height: 100%;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Phone Screen - Desktop Only */
@media (min-width: 1024px) {
    .phone-screen {
        position: relative;
        height: 100%;
        padding: 44px 16px 20px;
        overflow: hidden;
        background: #080808f2;
    }

    .phone-status-bar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 44px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 24px;
        font-family: -apple-system, Inter, sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: white;
        z-index: 100;
        background: rgba(17, 17, 17, 0.27);
    }

    .status-icons {
        display: flex;
        gap: 4px;
        font-size: 12px;
    }

    .notification-spam-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 10px;
        mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    }

    .spam-notification {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 14px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, opacity, filter;
        position: relative;
        overflow: hidden;
    }

    .spam-notification.new {
        animation: slideInSpring 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    .spam-notification.removing {
        opacity: 0 !important;
        transform: translateY(20px) scale(0.9) !important;
        filter: blur(4px);
        pointer-events: none;
        margin-top: -20px;
        margin-bottom: -20px;
        padding-top: 0;
        padding-bottom: 0;
        height: 0;
        border-width: 0;
    }

    .spam-notification:not(.removing):nth-child(1) { 
        z-index: 4; 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
    .spam-notification:not(.removing):nth-child(2) { 
        z-index: 3; 
        transform: scale(0.96) translateY(-6px); 
        opacity: 0.85; 
    }
    .spam-notification:not(.removing):nth-child(3) { 
        z-index: 2; 
        transform: scale(0.92) translateY(-12px); 
        opacity: 0.6; 
    }

    @keyframes slideInSpring {
        0% {
            opacity: 0;
            transform: translateY(-40px) scale(0.9);
        }
        60% {
            transform: translateY(8px) scale(1.02);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .app-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
        box-shadow: 0 0 15px rgba(107, 78, 230, 0.3);
    }

    .spam-notification .notif-content-row {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .notif-text-content {
        flex: 1;
        min-width: 0;
    }

    .notif-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 2px;
        font-size: 10px;
        color: rgba(255,255,255,0.4);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .notif-title {
        font-size: 14px;
        font-weight: 700;
        color: white;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }

    .notif-subtitle {
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .notif-metric {
        font-size: 16px;
        font-weight: 700;
        color: #34c759;
        text-shadow: 0 0 10px rgba(52,199,89,0.3);
        flex-shrink: 0;
        margin-left: 8px;
    }

    .spam-notification::before {
        content: '';
        position: absolute;
        top: 12px;
        left: 12px;
        width: 5px;
        height: 5px;
        background: #34c759;
        border-radius: 50%;
        box-shadow: 0 0 6px #34c759;
        z-index: 5;
    }
}

@media (max-width: 1023px) {
    .notification-spam-container { display: none; }
    .phone-status-bar { display: none; }
}

/* ============================================
   Buttons
   ============================================ */

.btn-main {
    display: inline-flex;
    padding: 16px 32px;
    background: var(--p);
    color: white;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--p);
    transition: all 0.3s;
    box-shadow: 0 10px 40px var(--p-glow);
    justify-content: center;
    align-items: center;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px var(--p-glow);
}

.btn-ghost {
    display: inline-flex;
    padding: 16px 32px;
    background: transparent;
    color: var(--light);
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    margin-left: 16px;
    justify-content: center;
    align-items: center;
}

.btn-ghost:hover {
    border-color: var(--p);
    background: rgba(107, 78, 230, 0.1);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Receipt Buttons */
.btn-receipt {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-receipt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-receipt:hover::before {
    left: 100%;
}

.btn-receipt.secondary {
    background: rgba(255,255,255,0.05);
    color: var(--light);
    border: 1px solid var(--glass-border);
}

.btn-receipt.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn-receipt.primary {
    background: linear-gradient(135deg, var(--p), var(--p-light));
    color: white;
    box-shadow: 0 10px 30px rgba(107, 78, 230, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-receipt.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(107, 78, 230, 0.4);
}

/* ============================================
   Marquee
   ============================================ */

.marquee {
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(107, 78, 230, 0.05);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.marquee-item::before {
    content: '✦';
    color: var(--p);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Section Layouts
   ============================================ */

section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-header-center p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--p);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    max-width: 600px;
}

/* ============================================
   Services Grid
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 78, 230, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(107, 78, 230, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray);
}

.service-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* ============================================
   Results Bar
   ============================================ */

.results {
    background: linear-gradient(180deg, var(--dark) 0%, rgba(107,78,230,0.05) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 80px 48px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.result-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
    margin-bottom: 8px;
}

.result-item h3 span {
    color: var(--p);
}

.result-item p {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Work Section
   ============================================ */

.work-section {
    max-width: 1400px;
    padding: 120px 48px;
}

.work-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Desktop Sticky Cards */
@media (min-width: 1025px) {
    .work-container {
        display: block !important;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        padding-bottom: 100px;
    }

    .sticky-work-card {
        position: sticky;
        height: 500px;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 32px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        margin-bottom: 60px;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.8), 0 20px 40px rgba(0,0,0,0.4);
        transform-origin: center top;
        transition: transform 0.5s ease, box-shadow 0.3s ease, filter 0.3s ease;
    }

    .sticky-work-card:nth-child(1) { top: 15vh; z-index: 1; }
    .sticky-work-card:nth-child(2) { top: 18vh; z-index: 2; }
    .sticky-work-card:nth-child(3) { top: 21vh; z-index: 3; }
    
    .sticky-work-card:hover {
        box-shadow: 0 -10px 50px rgba(107, 78, 230, 0.2), 0 30px 60px rgba(0,0,0,0.5);
    }

    .sticky-visual {
        position: relative;
        height: 100%;
        width: 100%;
        overflow: hidden;
        border-right: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #151518, #0a0a0c);
    }

    .sticky-visual .website-screenshot-wrapper {
        width: 90%;
        height: 85%;
        max-width: none;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .sticky-content {
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--dark);
        position: relative;
    }

    .sticky-content::before {
        content: attr(data-number);
        position: absolute;
        top: 20px;
        right: 30px;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 6rem;
        font-weight: 700;
        color: rgba(255,255,255,0.03);
        line-height: 1;
        z-index: 0;
        pointer-events: none;
    }
}

/* Mobile Sticky Cards */
@media (max-width: 1024px) {
    .work-container {
        display: block;
        padding: 0 20px;
        max-width: 100%;
        position: relative;
    }
    
    .sticky-work-card {
        position: sticky;
        height: auto;
        min-height: 85vh;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        transform-origin: center top;
        transition: transform 0.5s ease, filter 0.3s ease;
    }
    
    .sticky-work-card:nth-child(1) { top: 8vh; z-index: 1; }
    .sticky-work-card:nth-child(2) { top: 11vh; z-index: 2; }
    .sticky-work-card:nth-child(3) { top: 14vh; z-index: 3; }
    
    .sticky-visual {
        height: 45vh;
        min-height: 300px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #151518, #0a0a0c);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .sticky-visual .website-screenshot-wrapper {
        width: 90%;
        height: 90%;
        max-width: none;
        border-radius: 12px;
    }
    
    .sticky-content {
        padding: 30px;
        position: relative;
        display: flex;
        flex-direction: column;
        background: var(--dark);
        flex: 1;
    }
    
    .sticky-content::before {
        display: none;
    }
    
    .work-featured-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .work-featured-desc {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .work-stats-row {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .work-stat-value {
        font-size: 1.6rem;
    }
    
    .work-stat-label {
        font-size: 0.85rem;
    }
    
    .sticky-content .btn-main {
        width: 100% !important;
        text-align: center;
        margin-top: auto;
    }
    
    .work-tag-large {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
}

/* Mobile Compact Layout */
@media (max-width: 1024px) {
    .work-container {
        padding: 0 16px;
        gap: 20px;
    }
    
    .sticky-work-card {
        position: sticky;
        height: auto;
        min-height: auto;
        max-height: none;
        margin-bottom: 20px;
        border-radius: 20px;
        top: 10vh;
    }
    
    .sticky-work-card:nth-child(1) { top: 10vh; }
    .sticky-work-card:nth-child(2) { top: 13vh; }
    .sticky-work-card:nth-child(3) { top: 16vh; }
    
    .sticky-visual {
        height: 220px;
        min-height: auto;
        border-bottom: 1px solid var(--glass-border);
        background: linear-gradient(145deg, #1a1a1e, #0f0f12);
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sticky-visual .website-screenshot-wrapper {
        width: 100%;
        max-width: 400px;
        height: 180px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        margin-bottom: 0px;
    }
    
    .screenshot-track {
        animation-duration: 20s;
    }
    
    .website-screenshot {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    
    .sticky-content {
        padding: 24px;
        gap: 12px;
    }
    
    .sticky-content::before {
        display: none;
    }
    
    .work-tag-large {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .work-featured-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .work-featured-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
        color: rgba(255,255,255,0.7);
    }
    
    .work-stats-row {
        gap: 24px;
        margin-bottom: 24px;
        padding-top: 16px;
        border-top: 1px solid var(--glass-border);
    }
    
    .work-stat-value {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    .work-stat-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .sticky-content .btn-main {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.85rem;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .sticky-visual {
        height: 180px;
        padding: 16px;
    }
    
    .sticky-visual .website-screenshot-wrapper {
        height: 150px;
        border-radius: 10px;
    }
    
    .sticky-content {
        padding: 20px;
    }
    
    .work-featured-title {
        font-size: 1.3rem;
    }
    
    .work-stats-row {
        gap: 20px;
    }
    
    .work-stat-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 380px) {
    .sticky-work-card {
        position: relative;
        top: auto;
        margin-bottom: 24px;
    }
    
    .sticky-work-card:nth-child(1),
    .sticky-work-card:nth-child(2),
    .sticky-work-card:nth-child(3) {
        top: auto;
    }
}

/* Stacked Animation */
.sticky-work-card.stacked {
    transform: scale(0.96);
    filter: brightness(0.7);
}

@media (max-width: 1024px) {
    .sticky-work-card.stacked {
        transform: scale(0.94);
        filter: brightness(0.6);
    }
}

/* Website Screenshot Scroll */
.website-screenshot-wrapper {
    width: 100%;
    max-width: 500px;
    height: 320px;
    background: #0a0a0c;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    margin-bottom: 27px;
}

.website-screenshot-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.screenshot-track {
    display: flex;
    flex-direction: column;
    animation: seamlessScroll 25s linear infinite;
    will-change: transform;
    width: 100%;
}

.website-screenshot-wrapper.paused .screenshot-track {
    animation-play-state: paused;
}

.website-screenshot {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
}

@keyframes seamlessScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.screenshot-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(107, 78, 230, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10;
}

.website-screenshot-wrapper:hover .screenshot-overlay {
    opacity: 1;
}

.website-screenshot-wrapper.paused .screenshot-overlay span {
    display: none;
}

.website-screenshot-wrapper.paused .screenshot-overlay::after {
    content: "Click to resume";
}

.work-featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-tag-large {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(107, 78, 230, 0.15);
    border: 1px solid rgba(107, 78, 230, 0.3);
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--p);
    margin-bottom: 24px;
    width: fit-content;
}

.work-featured-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.work-featured-desc {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.work-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.work-stat-item {
    display: flex;
    flex-direction: column;
}

.work-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
}

.work-stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 4px;
}

.view-details-link {
    display: block;
    text-align: center;
    color: var(--p);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s;
    opacity: 0.8;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    padding: 8px;
}

.view-details-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(107, 78, 230, 0.5);
}

.view-details-link.mobile {
    margin-bottom: 12px;
    font-size: 0.8rem;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing {
    padding: 120px 48px;
    background: radial-gradient(ellipse at center, rgba(107,78,230,0.08) 0%, transparent 70%);
    overflow: hidden;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--p), transparent);
    opacity: 0.5;
}

.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 16px 32px;
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.toggle-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    user-select: none;
}

.toggle-label.active {
    color: var(--light);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(107, 78, 230, 0.5);
}

.save-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    margin-left: 8px;
    text-transform: uppercase;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.toggle-switch.active {
    background: var(--p);
    border-color: var(--p);
    box-shadow: 0 0 20px rgba(107, 78, 230, 0.4);
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px);
}

.pricing-receipts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    perspective: 1000px;
}

.receipt-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.receipt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.receipt-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 78, 230, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 40px rgba(107, 78, 230, 0.1);
}

.receipt-card.popular {
    border: 2px solid var(--p);
    box-shadow: 0 0 60px rgba(107, 78, 230, 0.3), inset 0 0 0 1px rgba(107, 78, 230, 0.4);
}

.receipt-card.popular,
.mobile-price-card.popular {
    overflow: visible;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, var(--p), var(--p-light));
    color: white;
    padding: 8px 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(107, 78, 230, 0.4);
    z-index: 20;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.2);
}

.receipt-content-card {
    padding: 48px 32px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.receipt-content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(107, 78, 230, 0.03) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 0;
}

.receipt-icon {
    width: 64px;
    height: 64px;
    background: rgba(107, 78, 230, 0.1);
    border: 1px solid rgba(107, 78, 230, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--p);
    position: relative;
    overflow: hidden;
}

.receipt-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(107, 78, 230, 0.2));
}

.receipt-icon.featured {
    background: var(--p);
    border-color: var(--p);
    color: white;
    box-shadow: 0 10px 30px rgba(107, 78, 230, 0.3);
}

.receipt-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

.receipt-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: var(--light);
    letter-spacing: 0.02em;
}

.receipt-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-align: center;
    margin-bottom: 8px;
}

.receipt-subtitle.featured-text {
    color: var(--p);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(107, 78, 230, 0.3);
}

.receipt-code {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.receipt-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 24px 0;
    border: none;
    position: relative;
}

.receipt-divider::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--p);
    font-size: 0.5rem;
    background: var(--dark);
    padding: 0 10px;
}

.receipt-divider.thick {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(107, 78, 230, 0.5), transparent);
}

.receipt-divider.thick::before {
    display: none;
}

.receipt-divider.thick.featured {
    background: linear-gradient(90deg, transparent, var(--p), transparent);
    box-shadow: 0 0 10px var(--p);
}

.tier-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-align: center;
    margin-bottom: 16px;
}

.receipt-price-row {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.price-display .currency {
    font-size: 1.5rem;
    margin-top: 4px;
    color: var(--gray);
}

.price-display .amount {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--light);
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.price-display .period {
    font-size: 1rem;
    color: var(--gray);
    align-self: flex-end;
    margin-bottom: 8px;
    font-weight: 500;
}

.yearly-badge {
    font-size: 0.8rem;
    color: var(--success);
    margin-top: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.yearly-badge::before {
    content: '↓';
    font-size: 0.7rem;
}

.original-price-display {
    margin-top: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
}

.original-price-display span:first-child {
    text-decoration: line-through;
    text-decoration-color: var(--danger);
}

.custom-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--p);
    font-style: italic;
    text-shadow: 0 0 30px rgba(107, 78, 230, 0.3);
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.feature-list li:hover {
    color: var(--light);
    padding-left: 8px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    font-size: 0.8rem;
}

.check.featured {
    color: var(--p);
    background: rgba(107, 78, 230, 0.1);
}

.fomo-text-card {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--danger);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--danger);
    border-radius: 50%;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 10px var(--danger);
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--danger); }
    50% { opacity: 0.3; box-shadow: 0 0 0px var(--danger); }
}

.pricing-footer-fomo {
    text-align: center;
    margin-top: 60px;
}

.pricing-footer-fomo p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    background: rgba(107, 78, 230, 0.1);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(107, 78, 230, 0.2);
    font-family: 'Space Grotesk', sans-serif;
}

/* Mobile Pricing */
@media (max-width: 768px) {
    .pricing-receipts-container {
        display: none;
    }
    
    .mobile-pricing-stack {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .mobile-price-card {
        background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 40px 24px;
        position: relative;
        backdrop-filter: blur(20px);
        overflow: hidden;
    }
    
    .mobile-price-card.popular {
        border: 1px solid var(--p);
        box-shadow: 0 0 30px rgba(107, 78, 230, 0.2);
    }
    
    .mobile-popular-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        background: linear-gradient(135deg, var(--p), var(--p-light));
        color: white;
        padding: 6px 16px;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border-radius: 100px;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(107, 78, 230, 0.4);
    }
    
    .mobile-price-header {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .mobile-price-icon {
        width: 56px;
        height: 56px;
        background: rgba(107, 78, 230, 0.1);
        border: 1px solid rgba(107, 78, 230, 0.3);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        color: var(--p);
    }
    
    .mobile-price-card.popular .mobile-price-icon {
        background: var(--p);
        border-color: var(--p);
        color: white;
        box-shadow: 0 10px 20px rgba(107, 78, 230, 0.3);
    }
    
    .mobile-price-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .mobile-price-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--light);
    }
    
    .mobile-price-subtitle {
        font-size: 0.8rem;
        color: var(--gray);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 4px;
    }
    
    .mobile-price-code {
        font-family: 'Space Mono', monospace;
        font-size: 0.7rem;
        color: rgba(255,255,255,0.3);
    }
    
    .mobile-price-amount {
        text-align: center;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .mobile-price-row {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
    }
    
    .mobile-currency {
        font-size: 1.25rem;
        margin-top: 4px;
        color: var(--gray);
    }
    
    .mobile-amount {
        font-size: 3rem;
        line-height: 1;
        color: var(--light);
        text-shadow: 0 0 20px rgba(255,255,255,0.1);
    }
    
    .mobile-period {
        font-size: 0.9rem;
        color: var(--gray);
        align-self: flex-end;
        margin-bottom: 6px;
    }
    
    .mobile-billed {
        font-size: 0.75rem;
        color: var(--success);
        margin-top: 8px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    
    .mobile-original-price {
        margin-top: 8px;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .mobile-original-price span:first-child {
        text-decoration: line-through;
        text-decoration-color: var(--danger);
    }
    
    .mobile-features {
        list-style: none;
        margin-bottom: 24px;
    }
    
    .mobile-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.8);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .mobile-features li:last-child {
        border-bottom: none;
    }
    
    .mobile-check {
        color: var(--success);
        font-weight: 700;
        font-size: 1rem;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 50%;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .mobile-price-card.popular .mobile-check {
        color: var(--p);
        background: rgba(107, 78, 230, 0.1);
    }
    
    .mobile-btn {
        width: 100%;
        padding: 16px;
        border-radius: 12px;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        text-align: center;
    }
    
    .mobile-btn-dark {
        background: rgba(255,255,255,0.05);
        color: var(--light);
        border: 1px solid var(--glass-border);
    }
    
    .mobile-btn-dark:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .mobile-btn-purple {
        background: linear-gradient(135deg, var(--p), var(--p-light));
        color: white;
        box-shadow: 0 5px 20px rgba(107, 78, 230, 0.3);
    }
    
    .mobile-fomo {
        text-align: center;
        margin-top: 12px;
        font-size: 0.75rem;
        color: var(--danger);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    
    .billing-toggle-container {
        transform: scale(0.9);
        margin-bottom: 30px;
        padding: 12px 20px;
    }
}

@media (min-width: 769px) {
    .mobile-pricing-stack {
        display: none;
    }
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-section {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(107, 78, 230, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-card.featured {
    border: 2px solid rgba(107, 78, 230, 0.3);
    background: linear-gradient(145deg, rgba(107, 78, 230, 0.08) 0%, var(--glass) 100%);
}

.testimonial-card.featured:hover {
    box-shadow: 0 20px 40px rgba(107, 78, 230, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--p), var(--p-light));
    color: white;
    padding: 6px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(107, 78, 230, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    line-height: 1;
}

.star.filled {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--light);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Write Review Section */
.write-review-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.write-review-header {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(107, 78, 230, 0.05);
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.write-review-header:hover {
    background: rgba(107, 78, 230, 0.1);
    border-bottom-color: var(--glass-border);
}

.write-review-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.write-review-header h3::before {
    content: '✎';
    color: var(--p);
    font-size: 1.2rem;
}

.toggle-review-btn {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.toggle-review-btn:hover {
    background: var(--p);
    border-color: var(--p);
    transform: rotate(90deg);
}

.toggle-review-btn.active {
    transform: rotate(45deg);
    background: var(--p);
    border-color: var(--p);
}

.toggle-review-btn svg {
    width: 20px;
    height: 20px;
}

.review-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-form-wrapper.active {
    max-height: 600px;
}

.review-form {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--p);
    background: rgba(107, 78, 230, 0.05);
    box-shadow: 0 0 0 3px rgba(107, 78, 230, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.star-rating-input {
    display: flex;
    gap: 8px;
    padding: 8px 0;
}

.star-input {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    user-select: none;
}

.star-input:hover,
.star-input.active {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
}

.star-input:hover ~ .star-input {
    color: rgba(255, 255, 255, 0.2);
}

/* Success/Error Messages */
.review-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

.success-check {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #10b981;
    font-size: 2rem;
    font-weight: 700;
}

.review-success h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 12px;
}

.review-success p {
    color: var(--gray);
    line-height: 1.6;
}

.review-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    color: #fca5a5;
    text-align: center;
    margin-top: 16px;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 30px 0;
}

.faq-q {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-q:hover {
    color: var(--p);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--p);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    color: var(--gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
}

.faq-item.active .faq-a {
    max-height: 300px;
    padding-top: 20px;
}

/* ============================================
   Contact Modal
   ============================================ */

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal-overlay.active {
    display: flex;
}

.contact-modal-content {
    background: linear-gradient(145deg, #0a0a0c, #151518);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    position: relative;
    animation: slideUp 0.4s ease;
}

.contact-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
    padding-bottom: 4px;
}

.contact-close-btn:hover {
    background: #6B4EE6;
    transform: rotate(90deg);
}

.contact-modal-header {
    margin-bottom: 28px;
}

.contact-modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.contact-modal-header p {
    color: #888;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6B4EE6 0%, #8B5CF6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 78, 230, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-message {
    text-align: center;
    animation: fadeIn 0.5s ease;
    padding: 20px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #10b981;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

.success-message h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.success-message p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    color: #fca5a5;
    text-align: center;
    margin-top: 16px;
}

.error-message a {
    color: #6B4EE6;
    text-decoration: none;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-big {
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-big::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--p-glow) 0%, transparent 70%);
    opacity: 0.3;
}

.cta-big h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.cta-big h2 span {
    color: var(--p);
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: #000;
    border-top: 1px solid var(--glass-border);
    padding: 80px 48px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.social-links a:hover {
    background: var(--p);
    border-color: var(--p);
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--light);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--p);
    transform: translateX(4px);
}

.footer-newsletter h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-newsletter p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--p);
    background: rgba(107, 78, 230, 0.05);
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--p);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.newsletter-form button:hover:not(:disabled) {
    background: var(--p-light);
    transform: translateY(-2px);
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.newsletter-success {
    margin-top: 12px;
    font-size: 0.9rem;
    animation: fadeIn 0.4s ease;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--light);
}

/* ============================================
   Plan Details Modal
   ============================================ */

.plan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.plan-modal-overlay.active {
    display: flex;
}

.plan-modal-content {
    background: linear-gradient(145deg, #0a0a0c 0%, #151518 100%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(107, 78, 230, 0.1);
}

.plan-modal-overlay.active .plan-modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--p);
    border-color: var(--p);
    transform: rotate(90deg);
}

.modal-header {
    padding: 48px 48px 32px;
    border-bottom: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(107, 78, 230, 0.05) 0%, transparent 100%);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: rgba(107, 78, 230, 0.1);
    border: 1px solid rgba(107, 78, 230, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
}

.modal-icon.featured {
    background: var(--p);
    border-color: var(--p);
    color: white;
    box-shadow: 0 10px 30px rgba(107, 78, 230, 0.3);
}

.modal-icon svg {
    width: 32px;
    height: 32px;
}

.modal-tier {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--p);
    margin-bottom: 8px;
    display: block;
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.modal-price {
    text-align: right;
}

.modal-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    display: block;
    line-height: 1;
}

.modal-price .period {
    color: var(--gray);
    font-size: 0.9rem;
}

.modal-body {
    padding: 32px 48px;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--p);
    border-radius: 2px;
}

.modal-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s;
}

.modal-features li:hover {
    border-color: rgba(107, 78, 230, 0.3);
    transform: translateX(4px);
}

.modal-features .check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.deliverable-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.deliverable-item:hover {
    border-color: rgba(107, 78, 230, 0.4);
    transform: translateY(-4px);
}

.deliverable-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--p);
    display: block;
    margin-bottom: 4px;
}

.deliverable-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
}

.timeline-step::before {
    content: attr(data-step);
    width: 32px;
    height: 32px;
    background: var(--p);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--light);
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.ideal-for {
    background: rgba(107, 78, 230, 0.05);
    border: 1px solid rgba(107, 78, 230, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.ideal-for h3::before {
    background: var(--success);
}

.ideal-for p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.modal-footer {
    padding: 32px 48px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    background: rgba(0,0,0,0.3);
}

.modal-guarantee {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-modal-content::-webkit-scrollbar {
    display: none;
}

.plan-modal-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================
   Book Meeting FAB
   ============================================ */

.book-meeting-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--p) 0%, var(--p-light) 100%);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(107, 78, 230, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 60px;
}

.fab-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: transform 0.3s ease;
}

.fab-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.fab-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    padding-right: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    pointer-events: none;
}

.fab-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--p);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    animation: fabPulse 2s infinite;
    pointer-events: none;
}

@keyframes fabPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

@media (hover: hover) and (pointer: fine) {
    .book-meeting-fab:hover .fab-content {
        width: 200px;
        gap: 4px;
        box-shadow: 0 15px 50px rgba(107, 78, 230, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }

    .book-meeting-fab:hover .fab-text {
        opacity: 1;
        transform: translateX(0);
    }

    .book-meeting-fab:hover .fab-icon {
        transform: rotate(-10deg) scale(0.9);
    }

    .book-meeting-fab:hover .fab-pulse-ring {
        animation: none;
        opacity: 0;
    }
}

.book-meeting-fab:active .fab-content {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .book-meeting-fab {
        bottom: 20px;
        right: 20px;
    }

    .fab-content {
        height: 56px;
        width: 56px;
        box-shadow: 0 6px 30px rgba(107, 78, 230, 0.4);
    }

    .fab-icon {
        width: 56px;
        height: 56px;
    }

    .fab-icon svg {
        width: 22px;
        height: 22px;
    }

    .book-meeting-fab.expanded .fab-content {
        width: 180px;
        gap: 2px;
    }

    .book-meeting-fab.expanded .fab-text {
        opacity: 1;
        transform: translateX(0);
        padding-right: 20px;
        font-size: 0.85rem;
    }

    .book-meeting-fab.interacted .fab-pulse-ring {
        animation: none;
        opacity: 0;
    }
}

@supports (padding: max(0px)) {
    .book-meeting-fab {
        bottom: max(30px, env(safe-area-inset-bottom) + 10px);
        right: max(30px, env(safe-area-inset-right) + 10px);
    }
    
    @media (max-width: 768px) {
        .book-meeting-fab {
            bottom: max(20px, env(safe-area-inset-bottom) + 10px);
            right: max(20px, env(safe-area-inset-right) + 10px);
        }
    }
}

/* ============================================
   Animations
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Mobile Optimizations
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 50px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-section {
        padding: 80px 0;
    }
    
    .work-section .section-header-center {
        padding: 0 24px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.featured {
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-form {
        padding: 24px;
    }
    
    .write-review-header {
        padding: 20px 24px;
    }
    
    .modal-header {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 16px;
    }
    
    .modal-icon {
        margin: 0 auto;
        width: 56px;
        height: 56px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-price {
        text-align: center;
    }
    
    .modal-price .amount {
        font-size: 2rem;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
    }
    
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-footer {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-glass {
        padding: 10px 16px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-main {
        width: 36px;
        height: 36px;
        margin-top: 8px;
    }
    
    .nav-cta {
        display: none;
    }

    .hero {
        padding: 80px 20px 40px;
        min-height: auto;
        display: block;
        position: relative;
        overflow: hidden;
        text-align: left;
        margin-top: 40px;
    }

    .hero::before {
        display: block;
        content: '';
        position: absolute;
        top: -10%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--p-glow) 0%, transparent 70%);
        opacity: 0.5;
        filter: blur(60px);
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: left;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 24px;
        background: rgba(107, 78, 230, 0.2);
        border-color: rgba(107, 78, 230, 0.5);
        display: inline-flex;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.05;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .hero h1 span {
        display: inline;
    }

    .hero h1 span::after {
        height: 30%;
        bottom: 0;
    }

    .hero-sub {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 32px;
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn-main {
        flex: 1;
        padding: 16px 20px;
        font-size: 0.85rem;
        margin: 0;
        min-width: 0;
    }

    .btn-ghost {
        flex: 1;
        padding: 16px 20px;
        font-size: 0.85rem;
        margin: 0;
        min-width: 0;
        background: rgba(255,255,255,0.05);
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        margin-top: 0;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .h-stat {
        text-align: center;
        flex: 1;
    }

    .h-stat strong {
        font-size: 1.5rem;
    }

    .h-stat span {
        font-size: 0.7rem;
    }

    section, .pricing, .results, .cta-big, footer {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 40px;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
        max-width: 100%;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .section-header-center {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .section-header-center p {
        font-size: 1rem;
    }

    .service-card {
        padding: 30px 24px;
    }

    .service-num {
        font-size: 3rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .pricing {
        padding: 60px 0;
    }

    .faq-q {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .faq-a {
        font-size: 0.9rem;
    }

    .cta-big {
        padding: 80px 20px;
    }

    .cta-big h2 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 18px 36px;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .star-input {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .btn-main, .btn-ghost {
        padding: 14px 16px;
        font-size: 0.8rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mobile-amount {
        font-size: 2.5rem;
    }
    
    .mobile-price-card {
        padding: 32px 20px;
    }
    
    .contact-modal-content {
        padding: 32px 24px;
    }
    
    .contact-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility */
.dat30 {
    margin-top: 4px;
}

.carousel-container {
    display: none !important;
}
