/* ========================================
   3D CAPTURE PAGE - CONVERSION-FOCUSED REDESIGN
   Clean, visual-first, high-converting structure
   ======================================== */

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

:root {
    --primary-blue: #233b7c;
    --primary-red: #e3363f;
    --dark-blue: #172c73;
    --dark-bg: #0f1419;
    --dark-bg-lighter: #1a1f2e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
    --font-primary: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1200px;
    --container-wide: 1400px;
    --spacing-section: 100px;
    --spacing-section-mobile: 60px;
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

.capture-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: hidden;
}

.capture-page a {
    text-decoration: none;
}

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

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

.icon-svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* ========================================
   SCROLL REVEAL SYSTEM
   ======================================== */

.js-reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible .js-reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.js-reveal.is-visible .js-reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.js-reveal.is-visible .js-reveal-item:nth-child(2) {
    transition-delay: 0.2s;
}

.js-reveal.is-visible .js-reveal-item:nth-child(3) {
    transition-delay: 0.3s;
}

.js-reveal.is-visible .js-reveal-item:nth-child(4) {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .js-reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

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

section {
    padding: var(--spacing-section) 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-red), #c42d36);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 35, 75, 0.96) 0%, rgba(23, 44, 115, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2400') center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 54, 63, 0.08) 0%, transparent 100%);
}

.static-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.static-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(6, 182, 212, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(6, 182, 212, 0.3);
    animation: subtle-pulse 4s ease-in-out infinite;
}

.static-particle:nth-child(1) { left: 8%; top: 12%; animation-delay: 0s; }
.static-particle:nth-child(2) { left: 15%; top: 25%; animation-delay: 0.3s; }
.static-particle:nth-child(3) { left: 22%; top: 45%; animation-delay: 0.6s; }
.static-particle:nth-child(4) { left: 28%; top: 68%; animation-delay: 0.9s; }
.static-particle:nth-child(5) { left: 35%; top: 15%; animation-delay: 1.2s; }
.static-particle:nth-child(6) { left: 42%; top: 38%; animation-delay: 1.5s; }
.static-particle:nth-child(7) { left: 48%; top: 72%; animation-delay: 1.8s; }
.static-particle:nth-child(8) { left: 55%; top: 20%; animation-delay: 2.1s; }
.static-particle:nth-child(9) { left: 62%; top: 50%; animation-delay: 2.4s; }
.static-particle:nth-child(10) { left: 68%; top: 35%; animation-delay: 2.7s; }
.static-particle:nth-child(11) { left: 75%; top: 65%; animation-delay: 3s; }
.static-particle:nth-child(12) { left: 82%; top: 18%; animation-delay: 3.3s; }
.static-particle:nth-child(13) { left: 88%; top: 42%; animation-delay: 3.6s; }
.static-particle:nth-child(14) { left: 92%; top: 78%; animation-delay: 3.9s; }
.static-particle:nth-child(15) { left: 12%; top: 88%; animation-delay: 0.5s; }
.static-particle:nth-child(16) { left: 38%; top: 82%; animation-delay: 1s; }
.static-particle:nth-child(17) { left: 58%; top: 8%; animation-delay: 1.7s; }
.static-particle:nth-child(18) { left: 72%; top: 92%; animation-delay: 2.2s; }
.static-particle:nth-child(19) { left: 85%; top: 55%; animation-delay: 2.8s; }
.static-particle:nth-child(20) { left: 5%; top: 58%; animation-delay: 3.4s; }

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

.scan-line-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.scan-line-moving {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(6, 182, 212, 0.3) 10%,
        rgba(6, 182, 212, 1) 50%, 
        rgba(6, 182, 212, 0.3) 90%,
        transparent 100%);
    box-shadow: 
        0 0 10px rgba(6, 182, 212, 0.8), 
        0 0 20px rgba(6, 182, 212, 0.6),
        0 0 30px rgba(6, 182, 212, 0.4);
    animation: scan-sweep 8s ease-in-out infinite;
}

