/**
 * ============================================================
 * TopCorner Cuts - Main Stylesheet
 * ============================================================
 * Dynamic Edge Theme - Dark, Energetic, Modern
 * ============================================================
 * 
 * TABLE OF CONTENTS:
 * 1. CSS Variables
 * 2. Reset
 * 3. Ghost Text Overlay
 * 4. Utility Classes
 * 5. Scroll Progress Bar
 * 6. Header & Navigation
 * 7. Buttons
 * 8. Animations & Scroll Reveal
 * 9. Hero Section
 * 10. Floating Particles
 * 11. Stats Section
 * 12. Section Styles
 * 13. Problem Section
 * 14. Pricing Section
 * 15. Why Us Section
 * 16. FAQ Section
 * 17. Testimonials Section
 * 18. Contact Form
 * 19. CTA Section
 * 20. Footer
 * 21. Who We Work With Section
 * 22. Portfolio Section
 * 23. Video Lightbox
 * 24. Floating Elements
 * 25. Alerts
 * 26. About Page
 * 27. Thank You Page
 * 28. 404 Page
 * 29. Smooth Section Transitions
 * 30. RESPONSIVE - All Media Queries (Organized)
 * 31. Services Page - Stakes Section
 * 32. Services Page - Rush Note
 * 33. Services Page - Comparison Section
 * 34. Services Page - Included Section
 * 35. Services Page - Portfolio Preview
 * 36. Services Page - Guarantee Section
 * 37. Services Page - Sticky Mobile CTA
 * 38. Services Page - Responsive Styles
 * 39. Services Page - Ghost Text Additions
 * ============================================================
 */

/* ==================== 1. CSS VARIABLES ==================== */
:root {
    /* Colors */
    --primary-green: #90EE90;
    --neon-green: #39FF14;
    --black: #0A0A0A;
    --dark-grey: #111111;
    --card-bg: #0F0F0F;
    --white: #FFFFFF;
    --off-white: #E8E8E8;
    --grey: #777777;
    --light-grey: #999999;
    --gold: #FFD700;
    --error: #ff4444;
    --success: #44ff44;
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
}

/* ==================== 2. RESET ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ==================== 3. GHOST TEXT OVERLAY ==================== */
.ghost-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.ghost-text.visible {
    opacity: 1;
}

/* ==================== 4. UTILITY CLASSES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== 5. SCROLL PROGRESS BAR ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--neon-green));
    z-index: 1001;
    transition: width 0.1s linear;
}

/* ==================== 6. HEADER & NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 24px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease, background 0.3s ease;
    background: transparent;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 16px 5%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(144, 238, 144, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--white);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 45px;
}

.nav a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--light-grey);
    letter-spacing: 0.5px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--neon-green));
    transition: width var(--transition-normal);
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-cta {
    display: block;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== 7. BUTTONS ==================== */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    padding: 18px 40px;
    font-size: 1.15rem;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    color: var(--black);
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(57, 255, 20, 0.4), 0 0 30px rgba(57, 255, 20, 0.3);
}

.btn-secondary {
    padding: 16px 32px;
    font-size: 1rem;
    background: transparent;
    border: 1px solid var(--grey);
    color: var(--off-white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--neon-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* ==================== 8. ANIMATIONS & SCROLL REVEAL ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 20px 5px rgba(37, 211, 102, 0.2); 
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ==================== 9. HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.9) 100%),
        var(--hero-image, #0A0A0A) center/cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(57, 255, 20, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(144, 238, 144, 0.1);
    border: 1px solid rgba(144, 238, 144, 0.2);
    padding: 8px 16px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--primary-green);
}

.trust-badge::before {
    content: '✓';
    font-weight: bold;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    letter-spacing: 2px;
    line-height: 0.95;
    margin-bottom: 28px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .line {
    display: block;
}

.hero h1 .line-small {
    font-size: 0.6em;
    color: var(--grey);
    -webkit-text-fill-color: var(--grey);
    letter-spacing: 4px;
}

.hero p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--light-grey);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* ==================== 10. FLOATING PARTICLES ==================== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp 15s infinite linear;
}

.particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particles span:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; width: 4px; height: 4px; }
.particles span:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 18s; }
.particles span:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 13s; width: 8px; height: 8px; }
.particles span:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 16s; width: 5px; height: 5px; }
.particles span:nth-child(6) { left: 75%; animation-delay: 5s; animation-duration: 11s; }
.particles span:nth-child(7) { left: 85%; animation-delay: 0.5s; animation-duration: 15s; width: 7px; height: 7px; }
.particles span:nth-child(8) { left: 25%; animation-delay: 6s; animation-duration: 17s; width: 4px; height: 4px; }
.particles span:nth-child(9) { left: 55%; animation-delay: 2.5s; animation-duration: 14s; }
.particles span:nth-child(10) { left: 90%; animation-delay: 4.5s; animation-duration: 19s; width: 6px; height: 6px; }

/* ==================== 11. STATS SECTION ==================== */
.stats {
    background: var(--dark-grey);
    padding: 80px 5% 100px;
    position: relative;
    overflow: hidden;
}

.stats::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
}

.stat-number.gold {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--grey), transparent);
    opacity: 0.3;
}

/* ==================== 12. SECTION STYLES ==================== */
.section {
    padding: var(--section-padding) 5%;
}

.section-dark {
    background: var(--dark-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--grey);
    font-size: 1rem;
}

/* ==================== 13. PROBLEM SECTION ==================== */
.problem {
    position: relative;
    background: var(--black);
    overflow: visible;
}

.problem-scroll-container {
    height: 250vh;
    position: relative;
    z-index: 1;
}

.problem-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.problem-left {
    flex: 1;
    position: relative;
}

.problem-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.problem-content-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.problem-content-item.active {
    opacity: 1;
    transform: translateY(0);
}

.problem-content-item p {
    color: var(--light-grey);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 0;
}

.problem-content-item .highlight-text {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.3rem;
}

.problem-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 30px;
}

.problem-left h2 span {
    color: var(--grey);
    display: block;
    font-size: 0.5em;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.problem-left h2 .strike {
    text-decoration: line-through;
    text-decoration-color: var(--error);
    opacity: 0.5;
}

.problem-right p {
    font-size: 1.1rem;
    color: var(--light-grey);
    line-height: 1.9;
    margin-bottom: 24px;
    font-weight: 300;
}

.problem-right p strong {
    color: var(--white);
    font-weight: 500;
}

.highlight-text {
    color: var(--primary-green) !important;
    font-weight: 400 !important;
}

/* ==================== 14. PRICING SECTION ==================== */
.pricing {
    padding: 140px 5%;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pricing .section-header,
.pricing-grid {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(144, 238, 144, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(144, 238, 144, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    background: rgba(57, 255, 20, 0.05);
    border: 2px solid var(--primary-green);
    padding: 35px 30px;
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(57, 255, 20, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 6px 14px;
}

.pricing-icon {
    width: 50px;
    height: 50px;
    background: rgba(144, 238, 144, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.pricing-card.popular .pricing-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--off-white);
}

.pricing-card .tagline {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1;
}

.pricing-card .price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--grey);
}

.pricing-card .price .currency-label {
    font-size: 0.9rem;
    color: var(--grey);
    margin-left: 5px;
}

.pricing-card.popular .price {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card ul {
    margin-bottom: 20px;
}

.pricing-card ul li {
    padding: 10px 0;
    color: var(--light-grey);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-buttons .btn {
    width: 100%;
}

.pricing-card:not(.popular) .btn-primary {
    background: transparent;
    border: 1px solid var(--grey);
    color: var(--off-white);
}

.pricing-card:not(.popular) .btn-primary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.pricing-card:not(.popular) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-card.popular .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    color: var(--black);
}

.pricing-card.popular .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.4);
    transform: translateY(-2px);
}
/* ==================== 15. WHY US SECTION ==================== */
.why-us {
    padding: 140px 5%;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.why-us::after {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.why-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-header {
    max-width: 600px;
    margin-bottom: 80px;
}

.why-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
}

.why-header h2 span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-header p {
    color: var(--grey);
    font-size: 1.05rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    padding: 40px;
    background: rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-green), var(--neon-green));
    transition: height var(--transition-normal);
}

.why-item:hover::before {
    height: 100%;
}

.why-item:hover {
    border-color: rgba(144, 238, 144, 0.2);
    transform: translateX(8px);
}

.why-item .number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #1a1a1a;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.why-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--white);
}

