/* =============================================
   RAWHIRE - Modern, High-End Styles
   ============================================= */

/* CSS Variables for Easy Theming */
:root {
    /* Colors */
    --color-primary: #FF6B35;
    --color-primary-dark: #E5552D;
    --color-secondary: #004E89;
    --color-accent: #F7B801;
    --color-dark: #0A0E27;
    --color-dark-light: #1A1F3A;
    --color-gray: #64748B;
    --color-gray-light: #E2E8F0;
    --color-white: #FFFFFF;
    --color-background: #FAFBFC;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
    --gradient-text: linear-gradient(135deg, #FF6B35, #F7B801, #FF6B35);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* =============================================
   UTILITY CLASSES
   ============================================= */

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

.text-gradient {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
    transition: var(--transition-base);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: var(--transition-base);
}

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

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 184, 1, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-light);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =============================================
   SECTION HEADERS
   ============================================= */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* =============================================
   PROBLEM SECTION
   ============================================= */

.problem {
    padding: 4rem 0 3rem;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.problem .section-header {
    margin-bottom: 3rem;
}

.problem .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.problem .section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
}

.problem-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 1rem 1.5rem;
}

.problem-slider::-webkit-scrollbar {
    display: none;
}

.problem-card {
    position: relative;
    min-width: 280px;
    max-width: 320px;
    flex: 0 0 auto;
    padding: 2rem 1.5rem;
    background: var(--color-background);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-light);
    transition: all var(--transition-base);
    scroll-snap-align: center;
}

@media (min-width: 768px) {
    .problem-slider {
        gap: 2rem;
        padding: 0.5rem 2rem 2rem;
    }
    .problem-card {
        min-width: 300px;
        max-width: 350px;
    }
}

@media (min-width: 1200px) {
    .problem-slider {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        overflow: visible;
        padding: 0;
    }
    .problem-card {
        min-width: auto;
        max-width: none;
    }
    .slider-nav {
        display: none;
    }
}

.problem-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    background: var(--color-white);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform var(--transition-base);
}

.problem-card:hover .problem-icon {
    transform: scale(1.15);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.3;
}

.problem-card p {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
}

.slider-btn svg {
    width: 18px;
    height: 18px;
}

.slider-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    transform: none;
    background: var(--color-white);
    border-color: var(--color-gray-light);
    color: var(--color-dark);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
}

.slider-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background: var(--color-primary);
    opacity: 0.7;
}

/* Hide navigation when all cards are visible (desktop) */
@media (min-width: 1200px) {
    .problem .slider-nav {
        display: none;
    }
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: var(--color-white);
}

.services .section-header {
    margin-bottom: 3rem;
}

.services .section-badge {
    background: var(--color-white);
    color: var(--color-dark);
}

.services .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-white);
}

.services .section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.service-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile Slider */
@media (max-width: 768px) {
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1.5rem;
        padding: 0 1rem 2rem;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        min-width: 300px;
        max-width: 320px;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
}

/* =============================================
   VIDEO EXAMPLES SECTION
   ============================================= */

.video-examples {
    padding: 4rem 0;
    background: var(--color-background);
}

.video-examples .section-header {
    margin-bottom: 3rem;
}

.video-examples .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.video-examples .section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.example-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    border: 2px solid var(--color-gray-light);
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.example-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 Aspect Ratio (portrait) */
    background: #000;
    overflow: hidden;
}