@keyframes scan-sweep {
    0% { 
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(227, 54, 63, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    opacity: 0.6;
}

.noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-content {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

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

.hero-text h1 {
    font-size: clamp(1.75rem, 4vw, 3.2em);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.12;
    color: white;
    letter-spacing: -1.5px;
}

.hero-text h1 .highlight {
    color: var(--primary-red);
}

.hero-text p {
    font-size: clamp(0.95rem, 1.6vw, 1.1em);
    margin-bottom: 32px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 2.5vw, 32px);
    margin-bottom: 40px;
}

.stat-item {
    border-left: 3px solid var(--primary-red);
    padding-left: clamp(10px, 1.5vw, 18px);
}

.stat-number {
    font-size: clamp(1.1rem, 2vw, 1.8em);
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 6px;
    white-space: nowrap;
}

.stat-label {
    font-size: clamp(0.6rem, 1vw, 0.78em);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    line-height: 1.3;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e3363f 0%, #630c19 100%);
    color: white !important;
    padding: clamp(14px, 1.8vw, 18px) clamp(35px, 4.5vw, 50px);
    font-weight: 700;
    font-size: clamp(0.95rem, 1.3vw, 1.05em);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(227, 54, 63, 0.4);
    border-radius: 0;
    border: none;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(227, 54, 63, 0.6);
}

.cta-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white !important;
    padding: clamp(14px, 1.8vw, 18px) clamp(35px, 4.5vw, 50px);
    font-weight: 700;
    font-size: clamp(0.95rem, 1.3vw, 1.05em);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.video-sidebar {
    position: relative;
}

.video-container {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-label {
    font-size: 0.85em;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.video-frame {
    aspect-ratio: 16/9;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.video-frame iframe {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    display: block;
    border-radius: 12px;
    border: none;
    position: absolute;
    top: -1px;
    left: -1px;
}

.video-quick-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(35, 59, 124, 0.1);
}

.quick-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.benefit-check {
    width: 18px;
    height: 18px;
    color: var(--primary-red);
    flex-shrink: 0;
}

/* ========================================
   LOGO STRIP
   ======================================== */

.trusted-stack {
    padding: 60px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    display: block;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    height: 80px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}

.partner-logo.logo-larger img {
    height: 100px;
    max-width: 280px;
}

/* ========================================
   1. PROBLEM FRAMING
   ======================================== */

.problem-framing-section {
    background: var(--white);
    padding: 80px 0;
}

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

.problem-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.problem-content p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   2. WHAT YOU ACTUALLY GET (PRODUCT-DRIVEN LAYOUT)
   ======================================== */

.what-you-get-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-50) 100%);
    padding: 80px 0;
    position: relative;
}

.what-you-get-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--gray-200) 50%, transparent 100%);
}

.what-you-get-section .container {
    max-width: var(--container-wide);
}

.what-you-get-section .section-header {
    margin-bottom: 60px;
}

.what-you-get-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.what-you-get-section .section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.product-layout {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 60px;
    align-items: center;
}

.product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-200);
    position: relative;
    width: 100%;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(227, 54, 63, 0.03) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.product-details {
    display: flex;
    flex-direction: column;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    grid-auto-rows: 1fr;
}

.deliverable-block:nth-child(3) {
    grid-row: span 2;
}

.deliverable-block:nth-child(5) {
    grid-column-start: 2;
}

.deliverable-block {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.how-it-works {
    margin-top: 16px;
    padding-top: 8px;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.how-it-works h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.how-it-works ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.how-it-works li {
    font-size: 0.6875rem;
    color: var(--gray-600);
    line-height: 1.3;
    padding-left: 12px;
    position: relative;
}

.how-it-works li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.75rem;
}

.deliverable-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deliverable-icon i {
    width: 22px;
    height: 22px;
    color: var(--primary-red);
    stroke-width: 1.5;
}

.deliverable-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
    line-height: 1.3;
}

.deliverable-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   3. BEFORE/AFTER COMPARISON
   ======================================== */

.before-after-section {
    background: linear-gradient(135deg, #233b7c 0%, #1a2e5c 100%);
    color: white;
}

.before-after-section .section-header h2,
.before-after-section .section-header p {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.before-after-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.comparison-side {
    position: relative;
}

.comparison-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.comparison-label.featured {
    background: var(--primary-red);
}

.comparison-image {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    aspect-ratio: 4/3;
    background: white;
}

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

.comparison-caption {
    margin-top: 20px;
    text-align: center;
}

.comparison-caption h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.comparison-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

/* ========================================
   4. HOW TEAMS USE IT (REDESIGNED)
   ======================================== */

.teams-journey-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

/* Opening Statement - Bold Typography Block */
.journey-statement {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.journey-statement h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0;
}

/* Horizontal Scroll Track */
.journey-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 0 60px;
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) var(--gray-200);
}