.why-item p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==================== 16. FAQ SECTION ==================== */
.faq {
    padding: 140px 5%;
    background: var(--dark-grey);
    position: relative;
}

.faq::before {
    display: none;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(15, 15, 15, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(144, 238, 144, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 10px 40px rgba(144, 238, 144, 0.1);
}

.accordion-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 20px;
}

.accordion-header:hover {
    background: rgba(144, 238, 144, 0.03);
}

.accordion-item.active .accordion-header {
    background: rgba(144, 238, 144, 0.05);
}

.accordion-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: var(--off-white);
    margin: 0;
    flex: 1;
}

.accordion-item.active .accordion-header h4 {
    color: var(--primary-green);
}

.accordion-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.accordion-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon {
    background: var(--primary-green);
    transform: rotate(180deg);
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
    background: var(--black);
}

.accordion-item.active .accordion-icon::after {
    opacity: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 30px 28px;
    color: var(--light-grey);
    font-size: 1rem;
    line-height: 1.9;
    border-top: 1px solid #222;
    margin: 0;
    padding-top: 20px;
}

/* ==================== 17. TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 140px 5%;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    background: rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--neon-green));
    transition: width 0.4s ease;
}

.testimonial-card:hover::before {
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(144, 238, 144, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card.main {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card.main .quote {
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    color: var(--off-white);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-card .quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-green);
    opacity: 0.3;
    position: absolute;
    top: 30px;
    left: 40px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
}

.author-info h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--grey);
}

.testimonial-rating {
    margin-top: 20px;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ==================== 18. CONTACT FORM ==================== */
.contact-section {
    padding: 100px 5%;
    background: var(--dark-grey);
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - WhatsApp & Info */
.contact-info-side {
    position: sticky;
    top: 120px;
}

/* WhatsApp CTA Box */
.whatsapp-cta-box {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.whatsapp-icon i,
.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    color: #25D366;
    stroke: #25D366;
}

.whatsapp-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--white);
}

.whatsapp-cta-box p {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* Divider */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.contact-divider span {
    font-size: 0.85rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Other Contact Info */
.contact-other-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--off-white);
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: rgba(144, 238, 144, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(144, 238, 144, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i,
.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    stroke: var(--primary-green);
}

.contact-info-text {
    flex: 1;
}

.contact-info-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text p {
    color: var(--off-white);
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary-green);
}

/* Form Base Styles */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--light-grey);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid #222;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(144, 238, 144, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 50px;
}

/* Validation States */
.form-group.success input,
.form-group.success textarea {
    border-color: var(--success);
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error);
}

.form-group .error-message {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 6px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Honeypot (hidden) */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Right Side - Form */
.contact-form-side {
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
}

.contact-form-header {
    margin-bottom: 35px;
}

.contact-form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-form-header p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* Form Message */
#formMessage .alert {
    margin-bottom: 25px;
    padding: 18px 20px;
    border: 1px solid;
    animation: fadeIn 0.3s ease;
}

#formMessage .alert-success {
    background: rgba(68, 255, 68, 0.1);
    border-color: var(--success);
    color: var(--success);
}

#formMessage .alert-error {
    background: rgba(255, 68, 68, 0.1);
    border-color: var(--error);
    color: var(--error);
}

/* Form adjustments */
.contact-form-side .form-group {
    margin-bottom: 22px;
}

.contact-form-side .btn-primary {
    width: 100%;
    padding: 18px 40px;
}

/* ==================== TRUST INDICATORS ==================== */
.contact-trust {
    padding: 80px 5%;
    background: var(--black);
}