.ai-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.example-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.example-video-wrapper.placeholder {
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.placeholder-content p {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.9;
}

.example-info {
    padding: 2rem;
}

.example-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.example-info p {
    color: var(--color-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =============================================
   IMAGE SLIDER
   ============================================= */

.image-slider-section {
    margin-top: 5rem;
    padding: 0 1rem;
}

.section-header-small {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-small h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.section-header-small p {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.image-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.image-slider {
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-dark-light);
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.image-slide {
    min-width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 800px;
    min-height: 650px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.7) 70%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: var(--color-white);
    transform: translateY(0);
    transition: all var(--transition-base);
}

.slide-caption h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    line-height: 1.3;
}

.slide-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.image-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.image-slider-nav .slider-btn {
    background: var(--gradient-primary);
    border: none;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-slider-nav .slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.image-slider-nav .slider-btn:hover::before {
    width: 100%;
    height: 100%;
}

.image-slider-nav .slider-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
}

.image-slider-nav .slider-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.image-slider-nav .slider-btn:disabled:hover {
    transform: scale(1);
}

.image-slider-nav .slider-btn svg {
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.image-slider-nav .slider-dots {
    display: flex;
    gap: 0.75rem;
}

.image-slider-nav .slider-dots .dot {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background: var(--color-gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

.image-slider-nav .slider-dots .dot:hover {
    background: var(--color-gray);
    transform: scale(1.15);
}

.image-slider-nav .slider-dots .dot.active {
    background: var(--gradient-primary);
    transform: scale(1.3);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Slide counter badge */
.image-slider-wrapper::before {
    content: attr(data-slide-count);
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 968px) {
    .image-slider-section {
        margin-top: 4rem;
    }

    .section-header-small {
        margin-bottom: 2rem;
    }

    .image-slide img {
        max-height: 600px;
        min-height: 500px;
    }

    .slide-caption {
        padding: 2rem 1.5rem 1.5rem;
    }

    .slide-caption h4 {
        font-size: 1.25rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .image-slider-section {
        margin-top: 3rem;
    }

    .image-slide img {
        max-height: 500px;
        min-height: 400px;
    }

    .slide-caption {
        padding: 1.5rem 1rem 1rem;
    }

    .image-slider-nav .slider-btn {
        width: 3rem;
        height: 3rem;
    }

    .image-slider-nav {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .image-slider-nav .slider-dots {
        gap: 0.5rem;
    }

    .image-slider-nav .slider-dots .dot {
        width: 0.75rem;
        height: 0.75rem;
    }
}

/* =============================================
   HOW IT WORKS / PROCESS
   ============================================= */

.how-it-works {
    padding: 4rem 0;
    background: var(--color-white);
}

.how-it-works .section-header {
    margin-bottom: 3rem;
}

.how-it-works .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.how-it-works .section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 3.5rem;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.step-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.step-duration {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    background: var(--color-background);
    border: 1px solid var(--color-gray-light);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray);
}

.process-guarantee {
    margin-top: var(--spacing-lg);
    padding: 2rem;
    background: var(--gradient-dark);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.process-guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-guarantee p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   PRICING SECTION
   ============================================= */

.pricing {
    padding: 4rem 0;
    background: var(--color-background);
}

.pricing .section-header {
    margin-bottom: 3rem;
}

.pricing .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.pricing .section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-best-for {
    color: var(--color-gray);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.pricing-includes {
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.pricing-includes p {
    font-size: 0.9rem;
    color: var(--color-dark);
    margin: 0;
}

.pricing-includes strong {
    color: var(--color-primary);
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-gray-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-gray-light);
    word-break: break-word;
    overflow-wrap: break-word;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 900;
    font-size: 1.25rem;
}

.pricing-ideal {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--color-background);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gray-light);
    margin-bottom: 2rem;
}

.pricing-ideal strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-ideal p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

.pricing-notes {
    margin-top: var(--spacing-lg);
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-gray-light);
    text-align: center;
}

.pricing-notes h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-notes p {
    color: var(--color-gray);
    font-size: 1.0625rem;
}

/* =============================================
   TEAM SECTION
   ============================================= */

.team {
    padding: 4rem 0;
    background: var(--color-white);
}

.team .section-header {
    margin-bottom: 3rem;
}

.team .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.team .section-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    position: relative;
}

.member-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: var(--color-background);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-gray-light);
    transition: var(--transition-base);
}

.team-member:hover .member-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.member-image {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--color-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info {
    flex: 1;
    text-align: left;
}

.member-role-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.member-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.member-role {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.member-bio {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.member-skills span {
    padding: 0.5rem 1.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
}

.team-difference {
    margin-top: var(--spacing-lg);
    padding: 3rem;
    background: var(--gradient-dark);
    color: var(--color-white);
    border-radius: var(--radius-2xl);
}

.team-difference h3 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.difference-item strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.difference-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* =============================================
   RESULTS / SOCIAL PROOF
   ============================================= */

.results {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.result-card {
    padding: 3rem;
    background: var(--gradient-dark);
    color: var(--color-white);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: var(--transition-base);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.result-metric {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.result-label {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.result-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: var(--color-white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-option {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
}

.contact-option h4 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.contact-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: var(--color-dark);
    color: var(--color-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-base);
}

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

/* =============================================
   LEGAL PAGES (IMPRESSUM & DATENSCHUTZ)
   ============================================= */

.legal-page {
    padding: 8rem 0 4rem;
    background: var(--color-white);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-gray-light);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    margin-top: 1.5rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    margin-top: 1rem;
}

.legal-section p {
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: var(--color-dark);
    font-weight: 700;
}

.legal-back {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-gray-light);
    text-align: center;
}

/* =============================================
   MOBILE MENU
   ============================================= */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-menu-link:hover {
    background: var(--color-background);
    transform: translateX(5px);
}

.mobile-menu-link.btn-primary {
    margin-top: 1rem;
    text-align: center;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

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

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .trust {
        padding: 1rem 0 4rem 0;
    }

    .scroll-indicator {
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-2xl: 5rem;
    }

    .desktop-nav {
        display: none;
    }

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

    .hero {
        min-height: auto;
        padding: 8rem 0 0;
    }

    .hero-blockbuster-content {
        padding: 6rem 0 3rem;
    }

    .hero-intro-cinematic {
        padding: 0;
    }

    .video-container-cinematic {
        padding: 0;
        margin-bottom: 3rem;
    }

    .scroll-indicator {
        padding: 1rem 0;
    }

    .trust {
        padding: 2rem 0 3rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto 1rem;
    }

    .hero-stat {
        padding: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-large {
        width: 100%;
    }

    .problem-grid,
    .services-grid,
    .pricing-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .member-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .member-info {
        text-align: center;
    }

    .member-image {
        width: 180px;
        height: 180px;
    }

    .member-role-badge {
        font-size: 1.1rem;
        padding: 0.6rem 1.25rem;
    }

    .member-info h3 {
        font-size: 1.75rem;
    }

    .process-step {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .process-step::after {
        left: 1.25rem;
        top: 3.5rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .service-card,
    .pricing-card,
    .team-member {
        padding: 1.5rem;
    }

    .pricing-grid {
        max-width: 100%;
        gap: 1.5rem;
    }

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

/* =============================================
   SMOOTH SCROLL REVEAL ANIMATIONS
   ============================================= */

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

.problem-card,
.service-card,
.pricing-card,
.team-member,
.result-card {
    animation: slideInFromBottom 0.6s ease forwards;
    opacity: 0;
}

.problem-card {
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.problem-card:nth-child(1) { --card-index: 1; }
.problem-card:nth-child(2) { --card-index: 2; }
.problem-card:nth-child(3) { --card-index: 3; }
.problem-card:nth-child(4) { --card-index: 4; }

/* =============================================
   BLOCKBUSTER HERO SECTION
   ============================================= */

.hero-blockbuster {
    min-height: 100vh;
    position: relative;
    background: #000000;
    overflow: hidden;
    padding: 0;
    isolation: isolate;
}

/* Animated Background */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #FF6B35 0%, transparent 70%);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #F7B801 0%, transparent 70%);
    top: 50%;
    right: -200px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #004E89 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Hero Content */
.hero-blockbuster-content {
    position: relative;
    z-index: 1;
    padding: 8rem 0 4rem;
    max-width: 1800px;
    margin: 0 auto;
}

/* Intro Section */
.hero-intro-cinematic {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
    animation: fadeInDown 1s ease;
}

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

.hero-badge-cinematic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title-cinematic {
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.text-gradient-cinematic {
    background: linear-gradient(135deg, #FF6B35, #F7B801, #FF6B35, #F7B801);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

.hero-subtitle-cinematic {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-subtitle-cinematic {
        white-space: normal;
    }
}

/* Cinematic Video Container */
.video-container-cinematic {
    padding: 0 2rem;
    margin-bottom: 5rem;
    position: relative;
}

.video-frame {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    z-index: 10;
}

.video-wrapper-cinematic {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 107, 53, 0.2),
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 200px rgba(255, 107, 53, 0.1);
    transition: all 0.5s ease;
}

.video-wrapper-cinematic:hover {
    box-shadow:
        0 0 0 2px rgba(255, 107, 53, 0.4),
        0 60px 120px rgba(0, 0, 0, 0.9),
        0 0 300px rgba(255, 107, 53, 0.2);
    transform: scale(1.005);
}

.video-placeholder-cinematic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

/* Background Video Layer - Zoomed & Blurred for Cinematic Effect */
.background-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: brightness(0.6) blur(20px) saturate(1.3);
    z-index: 1;
    opacity: 0.9;
    transform: scale(1.2);
}

/* Main Video Player - Clear & Crisp on Top */
.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 5;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Center Play/Sound Control */
.video-control-center {
    flex: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.video-play-button-cinematic {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.4));
    display: none;
}

.video-play-button-cinematic:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 30px 60px rgba(255, 107, 53, 0.6));
}

.video-cta-text {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

/* Video Status Badge */
.video-status-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 20;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #FF6B35;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.video-status-badge.unmuted .status-dot {
    background: #00FF00;
}

/* Bottom Controls Bar */
.video-bottom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 15;
}

.video-wrapper-cinematic:hover .video-bottom-controls {
    opacity: 1;
    transform: translateY(0);
}

.control-left,
.control-right {
    display: flex;
    gap: 0.5rem;
}

.control-right {
    justify-content: flex-end;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.1);
}

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

/* Time Display */
.time-display {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    margin-left: 0.5rem;
    white-space: nowrap;
}

/* Video Progress Track */
.video-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.video-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.video-placeholder-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-placeholder-cinematic:hover::before {
    opacity: 1;
}

/* Play Button with Animated Rings */
.play-button-wrapper {
    position: relative;
    z-index: 2;
}

.play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.3);
    animation: ringPulse 3s infinite ease-out;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.video-play-button-cinematic {
    position: relative;
    transition: all 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.4));
}

.video-play-button-cinematic:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 30px 60px rgba(255, 107, 53, 0.6));
}

/* Video Info Overlay */
.video-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}

.video-info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-quality-badge,
.video-duration-badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.video-quality-badge {
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 184, 1, 0.2));
    border-color: rgba(255, 107, 53, 0.3);
}

.video-info-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.video-placeholder-cinematic:hover .video-info-bottom {
    opacity: 1;
    transform: translateY(0);
}

.video-title-cinema h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.video-title-cinema p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Scanline Effect */
.video-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(1000px);
    }
}