.journey-track::-webkit-scrollbar {
    height: 8px;
}

.journey-track::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.journey-track::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

/* Journey Cards - Each Role */
.journey-card {
    flex: 0 0 400px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Color-coded top borders for visual differentiation */
.journey-card.maintenance {
    border-top: 4px solid #f59e0b;
}

.journey-card.engineering {
    border-top: 4px solid #06b6d4;
}

.journey-card.safety {
    border-top: 4px solid #10b981;
}

.journey-card.remote {
    border-top: 4px solid #8b5cf6;
}

.journey-card.maintenance:hover {
    border-top-color: #f59e0b;
    border-color: #f59e0b;
}

.journey-card.engineering:hover {
    border-top-color: #06b6d4;
    border-color: #06b6d4;
}

.journey-card.safety:hover {
    border-top-color: #10b981;
    border-color: #10b981;
}

.journey-card.remote:hover {
    border-top-color: #8b5cf6;
    border-color: #8b5cf6;
}

/* Card Label */
.card-label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
}

/* Card Content */
.card-content {
    padding: 70px 28px 32px;
}

/* Outcome Metric - Hero Number */
.outcome-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    line-height: 1.3;
    max-width: 100px;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1.25;
}

.card-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Key Action - Process Flow */
.key-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
}

.key-action i {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.key-action span {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.4;
}

/* Closing Insight */
.journey-insight {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(227, 54, 63, 0.05), rgba(35, 59, 124, 0.05));
    border-radius: 12px;
}

.journey-insight p {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   5. IMPLEMENTATION REALITY (REDESIGNED)
   ======================================== */

.implementation-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 120px 0;
    position: relative;
}

.implementation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--gray-200) 50%, transparent 100%);
}

/* Asymmetric Grid */
.implementation-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

/* Left Promise Block */
.promise-block {
    padding-right: 40px;
}

.promise-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.promise-block h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 48px;
}

.time-highlight {
    color: var(--primary-red);
    position: relative;
}

/* Detail Rows */
.promise-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.detail-text span {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Proof Quote */
.promise-proof {
    padding: 24px;
    background: var(--white);
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
}

.promise-proof p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 8px;
}

.promise-proof cite {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: normal;
    font-weight: 600;
}

/* Right Timeline Block */
.timeline-block {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-200);
}

.timeline-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.timeline-duration {
    font-size: 0.875rem;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline Flow */
.timeline-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-phase {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: start;
}

.phase-marker {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 4px;
}

.phase-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.phase-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-content li {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
}

.phase-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* Timeline Connector */
.timeline-connector {
    height: 32px;
    width: 2px;
    background: var(--gray-200);
    margin-left: 50px;
}

/* Timeline Footer */
.timeline-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--gray-200);
}

.timeline-footer i {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

.timeline-footer span {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* ========================================
   6. WHERE THIS WORKS (REDESIGNED)
   ======================================== */

.environments-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

/* Intro Statement */
.environments-intro {
    max-width: 700px;
    margin-bottom: 80px;
}

.environments-intro h2 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.environments-intro p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Clustered Layout - Now Equal Grid */
.environments-cluster {
    margin-bottom: 80px;
}

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

/* Environment Cards - All Equal & Expandable */
.env-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.env-card.expandable:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.env-card.expanded {
    border-color: var(--primary-red);
    box-shadow: 0 16px 48px rgba(227, 54, 63, 0.12);
}

/* Card Header */
.env-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.env-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.env-card:hover .env-icon,
.env-card.expanded .env-icon {
    background: var(--primary-red);
}

.env-icon i {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.env-card:hover .env-icon i,
.env-card.expanded .env-icon i {
    color: white;
}

.env-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

/* Expand Icon */
.env-expand-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.env-card.expanded .env-expand-icon {
    transform: rotate(180deg);
}

.env-expand-icon i {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

/* Preview Text (always visible) */
.env-preview {
    margin-bottom: 0;
}

.env-preview p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Expanded Content (hidden by default) */
.env-expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.env-card.expanded .env-expanded-content {
    max-height: 400px;
    opacity: 1;
    margin-top: 20px;
}

/* Scenarios (in expanded content) */
.env-scenarios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.scenario {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--gray-700);
    font-weight: 600;
}

/* Environment Stat (in expanded content) */
.env-stat {
    padding: 16px;
    background: rgba(227, 54, 63, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
}

.env-stat strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* Proof Point */
.environments-proof {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2e5c 100%);
    border-radius: 16px;
    padding: 48px 60px;
    color: white;
}

.proof-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proof-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.proof-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-align: center;
    max-width: 140px;
}

.proof-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   7. SAMPLE CAPTURE EXPERIENCE
   ======================================== */

.sample-capture-section {
    background: var(--white);
}

.sample-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.sample-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.sample-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.sample-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sample-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sample-cta.primary {
    background: var(--primary-red);
    color: white !important;
}

.sample-cta.primary:hover {
    background: #c42d36;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 54, 63, 0.3);
}

.sample-cta.secondary {
    background: transparent;
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue);
}

.sample-cta.secondary:hover {
    background: var(--primary-blue);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(35, 59, 124, 0.3);
}

.sample-cta i {
    width: 20px;
    height: 20px;
}

.sample-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    aspect-ratio: 16/10;
}

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