.trust-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 30px;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: rgba(144, 238, 144, 0.2);
    transform: translateY(-5px);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(144, 238, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i,
.trust-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
    stroke: var(--primary-green);
}

.trust-text h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
}

.trust-text p {
    color: var(--grey);
    font-size: 0.85rem;
    margin: 0;
}

/* ==================== 19. CTA SECTION ==================== */
.cta {
    padding: 160px 5%;
    position: relative;
    overflow: hidden;
}

.cta::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 25vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.85) 100%),
        var(--cta-image, #0A0A0A) center/cover;
    z-index: -1;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 24px;
}

.cta h2 span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.15rem;
    color: var(--light-grey);
    max-width: 500px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== 20. FOOTER ==================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 200px;
    width: auto;
}

.trust-bar {
    padding: 40px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey);
    font-size: 0.85rem;
    padding: 10px 20px;
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.trust-item:hover {
    border-color: rgba(144, 238, 144, 0.3);
    transform: translateY(-3px);
}

.trust-item i,
.trust-item svg {
    color: var(--primary-green);
}

.footer-main {
    padding: 70px 5% 40px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.footer-brand h3 span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(144, 238, 144, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a,
.footer ul li span {
    color: var(--grey);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-bottom {
    padding: 25px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--grey);
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-green);
    transition: all var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--neon-green);
}

/* ==================== 21. WHO WE WORK WITH SECTION ==================== */
.who-we-help {
    padding: 140px 5%;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.who-we-help::before {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.who-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.who-item {
    padding: 40px 30px;
    background: rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all var(--transition-normal);
}

.who-item:hover {
    background: rgba(17, 17, 17, 0.1);
    border-color: rgba(144, 238, 144, 0.3);
    transform: translateY(-5px);
}

.who-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-icon i,
.who-icon svg {
    width: 32px;
    height: 32px;
    color: var(--black);
    stroke: var(--black);
}

.who-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--white);
}

.who-item p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== 22. PORTFOLIO SECTION ==================== */
.portfolio {
    padding: 140px 5%;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 15vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.portfolio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.portfolio-item {
    background: rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.portfolio-item:hover {
    background: rgba(17, 17, 17, 0.1);
    border-color: rgba(144, 238, 144, 0.3);
    transform: translateY(-5px);
}

.portfolio-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.3);
}

.play-btn i,
.play-btn svg {
    width: 28px;
    height: 28px;
    color: var(--black);
    stroke: var(--black);
    margin-left: 4px;
}

.portfolio-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(57, 255, 20, 0.5);
}

.portfolio-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 20px;
    color: var(--white);
}

.portfolio-item span {
    color: var(--grey);
    font-size: 0.9rem;
}

/* ==================== 23. VIDEO LIGHTBOX ==================== */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.lightbox-close i,
.lightbox-close svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    stroke: var(--white);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-close:hover i,
.lightbox-close:hover svg {
    color: var(--primary-green);
    stroke: var(--primary-green);
}

.lightbox-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ==================== 24. FLOATING ELEMENTS ==================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 99;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 50px;
    height: 50px;
    background: var(--dark-grey);
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    cursor: pointer;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* ==================== 25. ALERTS ==================== */
.alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid;
}

.alert-success {
    background: rgba(68, 255, 68, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(255, 68, 68, 0.1);
    border-color: var(--error);
    color: var(--error);
}

/* ==================== 26. ABOUT PAGE ==================== */
.about-hero {
    padding: 180px 5% 100px;
    background: var(--dark-grey);
    position: relative;
}

.about-content {
    padding: 100px 5%;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--light-grey);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Our Story Section */
.about-story {
    padding: 140px 5%;
    background: var(--black);
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/backgrounds/about-story-stadium-bg.webp') center center / cover no-repeat;
    opacity: 0.60;
    z-index: 0;
}

.about-story::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 0;
}

