/* ═══════════════════════════════════════════════════════════════════════════
   SHOPCLIP.NL - AI Product Video Agency
   High-converting Dutch landing page for AI video services
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Colors - Dark cinematic theme */
    --black: #0a0a0a;
    --dark: #111111;
    --darker: #0d0d0d;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Accent - Vibrant orange/coral */
    --accent: #ff5f1f;
    --accent-light: #ff7a45;
    --accent-dark: #e54d0f;
    --accent-glow: rgba(255, 95, 31, 0.4);
    
    /* Supporting colors */
    --success: #22c55e;
    --blue: #3b82f6;
    
    /* Typography */
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.title-highlight {
    color: var(--accent);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-icon {
    font-size: 12px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-700);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

.btn-large {
    padding: 20px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-icon {
    color: var(--accent);
    font-size: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: 10px 20px !important;
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 6px !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 95, 31, 0.15), transparent);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--black) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 95, 31, 0.1);
    border: 1px solid rgba(255, 95, 31, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 20px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 13px;
    color: var(--gray-500);
}

.hero-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-800);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BEFORE/AFTER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.before-after {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comparison-card {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-800);
}

.comparison-slider {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    z-index: 1;
}

.comparison-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-content {
    background: var(--gray-800);
}

.after-content {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark) 100%);
}

.product-placeholder {
    text-align: center;
    color: var(--gray-500);
}

.product-placeholder span {
    font-size: 64px;
    display: block;
    margin-bottom: 12px;
}

.product-placeholder p {
    font-size: 14px;
    font-weight: 500;
}

.product-placeholder.video {
    position: relative;
    color: var(--white);
}

.video-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.effect-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: ring-pulse 2s ease-out infinite;
}

.effect-ring:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.effect-ring:nth-child(2) { width: 100px; height: 100px; animation-delay: 0.3s; }
.effect-ring:nth-child(3) { width: 120px; height: 120px; animation-delay: 0.6s; }

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

.comparison-label {
    position: absolute;
    bottom: 12px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.comparison-before .comparison-label { left: 12px; }
.comparison-after .comparison-label { right: 12px; color: var(--accent); }

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: ew-resize;
}

.handle-line {
    flex: 1;
    width: 2px;
    background: var(--accent);
}

.handle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    color: var(--white);
    box-shadow: 0 0 20px var(--accent-glow);
}

.comparison-info {
    padding: 20px;
}

.comparison-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.comparison-info p {
    font-size: 13px;
    color: var(--gray-500);
}

.comparison-cta {
    text-align: center;
    margin-top: 48px;
}

.comparison-image,
.comparison-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-card:hover .comparison-video {
    opacity: 1;
}

.comparison-after .comparison-video {
    transition: opacity 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO TYPES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.video-types {
    padding: var(--section-padding) 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.type-card {
    position: relative;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--transition-medium);
}

.type-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.type-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--gray-800);
    border-radius: 12px;
    overflow: hidden;
}

.preview-animation {
    font-size: 48px;
}

.preview-animation.rotate {
    animation: rotate3d 3s ease-in-out infinite;
}

.preview-animation.zoom {
    animation: zoomPulse 2s ease-in-out infinite;
}

.preview-animation.float {
    animation: floatUp 2s ease-in-out infinite;
}

.preview-animation.unbox {
    animation: unboxReveal 2s ease-in-out infinite;
}

.preview-animation.morph {
    animation: colorShift 3s ease-in-out infinite;
}

.preview-animation.explode {
    animation: explodeOut 2s ease-in-out infinite;
}

@keyframes rotate3d {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes unboxReveal {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes colorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(60deg); }
}

@keyframes explodeOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.type-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.type-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.type-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--accent);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.benefits {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.benefit-stat {
    padding: 24px;
    background: var(--gray-900);
    border-radius: 12px;
    border: 1px solid var(--gray-800);
}

.benefit-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.number-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}

.number-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.benefit-stat p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
}

.benefits-visual {
    position: relative;
    height: 500px;
}

.benefit-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    max-width: 280px;
    animation: float 4s ease-in-out infinite;
}