/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
}

.hero-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.hero-stat .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInUp 1.5s ease 1s both;
}

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

.scroll-indicator span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* =============================================
   TRUST SECTION
   ============================================= */

.trust {
    padding: 2rem 0 6rem 0;
    background: var(--color-white);
}

.trust-content {
    display: grid;
    gap: 4rem;
}

/* Trust Logos */
.trust-logos {
    text-align: center;
}

.trust-header {
    margin-bottom: 2rem;
}

.trust-header p {
    color: var(--color-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    opacity: 0.6;
}

.logo-item {
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: var(--radius-md);
    color: var(--color-gray);
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--color-gray-light);
    transition: var(--transition-base);
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Trust Testimonials */
.trust-testimonials {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-featured {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: var(--radius-xl);
    position: relative;
}

.testimonial-featured::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: rgba(255, 107, 53, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.3rem;
}

.author-name {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-role {
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    gap: 1.5rem;
}

.trust-stat {
    background: var(--color-background);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.trust-stat:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.trust-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust-stat .stat-label {
    color: var(--color-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

/* =============================================
   WHO WE ARE SECTION
   ============================================= */

.who-we-are {
    padding: 6rem 0;
    background: var(--color-background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.manifesto {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.manifesto p {
    color: var(--color-gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* =============================================
   WHAT YOU GET SECTION
   ============================================= */

.what-you-get {
    padding: 6rem 0;
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: var(--color-background);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-base);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--color-white);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    color: var(--color-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE - NEW SECTIONS
   ============================================= */

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-blockbuster-content {
        padding: 6rem 0 3rem;
    }

    .hero-intro-cinematic {
        margin-bottom: 3rem;
    }

    .video-wrapper-cinematic {
        padding-bottom: 56.25%; /* 16:9 on mobile */
        border-radius: 12px;
    }

    .video-info-overlay {
        padding: 1rem;
    }

    .video-quality-badge,
    .video-duration-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .video-container-cinematic {
        margin-bottom: 3rem;
    }

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

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

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-featured {
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero-blockbuster-content {
        padding: 5rem 0 2rem;
    }

    .hero-title-cinematic {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .video-container-cinematic {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

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

    .cta-inline {
        flex-direction: column;
    }

    .cta-inline .btn-large {
        width: 100%;
    }

    .orb-1, .orb-2, .orb-3 {
        width: 300px;
        height: 300px;
    }
}