.story-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-content p {
    color: var(--light-grey);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Founder Section */
.founder {
    padding: 140px 5%;
    background: var(--dark-grey);
}

.founder-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.founder-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.founder-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.founder-content h2 span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-green);
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.founder-content p {
    color: var(--light-grey);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Vision Section - Sticky Scroll */
.mission-vision {
    position: relative;
    background: var(--black);
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/backgrounds/about-mission-vision-bg.webp') center center / cover no-repeat;
    background-attachment: fixed;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.mission-vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.90) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(10, 10, 10, 0.90) 100%);
    z-index: 0;
    pointer-events: none;
}

.mv-scroll-container {
    height: 300vh;
    position: relative;
}

.mv-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.mv-header {
    text-align: center;
    margin-bottom: 60px;
}

.mv-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 3px;
    color: var(--white);
}

.mv-header h2 span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1000px;
    padding: 0 5%;
}

.mv-card {
    flex: 0 0 400px;
    max-width: 400px;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid #1a1a1a;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    border-color: rgba(144, 238, 144, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mv-mission {
    transform: translateY(100vh);
}

.mv-vision {
    transform: translateY(100vh);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i,
.mv-icon svg {
    width: 36px;
    height: 36px;
    color: var(--black);
    stroke: var(--black);
}

.mv-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

.mv-card p {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    padding: 140px 5%;
    background: var(--black);
    position: relative;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    margin-top: 80px;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #333;
    border-radius: 3px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary-green), var(--neon-green));
    border-radius: 3px;
    transition: height 0.1s linear;
}

.timeline-item {
    position: relative;
    padding: 40px 0;
    opacity: 0.4;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -43px;
    top: 50px;
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    border: 3px solid var(--black);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-green);
    box-shadow: 0 0 20px rgba(144, 238, 144, 0.5);
}

.timeline-content {
    background: var(--dark-grey);
    border: 1px solid #1a1a1a;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-content {
    border-color: rgba(144, 238, 144, 0.3);
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #1a1a1a;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-number {
    color: rgba(144, 238, 144, 0.2);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--white);
}

.timeline-content p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Core Values Section */
.core-values {
    padding: 140px 5%;
    background: var(--dark-grey);
    position: relative;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/backgrounds/about-values-team-bg.webp') center center / cover no-repeat;
    opacity: 0.30;
    z-index: 0;
}

.core-values::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.85) 50%, rgba(17, 17, 17, 0.95) 100%);
    z-index: 0;
}

.values-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: var(--card-bg);
    border: 1px solid #1a1a1a;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--neon-green));
    transition: width 0.4s ease;
}

.value-item:hover::before {
    width: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: rgba(144, 238, 144, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #1a1a1a;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--white);
}

.value-item p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Behind The Scenes Section */
.behind-scenes {
    padding: 140px 5%;
    background: var(--black);
}

.bts-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.bts-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
}

.bts-item.bts-reverse {
    direction: rtl;
}

.bts-item.bts-reverse > * {
    direction: ltr;
}

.bts-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.bts-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.bts-image:hover img {
    transform: scale(1.05);
}

.bts-content p {
    color: var(--light-grey);
    font-size: 1.15rem;
    line-height: 1.9;
}

/* ==================== 27. THANK YOU PAGE ==================== */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5%;
}

.thank-you-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.thank-you-content h1 span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-content p {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ==================== 28. 404 PAGE ==================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5%;
}