.benefit-card.card-1 { top: 0; left: 0; animation-delay: 0s; }
.benefit-card.card-2 { top: 25%; right: 0; animation-delay: 0.5s; }
.benefit-card.card-3 { top: 50%; left: 10%; animation-delay: 1s; }
.benefit-card.card-4 { bottom: 10%; right: 10%; animation-delay: 1.5s; }

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

.benefit-icon {
    font-size: 32px;
}

.benefit-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.how-it-works {
    padding: var(--section-padding) 0;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 64px;
}

.step-item {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 0 30px var(--accent-glow);
}

.step-content {
    padding: 0 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.step-details span {
    padding: 6px 12px;
    background: var(--gray-900);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gray-400);
}

.step-connector {
    padding-top: 20px;
}

.step-connector svg path {
    stroke-dashoffset: 0;
    animation: dash 2s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -20; }
}

.steps-cta {
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-card {
    position: relative;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 36px;
    transition: all var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
}

.price-custom {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--gray-300);
    border-bottom: 1px solid var(--gray-800);
}

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

.pricing-features .check {
    color: var(--accent);
    font-weight: bold;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 95, 31, 0.1);
    border: 1px solid rgba(255, 95, 31, 0.2);
    border-radius: 12px;
}

.guarantee-icon {
    font-size: 32px;
}

.guarantee-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 14px;
    color: var(--gray-400);
}

/* Approach Section - Agency Style */
.approach-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.approach-main h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.approach-intro {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 48px;
}

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.approach-cta {
    position: sticky;
    top: 120px;
}

.cta-box {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border: 1px solid var(--gray-700);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.cta-box > p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-300);
}

.benefit-check {
    color: var(--accent);
    font-weight: bold;
    font-size: 16px;
}

.cta-box .btn {
    width: 100%;
    margin-bottom: 12px;
}

.cta-note {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.testimonials-section {
    padding: var(--section-padding) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 32px;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.testimonial-metric {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 95, 31, 0.1);
    border-radius: 8px;
}

.metric-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}

.metric-label {
    font-size: 13px;
    color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cta {
    padding: var(--section-padding) 0;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 95, 31, 0.2), transparent);
}

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

.cta-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 36px;
}

.cta-actions {
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.trust-item span {
    color: var(--success);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.contact {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-900);
    border-radius: 12px;
    border: 1px solid var(--gray-800);
}

.feature-icon {
    font-size: 28px;
}

.contact-feature strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-feature span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Contact Form */
.contact-form {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-300);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--white);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--darker);
    padding: 64px 0 32px;
    border-top: 1px solid var(--gray-900);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-col a,
.footer-col span {
    font-size: 14px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-grid .comparison-card:last-child {
        display: none;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .benefits-visual {
        order: -1;
        height: 400px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .approach-cta {
        position: static;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-stats .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid .comparison-card:last-child {
        display: block;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-visual {
        display: none;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 48px;
    }
    
    .step-connector {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        display: block;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-info {
        padding: 20px;
    }
    
    .video-modal-title {
        font-size: 20px;
    }
    
    .video-modal-description {
        font-size: 14px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.gallery-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--black);
}

.gallery-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 95, 31, 0.1), transparent);
}

.gallery-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.gallery-hero p {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 32px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 60px 0 120px;
}

.gallery-item {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.gallery-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item-media {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gray-800);
}

.gallery-item-image,
.gallery-item-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.gallery-item-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-item:hover .gallery-item-image {
    opacity: 0;
}

.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    background: rgba(255, 95, 31, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium), opacity 0.3s ease;
    pointer-events: none;
    animation: playIconPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.7);
    opacity: 1;
}

@keyframes playIconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 95, 31, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 95, 31, 0);
    }
}

.gallery-item:hover .gallery-play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
    pointer-events: none;
}

.gallery-item-info {
    padding: 24px;
}

.gallery-item-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 95, 31, 0.1);
    border: 1px solid rgba(255, 95, 31, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.gallery-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-item-description {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
}

.gallery-cta {
    text-align: center;
    padding: 60px 0;
    background: var(--dark);
    border-top: 1px solid var(--gray-800);
}

.gallery-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.gallery-cta p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255, 95, 31, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.video-modal-close:hover {
    background: var(--accent-light);
    transform: rotate(90deg);
}

.video-modal-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
}

.video-modal-info {
    padding: 24px 32px;
    background: var(--gray-800);
}

.video-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-modal-description {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

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

.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
