/* OK Noted Website Styles */

/* CSS Variables using OK Noted Extension Design System */
:root {
    /* OK Noted Brand Colors */
    --primary-color: #065fd4;
    --primary-dark: #0f4db8;
    --primary-light: #4285f4;
    --primary-pale: #e3f2fd;
    
    /* Secondary Colors */
    --secondary-color: #764ba2;
    --secondary-light: #9b7bbd;
    --secondary-pale: #f5f2f9;
    
    /* Accent Colors */
    --accent-blue: #4285f4;
    --accent-green: #34a853;
    
    /* Gradients */
    --gradient-start: #065fd4;
    --gradient-end: #4285f4;
    --gradient-bg: linear-gradient(135deg, #065fd4 0%, #4285f4 100%);
    
    /* Sophisticated Neutral Palette */
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e8ebef;
    --gray-300: #e1e5e9;
    --gray-400: #d1d5da;
    --gray-500: #6a7075;
    --gray-600: #5f6368;
    --gray-700: #3c4043;
    --gray-800: #202124;
    --gray-900: #1a1a1a;
    
    /* Text colors */
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-light: #6a7075;
    
    /* Background colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f1f3f4;
    --bg-purple-light: #f5f2f9;
    
    /* Semantic colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 8px;
    --border-radius-large: 12px;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--bg-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.25em;
    color: var(--text-secondary);
}

/* Layout Containers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00C851 0%, #00A043 100%);
    color: white;
    border-color: #00C851;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00B347 0%, #008A38 100%);
    border-color: #00B347;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6C5CE7 0%, #5A4FCF 100%);
    color: white;
    border-color: #6C5CE7;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5B4BD3 0%, #4A3CBB 100%);
    color: white;
    border-color: #5B4BD3;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.chrome-icon {
    font-size: 1.2em;
}

/* Hero Section - Split Screen Layout */
.hero {
    background: var(--gradient-bg);
    padding: 4rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 3fr; /* 40% content, 60% screenshot */
    gap: 2rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-screenshot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-container {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.hero-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-large);
    transition: opacity 0.4s ease;
}

.hero-screenshot-img.fading {
    opacity: 0;
}

/* Hero Screenshot Progress Dots - Subtle */
.hero-screenshot-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 10px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
}

.screenshot-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.screenshot-dot.active {
    background: rgba(255, 255, 255, 0.6);
}

.screenshot-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.screenshot-container:hover .screenshot-overlay {
    opacity: 1;
}

.view-full {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Content Styling */
.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-description strong {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-description-secondary {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-description-secondary strong {
    color: #ffffff;
    font-weight: 700;
}

.hero-value-props {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-value-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    flex: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.hero-value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-value-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-value-item:hover::before {
    opacity: 1;
}

.hero-value-item:nth-child(1) .value-icon,
.hero-value-item:nth-child(2) .value-icon,
.hero-value-item:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-highlight {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
}

.hero-social-proof {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-number {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
}

.hero-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Hero Trust Signals - Compact and understated */
.hero-trust-signals {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.25px;
    line-height: 1.3;
}

.hero-trust-signals .trust-check {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.25rem;
}

.cta-subtext {
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

.hero h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}


/* Risk Reduction Section */
.risk-reduction {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: subtleGlow 3s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    100% { box-shadow: 0 8px 32px rgba(255, 255, 255, 0.05); }
}

.risk-free-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.risk-free-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.risk-free-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: default;
}

.risk-free-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transform: translateX(5px);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Early Adopter Appeal Section */
.early-adopter-section {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.early-adopter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.early-adopter-section h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.early-adopter-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.early-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.early-benefits span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.early-benefits span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Demonstration Section */
.value-demonstration {
    background: linear-gradient(135deg, var(--primary-pale) 0%, var(--secondary-pale) 100%);
    border-top: 1px solid var(--gray-200);
    padding: 5rem 0;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-stat {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.value-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(6, 95, 212, 0.15);
    border-color: var(--primary-color);
}

.value-stat h4 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-stat p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Features Section */
.features {
    background: var(--bg-light);
    border-top: 1px solid var(--gray-200);
    padding: 5rem 0;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

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

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: var(--primary-pale);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0;
}

.step-content {
    flex: 1;
    margin-top: 0;
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.step-content p {
    color: var(--text-secondary);
    margin-top: 0;
}

/* Screenshots Section */
.screenshots {
    background: var(--bg-white);
    border-top: 1px solid var(--gray-200);
    padding: 5rem 0;
}

/* Primary Demo Section */
.primary-demo {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.demo-screenshot {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.demo-screenshot:hover .screenshot-overlay {
    opacity: 1;
}

.main-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.main-screenshot-img.fading {
    opacity: 0;
}


/* Step Navigation (now above screenshot) */
.step-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto 2rem;
    flex-wrap: wrap;
    max-width: 600px;
}

.step-nav {
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-nav:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 95, 212, 0.25);
}

.step-nav.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 95, 212, 0.3);
    transform: translateY(-1px);
}

.step-emoji {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.step-nav:hover .step-emoji,
.step-nav.active .step-emoji {
    filter: none;
    transform: scale(1.1);
}

.step-title {
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.step-nav:hover .step-title,
.step-nav.active .step-title {
    color: white;
    font-weight: 700;
}

.step-content {
    position: relative;
    min-height: 120px;
    max-width: 800px;
    margin: 3rem auto 0;
}

.workflow-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.workflow-step.active {
    display: block;
}

.step-info {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-info h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Workflow Progress */
.workflow-progress {
    max-width: 300px;
    margin: 3rem auto 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 25%;
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Screenshot Overlay */
.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-full {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-family: var(--font-family);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 1.5rem;
}

.screenshot-caption h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.screenshot-caption p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}


/* Modal Lightbox - Modern Two-Panel Design */
.screenshot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: modalFadeIn 0.3s ease;
}

.screenshot-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalSlideIn 0.3s ease-out;
}

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

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--gray-800);
    transform: scale(1.05);
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Simple Arrow Navigation */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.nav-prev {
    left: 1rem;
}

.nav-arrow.nav-next {
    right: 1rem;
}

/* Old nav styles removed - using .nav-arrow styles above */

/* Modal Step Indicator */
.modal-step-indicator {
    padding: 0 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gray-50);
}

.modal-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.2s ease;
    cursor: pointer;
}

.modal-step-dot:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.modal-step-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.modal-step-dot.active:hover {
    background: var(--primary-dark);
}

/* Mobile-First Responsive Design */
@media (max-width: 1024px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-width: 90vw;
        max-height: 90vh;
    }
    
    .modal-image-container {
        min-height: 300px;
        max-height: 50vh;
    }
    
    .modal-caption {
        padding: 1.5rem;
    }
    
    .modal-caption h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .modal-caption p {
        font-size: 1rem;
    }
    
    .modal-navigation {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .screenshot-modal.active {
        padding: 1rem;
    }
    
    .modal-content {
        border-radius: 12px;
        max-height: 95vh;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .modal-image-container {
        min-height: 250px;
    }
    
    .modal-caption {
        padding: 1.25rem 1rem;
    }
    
    .modal-caption h3 {
        font-size: 1.25rem;
    }
    
    .modal-caption p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .modal-navigation {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .nav-prev, .nav-next {
        width: 100%;
        padding: 0.875rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Use Cases Section */
.use-cases {
    background: var(--primary-pale);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--gray-200);
}

.use-case h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    border-top: 1px solid var(--gray-200);
    padding: 5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Trust Signals - Optimized Horizontal Layout */
.cta-trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.trust-item {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Trust item icons styling */
.trust-item .trust-icon {
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Early Adopter CTA Enhancement */
.early-adopter-cta {
    margin: 2rem 0;
    text-align: center;
}

.innovation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.innovation-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.innovation-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.innovation-icon {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

.innovation-text {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.early-adopter-pitch {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
}

/* Final CTA Wrapper */
.final-cta-wrapper {
    margin-top: 1.5rem;
}

/* Enhanced button style for CTA section */
.cta-section .btn-primary {
    background: linear-gradient(135deg, #00C851 0%, #00A043 100%);
    color: white;
    border-color: #00C851;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #00B347 0%, #008A38 100%);
    color: white;
    border-color: #00B347;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: white;
    padding: 3rem 0 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 1px;
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-section p.tagline {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-300);
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -20px -1rem -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 1rem;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.legal-page .container {
    max-width: 800px;
}

.last-updated {
    background: var(--bg-section);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-box {
    background: var(--bg-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.privacy-summary, .terms-summary {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.privacy-summary h2, .terms-summary h2 {
    color: white;
    margin-bottom: 1rem;
}

.privacy-summary p, .terms-summary p {
    color: rgba(255, 255, 255, 0.95);
}

.acknowledgment {
    background: var(--warning-color);
    color: var(--text-primary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: center;
    font-weight: 600;
}

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

/* Support Page */
.support-page .container {
    max-width: 900px;
}

.support-page h1 {
    text-align: center;
}

.support-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.quick-help {
    background: var(--success-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    margin-bottom: 3rem;
}

.quick-help h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.quick-steps {
    padding-left: 1.5rem;
}

.quick-steps li {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-light);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0.5rem;
}

.faq-item ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.contact-simple {
    margin-top: 1.5rem;
}

.contact-main {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary-color);
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-tips {
    background: var(--bg-section);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.support-tips h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.requirement {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.requirement h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.requirement p {
    font-size: 0.9rem;
    margin: 0;
}

.issue {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid var(--warning-color);
}

.issue h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.issue p {
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.trust-faq {
    background: var(--bg-light);
    border-top: 1px solid var(--gray-200);
    padding: 5rem 0;
}

.trust-faq .section-title {
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid details {
    background: var(--bg-white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-grid details:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(6, 95, 212, 0.1);
    transform: translateY(-2px);
}

.faq-grid details[open] {
    border-color: var(--primary-color);
    background: var(--primary-pale);
    box-shadow: 0 4px 20px rgba(6, 95, 212, 0.15);
}

.faq-grid summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1.4;
    width: 100%;
    padding: 0;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::marker {
    display: none;
}

/* Removed .summary-text wrapper - text now directly in summary */

.faq-grid summary::after {
    content: '+';
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: normal;
    font-family: Arial, sans-serif;
    transform: translateY(-0.5px);
    transition: all 0.3s ease;
    flex-shrink: 0;
    /* Alternative Methods for Different Centering Approaches:
    
    Method 1 - Modern Flexbox (replace display/transform above):
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    
    Method 2 - Unicode Mathematical Symbols (replace content above):
    content: '＋';  // Full-width plus for better centering
    content: '⊕';  // Circled plus alternative
    content: '✕';  // Heavy multiplication X for minus state
    
    Method 3 - Pure Line-Height (replace display/transform above):
    display: block;
    line-height: 24px;
    text-align: center;
    
    Method 4 - SVG Icon Replacement (replace content/font properties):
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 0v12M0 6h12'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
    
    Method 5 - Fine-tuned Transform (current approach, modify translateY value):
    transform: translateY(-1px);  // Adjust as needed
    */
}

.faq-grid details[open] summary::after {
    content: '−';
    background: var(--accent-green);
}

.faq-grid summary:hover {
    color: var(--primary-color);
}

.faq-grid details p {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: fadeInDown 0.3s ease;
}

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

/* Responsive Design */

/* Removed 1400px+ breakpoint - keeping 40/60 split for all desktop sizes */

/* Small Laptop Optimization (1366x768, 1280x800 screens) */
@media (max-width: 1366px) {
    /* Hero section spacing optimization */
    .hero h2 {
        font-size: 2.2rem; /* Slightly smaller for small laptops */
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Screenshot section sizing */
    .primary-demo {
        max-width: 800px; /* Better fit for smaller screens */
    }
    
    .demo-screenshot {
        max-height: 400px; /* Prevent overwhelming small screens */
        overflow: hidden;
    }
    
    /* Navigation clarity - maintain readability */
    .nav-links {
        gap: 1.5rem; /* Slightly tighter than desktop */
    }
    
    /* Step navigation optimization */
    .step-navigation {
        gap: 0.75rem; /* Tighter spacing */
        max-width: 500px; /* Prevent spreading too wide */
    }
    
    .step-nav {
        padding: 0.9rem 1.25rem;
        min-width: 75px;
    }
    
    /* Content hierarchy - prevent overwhelming displays */
    .step-info {
        padding: 2rem 1.5rem; /* Tighter padding */
    }
    
    .step-info h4 {
        font-size: 1.15rem;
    }
    
    .step-info p {
        font-size: 0.95rem;
        max-width: 450px;
    }
    
    /* Feature cards optimization */
    .feature-card {
        padding: 1.75rem;
    }
    
    .feature-icon {
        font-size: 2.25rem;
    }
    
    /* CTA section optimization */
    .cta-section h2 {
        font-size: 2.25rem;
    }
    
    .cta-section p {
        font-size: 1.15rem;
    }
    
    /* Risk reduction section optimization */
    .risk-reduction {
        padding: 1.25rem;
    }
    
    .risk-free-list {
        gap: 0.6rem;
    }
    
    .risk-free-list li {
        font-size: 0.85rem;
        padding: 0.6rem 0.4rem;
    }
    
    /* Trust signals optimization */
    .cta-trust-signals {
        gap: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.95rem;
        padding: 0.7rem 1.25rem;
    }
    
    /* Footer optimization */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0.75rem;
    }
    
    /* Early adopter section optimization */
    .early-adopter-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .early-adopter-section h3 {
        font-size: 1.3rem;
    }
    
    .early-adopter-section p {
        font-size: 1rem;
    }
    
    .early-benefits {
        gap: 1rem;
    }
    
    .early-benefits span {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Value demonstration optimization */
    .value-demonstration {
        padding: 2.5rem 0;
    }
    
    .value-props {
        gap: 1.5rem;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .value-stat {
        padding: 1.5rem 1.25rem;
    }
    
    .value-stat h4 {
        font-size: 1.5rem;
    }
    
    .value-stat p {
        font-size: 0.9rem;
    }
    
    /* Early adopter CTA optimization */
    .early-adopter-cta {
        margin: 1.5rem 0;
    }
    
    .innovation-badge {
        padding: 0.6rem 1.25rem;
    }
    
    .innovation-text {
        font-size: 0.9rem;
    }
    
    .early-adopter-pitch {
        font-size: 1.05rem;
    }

    /* FAQ section optimization for small laptops */
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }
    
    .faq-grid details {
        padding: 1.25rem;
    }
    
    .faq-grid summary {
        font-size: 1.05rem;
        gap: 0.75rem;
    }
    
    .faq-grid summary::after {
        width: 22px;
        height: 22px;
        font-size: 15px;
        transform: translateY(-0.25px);
    }
    
    .faq-grid details p {
        font-size: 0.95rem;
    }
}

/* Removed 1100px breakpoint - using consistent 40/60 split for all desktop sizes */

/* Laptop Optimization */
@media (max-width: 1280px) {
    .hero-value-props {
        gap: 1rem;
    }
    
    .hero-value-item {
        padding: 1.25rem 0.875rem;
    }
    
    .value-highlight {
        font-size: 1.05rem;
    }
    
    .value-text {
        font-size: 0.85rem;
    }
}

/* Medium Laptop - Prevent Wrapping */
@media (max-width: 1200px) {
    .hero-value-props {
        gap: 0.75rem;
    }
    
    .hero-value-item {
        padding: 1rem 0.625rem;
    }
    
    .value-highlight {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .value-text {
        font-size: 0.8rem;
    }
    
    .value-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
}

/* Large Tablet/Small Desktop */
@media (max-width: 1024px) {
    .hero-container {
        max-width: 1200px;
        gap: 1.5rem;
    }
    
    .hero-value-props {
        gap: 0.875rem;
    }
    
    .hero-value-item {
        padding: 1.125rem 0.75rem;
    }
    
    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}

/* Medium Tablet Optimization */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 2fr 3fr; /* 40/60 split */
        gap: 1.5rem;
    }
    
    .hero-value-props {
        gap: 0.75rem;
    }
    
    .hero-value-item {
        padding: 1rem 0.75rem;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-value-props {
        gap: 1rem;
    }
    
    .hero-value-item {
        padding: 1.25rem 1rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .value-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Large Mobile */
@media (max-width: 640px) {
    .nav-links {
        gap: 1rem;
    }
    
    /* Hero Mobile Stacking */
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-screenshot {
        order: 2;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-value-props {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-value-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .value-icon {
        margin-bottom: 0.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-value-props {
        gap: 0.75rem;
    }
    
    .hero-value-item {
        padding: 0.875rem;
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }
    
    .value-icon {
        margin-bottom: 0;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2.5rem;
    }
    
    
    .risk-reduction {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .risk-free-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .risk-free-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .cta-trust-signals {
        gap: 1rem;
        margin: 1.25rem 0;
    }
    
    .trust-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
    }
    
    .trust-item .trust-icon {
        font-size: 0.9rem;
    }
    
    /* Mobile risk-free guarantee */
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guarantee-item {
        padding: 1rem;
    }
    
    .risk-free-guarantee {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .risk-free-guarantee h3 {
        font-size: 1.25rem;
    }
    
    /* Mobile CTA elements */
    .cta-primary-wrapper {
        gap: 0.75rem;
    }
    
    .cta-subtext {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .final-subtext {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .money-back-alternative {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    /* Mobile badges */
    .risk-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .risk-free-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-header-with-badge {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
    }
    
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .primary-demo {
        margin: 2rem auto 3rem;
    }
    
    .demo-caption h3 {
        font-size: 1.25rem;
    }
    
    .demo-caption p {
        font-size: 1rem;
    }
    
    .step-navigation {
        gap: 0.5rem;
    }
    
    .step-nav {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }
    
    .step-emoji {
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 0.8rem;
    }
    
    .step-info {
        padding: 1.5rem;
    }
    
    .step-info h4 {
        font-size: 1.1rem;
    }
    
    .step-info p {
        font-size: 0.95rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-navigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* FAQ section mobile optimization */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-grid details {
        padding: 1rem;
    }
    
    .faq-grid summary {
        font-size: 1rem;
        gap: 0.75rem;
    }
    
    .faq-grid summary::after {
        width: 20px;
        height: 20px;
        font-size: 14px;
        transform: translateY(-0.25px);
    }
    
    .faq-grid details p {
        font-size: 0.9rem;
    }
    
    .faq-grid details p strong {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    /* Early adopter section mobile optimization */
    .early-adopter-section {
        padding: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .early-adopter-section h3 {
        font-size: 1.2rem;
    }
    
    .early-adopter-section p {
        font-size: 0.95rem;
    }
    
    .early-benefits {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .early-benefits span {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: fit-content;
    }
    
    /* Value demonstration mobile optimization */
    .value-demonstration {
        padding: 2rem 0;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .value-stat {
        padding: 1.25rem 1rem;
    }
    
    .value-stat h4 {
        font-size: 1.4rem;
    }
    
    .value-stat p {
        font-size: 0.85rem;
    }
    
    /* Early adopter CTA mobile optimization */
    .early-adopter-cta {
        margin: 1.25rem 0;
    }
    
    .innovation-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 0.75rem;
    }
    
    .innovation-icon {
        font-size: 1rem;
    }
    
    .innovation-text {
        font-size: 0.85rem;
    }
    
    .early-adopter-pitch {
        font-size: 1rem;
        padding: 0 1rem;
    }

/* Hero Value Demonstration */
.hero-value-demonstration {
    margin: 2.5rem 0;
}

/* Commented out duplicate that was overriding the main hero-value-props flexbox layout
.hero-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}
*/

.hero-value-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-large);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-value-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.hero-value-stat h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.hero-value-stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Responsive hero value stats */
@media (max-width: 1366px) {
    .hero-value-demonstration {
        margin: 2rem 0;
    }
    
    .hero-value-props {
        gap: 1.25rem;
        max-width: 550px;
    }
    
    .hero-value-stat {
        padding: 1.25rem 0.75rem;
    }
    
    .hero-value-stat h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-value-demonstration {
        margin: 1.5rem 0;
    }
    
    /* Removed grid properties - hero-value-props now uses flexbox
    .hero-value-props {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
    }
    */
    
    .hero-value-stat {
        padding: 1rem;
    }
    
    .hero-value-stat h4 {
        font-size: 1.2rem;
    }
    
    .hero-value-stat p {
        font-size: 0.85rem;
    }
}

/* Condensed Workflow Showcase */
.workflow-showcase {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-card {
    background: var(--bg-white);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-large);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.workflow-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(6, 95, 212, 0.1);
    transform: translateY(-2px);
}

.workflow-card.active {
    border-color: var(--primary-color);
    background: var(--primary-pale);
    box-shadow: 0 4px 20px rgba(6, 95, 212, 0.15);
    transform: translateY(-1px);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.step-number {
    background: var(--gray-400);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.workflow-card.active .step-number {
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(6, 95, 212, 0.3);
}

.step-title-group {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex: 1;
}

.workflow-card .step-emoji {
    font-size: 1.3rem;
    font-weight: bold;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.workflow-card.active .step-emoji,
.workflow-card:hover .step-emoji {
    filter: none;
    transform: scale(1.1);
}

.workflow-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 3rem;
}

.workflow-card.active .step-description {
    color: var(--text-primary);
}

.screenshot-display {
    position: relative;
}

/* Responsive for condensed workflow */
@media (max-width: 1366px) {
    .workflow-showcase {
        grid-template-columns: 350px 1fr;
        gap: 2rem;
    }
    
    .workflow-card {
        padding: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 768px) {
    .workflow-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workflow-steps {
        gap: 1rem;
    }
    
    .workflow-card {
        padding: 1rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .workflow-card h4 {
        font-size: 1rem;
    }
    
    .step-description {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
}