.error-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.error-content p {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ==================== 29. SMOOTH SECTION TRANSITIONS ==================== */
.stats,
.problem,
.pricing,
.why-us,
.who-we-help,
.testimonials,
.portfolio,
.cta {
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--dark-grey) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   30. RESPONSIVE - ALL MEDIA QUERIES (ORGANIZED)
   ============================================================
   Breakpoints:
   - 1024px: Tablets & Small Laptops
   - 900px: Mission & Vision specific
   - 768px: Tablets & Large Phones
   - 480px: Small Phones
   ============================================================ */

/* ==================== PRICING RESPONSIVE ==================== */

/* -------------------- 1024px Breakpoint -------------------- */
@media (max-width: 1024px) {
    /* Variables */
    :root {
        --section-padding: 80px;
    }
    
    /* Who We Help Grid */
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.popular {
        order: -1;
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    /* Why Us Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    /* Problem Section */
    .problem-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.main {
        grid-row: auto;
    }
    
    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Form Row */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Founder Section */
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-content {
        text-align: center;
    }
    
    /* Mission & Vision */
    .mv-sticky-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Behind The Scenes */
    .bts-item,
    .bts-item.bts-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    /* Contact */    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-side {
        position: relative;
        top: auto;
    }
    
    .whatsapp-cta-box {
        padding: 35px;
    }
    
    .contact-form-side {
        padding: 40px;
    }    
}

/* -------------------- 900px Breakpoint -------------------- */
@media (max-width: 900px) {
    /* Mission & Vision Cards */
    .mv-cards-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .mv-card {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .mv-scroll-container {
        height: 400vh;
    }
}

/* -------------------- 768px Breakpoint -------------------- */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 18px 5%;
    }
    
    /* Navigation */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav a {
        font-family: var(--font-heading);
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 130px 5% 120px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Stats Section */
    .stats-grid {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }
    
    /* Trust Bar */
    .trust-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Problem Section */
    .problem-sticky {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 60px 5%;
    }
    
    .problem-left,
    .problem-right {
        flex: none;
        width: 100%;
    }
    
    .problem-right {
        height: 200px;
    }
    
    .problem-scroll-container {
        height: 300vh;
    }
    
    /* Who We Help Grid */
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer ul li a:hover {
        padding-left: 0;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Floating Elements */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 24px;
        width: 45px;
        height: 45px;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 40px;
    }
    
    .timeline-line {
        left: 10px;
    }
    
    .timeline-dot {
        left: -38px;
    }
    
    .timeline-content {
        padding: 30px;
    }
    
    .timeline-number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }

    /* Contact */
    .contact-section {
        padding: 80px 5%;
    }
    
    .contact-layout {
        gap: 40px;
    }
    
    .whatsapp-cta-box {
        padding: 30px 25px;
    }
    
    .whatsapp-cta-box h3 {
        font-size: 1.4rem;
    }
    
    .contact-form-side {
        padding: 30px 25px;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Trust Grid */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 20px;
    }
}

/* -------------------- 480px Breakpoint -------------------- */
@media (max-width: 480px) {
    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2.5rem;
    }

    /* Pricing Cards */
    .pricing-card {
        padding: 30px 22px;
    }
    
    .pricing-card.popular {
        padding: 35px 25px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 35px 25px;
    }
    
    /* Accordion */
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-content p {
        padding: 0 20px 20px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 5%;
    }
    
    .whatsapp-cta-box {
        padding: 25px 20px;
    }
    
    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-form-side {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        padding: 12px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }    
}

/* ==================== 31. SERVICES PAGE - STAKES SECTION ==================== */
.stakes-section {
    padding: 140px 5%;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.stakes-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.stakes-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stakes-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1.1;
}

.stakes-left h2 span {
    display: block;
    font-size: 0.4em;
    color: var(--grey);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.stakes-right p {
    color: var(--light-grey);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.stakes-right p:last-child {
    margin-bottom: 0;
}

.stakes-right p strong {
    color: var(--white);
    font-weight: 500;
}

.stakes-right .highlight-text {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 1.2rem;
}

/* ==================== 32. SERVICES PAGE - RUSH NOTE ==================== */
.rush-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px 30px;
    background: rgba(144, 238, 144, 0.05);
    border: 1px solid rgba(144, 238, 144, 0.15);
    border-radius: 4px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.rush-note p {
    color: var(--light-grey);
    font-size: 0.95rem;
    margin: 0;
}

.rush-note strong {
    color: var(--primary-green);
}

/* ==================== 33. SERVICES PAGE - COMPARISON SECTION ==================== */
.comparison {
    padding: 140px 5%;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Desktop Table */
.comparison-table {
    margin-top: 60px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table thead tr {
    background: var(--dark-grey);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th.highlight-col {
    background: rgba(144, 238, 144, 0.1);
    color: var(--primary-green);
    position: relative;
}

.comparison-table th.highlight-col::before {

    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    color: var(--black);
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    color: var(--light-grey);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--off-white);
    font-weight: 500;
}

.comparison-table td.highlight-col {
    background: rgba(144, 238, 144, 0.03);
}

.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:hover td.highlight-col {
    background: rgba(144, 238, 144, 0.06);
}

.comparison-table td strong {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.comparison-table .check {
    color: var(--primary-green);
    font-weight: bold;
}

.comparison-table .cross {
    color: var(--grey);
    opacity: 0.5;
}

/* Mobile Comparison Cards */
.comparison-mobile {
    display: none;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.comparison-card {
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    border-color: rgba(144, 238, 144, 0.2);
    transform: translateY(-5px);
}

.comparison-card.popular {
    border: 2px solid var(--primary-green);
    background: rgba(144, 238, 144, 0.03);
}

.comparison-card .popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
}

.comparison-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--white);
    margin: 0;
}

.comparison-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-green);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 10px 0;
    color: var(--light-grey);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.comparison-card .check {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1rem;
}

.comparison-card .cross {
    color: var(--grey);
    opacity: 0.5;
    font-size: 1rem;
}

/* ==================== 34. SERVICES PAGE - INCLUDED SECTION ==================== */
.included-scroll-section {
    position: relative;
    height: 420vh;
}

.included-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--black);
}