.sample-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(227, 54, 63, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sample-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-red);
}

.sample-play i {
    width: 36px;
    height: 36px;
    color: white;
    margin-left: 4px;
}

.testimonial-bar {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--gray-200);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.testimonial-quote {
    flex: 1;
    position: relative;
}

.testimonial-quote i {
    width: 32px;
    height: 32px;
    color: var(--primary-red);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 1.125rem;
    color: var(--gray-800);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    flex-shrink: 0;
    text-align: right;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ========================================
   8. FINAL CTA WITH RESOURCE CARDS
   ======================================== */

.resources-cta-section {
    background: var(--gray-50);
}

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

.resource-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.resource-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(227, 54, 63, 0.02), white);
}

.resource-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    background: var(--primary-red);
}

.resource-icon i {
    width: 32px;
    height: 32px;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.resource-card:hover .resource-icon i {
    color: white;
}

.resource-card h3 {
    font-size: 1.375rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.resource-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 48px;
}

.resource-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.resource-btn:hover {
    background: var(--primary-blue);
    color: white !important;
    transform: translateY(-2px);
}

.resource-btn.primary {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white !important;
}

.resource-btn.primary:hover {
    background: #c42d36;
}

.resource-btn i {
    width: 18px;
    height: 18px;
}

/* ========================================
   STICKY CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary-red), #c42d36);
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(227, 54, 63, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(227, 54, 63, 0.6);
}

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .video-sidebar {
        max-width: 500px;
        margin: 0 auto;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        align-items: start;
    }

    .product-visual {
        position: relative;
        top: 0;
    }

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

    .deliverable-block:nth-child(3) {
        grid-row: span 1;
    }

    .deliverable-block:nth-child(5) {
        grid-column-start: auto;
    }

    .comparison-container,
    .sample-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .implementation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .promise-block {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .timeline-block {
        max-width: 600px;
        margin: 0 auto;
    }

    .environments-cluster {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .env-group.secondary {
        grid-template-columns: 1fr;
    }

    .proof-content {
        flex-direction: column;
        gap: 32px;
    }

    .proof-divider {
        width: 60px;
        height: 2px;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author {
        text-align: center;
    }

    .sticky-cta {
        display: none;
    }

    .resource-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .comparison-divider {
        display: none;
    }

    .partner-logo img {
        height: 60px;
    }

    .partner-logo.logo-larger img {
        height: 70px;
    }

    .env-scenarios {
        flex-direction: column;
        align-items: flex-start;
    }

    .scenario {
        width: 100%;
        text-align: center;
    }
}secondary {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --spacing-section: var(--spacing-section-mobile);
    }

    .container,
    .hero-content {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .video-quick-benefits {
        display: none;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-image {
        padding: 20px;
    }

    .product-details {
        gap: 32px;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deliverable-block {
        padding: 20px;
    }

    .deliverable-content h3 {
        font-size: 1.125rem;
    }

    .deliverable-content p {
        font-size: 0.875rem;
    }

    .journey-track {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .journey-card {
        flex: 0 0 320px;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .implementation-section {
        padding: 80px 0;
    }

    .promise-block h2 {
        font-size: 2rem;
    }

    .timeline-phase {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .timeline-connector {
        margin-left: 40px;
        height: 24px;
    }

    .environments-section {
        padding: 80px 0;
    }

    .environments-intro {
        margin-bottom: 60px;
    }

    .env-group.