/* Section Header */
.included-header {
    padding: 80px 5% 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.included-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.included-header h2 span {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.included-header p {
    color: var(--grey);
    font-size: 1rem;
}

/* Cards Container */
.included-cards-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: stretch;
}

/* Individual Card */
.included-card {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    transform: translateX(100vw);
    transition: transform 0.1s linear;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card widths - each stops at different position */
.included-card:nth-child(1) { 
    width: 100%;
    z-index: 1;
}
.included-card:nth-child(2) { 
    width: calc(100% - 60px);
    z-index: 2;
}
.included-card:nth-child(3) { 
    width: calc(100% - 120px);
    z-index: 3;
}
.included-card:nth-child(4) { 
    width: calc(100% - 180px);
    z-index: 4;
}

/* Card Colors - Dark Green Shades */
.included-card:nth-child(1) { 
    background: linear-gradient(135deg, #14352a 0%, #0d1f18 100%);
}
.included-card:nth-child(2) { 
    background: linear-gradient(135deg, #1a472a 0%, #122e1c 100%);
}
.included-card:nth-child(3) { 
    background: linear-gradient(135deg, #235c38 0%, #1a4028 100%);
}
.included-card:nth-child(4) { 
    background: linear-gradient(135deg, #2d7245 0%, #1f5030 100%);
}

/* Card Number - Big Background */
.included-card-number {
    font-family: var(--font-heading);
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
}

/* Card Icon */
.included-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(144, 238, 144, 0.15);
    border: 1px solid rgba(144, 238, 144, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.included-card-icon i,
.included-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    stroke: var(--primary-green);
}

/* Card Title */
.included-card-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--white);
}

/* Card Description */
.included-card-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 550px;
    line-height: 1.9;
}

/* Right side strip label */
.included-card::before {
    content: attr(data-label);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: inherit;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hide strip label on last card */
.included-card:nth-child(4)::before {
    display: none;
}

/* ==================== 35. SERVICES PAGE - PORTFOLIO PREVIEW ==================== */
.portfolio-preview {
    padding: 140px 5%;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.portfolio-preview-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portfolio-link {
    text-align: center;
    margin-top: 50px;
}

.portfolio-link p {
    color: var(--grey);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* ==================== 36. SERVICES PAGE - GUARANTEE SECTION ==================== */
.guarantee-section {
    padding: 140px 5%;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(144, 238, 144, 0.3), transparent);
}

.guarantee-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.guarantee-item {
    background: rgba(17, 17, 17, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--neon-green));
    transition: width 0.4s ease;
}

.guarantee-item:hover::before {
    width: 100%;
}

.guarantee-item:hover {
    border-color: rgba(144, 238, 144, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(144, 238, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.guarantee-icon i,
.guarantee-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-green);
    stroke: var(--primary-green);
}

.guarantee-item:hover .guarantee-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--neon-green));
    transform: scale(1.1);
}

.guarantee-item:hover .guarantee-icon i,
.guarantee-item:hover .guarantee-icon svg {
    color: var(--black);
    stroke: var(--black);
}

.guarantee-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 15px;
}

.guarantee-item p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== 37. SERVICES PAGE - STICKY MOBILE CTA ==================== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 20px;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(144, 238, 144, 0.2);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta .btn {
    width: 100%;
    text-align: center;
}

/* ==================== 38. SERVICES PAGE - RESPONSIVE STYLES ==================== */

/* -------------------- 1024px Breakpoint -------------------- */
@media (max-width: 1024px) {
    /* Stakes Section */
    .stakes-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stakes-left {
        text-align: center;
    }
    
    /* Included Grid */
    .included-card {
        padding: 50px 60px;
    }
    
    .included-card-number {
        font-size: 10rem;
        right: 60px;
    }
    
    .included-card-desc {
        max-width: 450px;
    }
    
    /* Guarantee Grid */
    .guarantee-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* -------------------- 768px Breakpoint -------------------- */
@media (max-width: 768px) {
    /* Stakes Section */
    .stakes-section {
        padding: 100px 5%;
    }
    
    .stakes-left h2 {
        font-size: 2.5rem;
    }
    
    .stakes-right p {
        font-size: 1rem;
    }
    
    /* Comparison Section */
    .comparison {
        padding: 100px 5%;
    }
    
    .comparison-table {
        display: none;
    }
    
    .comparison-mobile {
        display: flex;
    }
    
    /* Included Section */
    .included-scroll-section {
        height: auto;
        padding: 100px 5%;
    }
    
    .included-sticky {
        position: relative;
        height: auto;
    }
    
    .included-header {
        padding: 0 0 40px;
    }
    
    .included-cards-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .included-card {
        position: relative;
        width: 100% !important;
        transform: none !important;
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .included-card::before {
        display: none;
    }
    
    .included-card-number {
        font-size: 6rem;
        right: 20px;
        top: 20px;
        transform: none;
    }
    
    .included-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .included-card-icon i,
    .included-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .included-card-title {
        font-size: 1.6rem;
    }
    
    .included-card-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    /* Portfolio Preview */
    .portfolio-preview {
        padding: 100px 5%;
    }
    
    /* Guarantee Section */
    .guarantee-section {
        padding: 100px 5%;
    }
    
    .guarantee-item {
        padding: 40px 30px;
    }
    
    /* Sticky Mobile CTA */
    .sticky-mobile-cta {
        display: block;
    }
    
    /* Adjust floating elements for sticky CTA */
    .floating-whatsapp {
        bottom: 90px;
    }
    
    .back-to-top {
        bottom: 155px;
    }
}

/* -------------------- 480px Breakpoint -------------------- */
@media (max-width: 480px) {
    /* Stakes Section */
    .stakes-left h2 {
        font-size: 2rem;
    }
    
    /* Comparison Cards */
    .comparison-card {
        padding: 25px 20px;
    }
    
    .comparison-card-header h4 {
        font-size: 1.2rem;
    }
    
    .comparison-price {
        font-size: 1.5rem;
    }
    
    /* Included Items */
    .included-card {
        padding: 35px 25px;
    }
    
    .included-card-number {
        font-size: 5rem;
    }
    
    .included-card-title {
        font-size: 1.4rem;
    }
    
    /* Guarantee Items */
    .guarantee-item {
        padding: 35px 25px;
    }
    
    .guarantee-icon {
        width: 70px;
        height: 70px;
    }
    
    .guarantee-icon i,
    .guarantee-icon svg {
        width: 32px;
        height: 32px;
    }
    
    /* Rush Note */
    .rush-note {
        padding: 15px 20px;
    }
}

/* ==================== 39. SERVICES PAGE - GHOST TEXT ADDITIONS ==================== */
#ghostStakes,
#ghostCompare,
#ghostWork {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

#ghostStakes.visible,
#ghostCompare.visible,
#ghostWork.visible {
    opacity: 1;
}