/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #4CAF50;
    --primary-purple: #4f46e5;
    --dark-green: #388E3C;
    --light-green: #81C784;
    --green-bg: #E8F5E8;
    --text-dark: #1a1a1a;
    --text-medium: #666;
    --text-light: #999;
    --border-light: #e1e5e9;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --red: #f44336;
    --yellow: #FFC107;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #dee0f0;
}

/* Logo Hero Section */
.logo-hero {
    background: linear-gradient(180deg, #d0d4e0 0%, #c8cdd8 100%);
    padding: 8rem 0 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

/* Background Text - Left Side */
.logo-hero::before {
    content: 'QUAD';
    position: absolute;
    top: 60%;
    right: 55%;
    transform: translateY(-50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

/* Background Text - Right Side */
.logo-hero::after {
    content: 'GENIE\00AE';
    position: absolute;
    top: 60%;
    left: 55%;
    transform: translateY(-50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.hero-logo-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9f4, #e8f7ed);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 2s ease;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.9);
    position: relative;
    top: -10px;
}

.hero-logo-icon:hover {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #e8f7ed, #d4f3dc);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.4);
}

.hero-logo-icon img {
    width: 120px;
    height: 120px;
}

.hero-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    white-space: nowrap;
}

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

/* Navigation - Floating Pill Design */
.navbar {
    background: transparent;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    backdrop-filter: none;
    border: none;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.floating-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    position: relative;
}

.nav-pill {
    display: flex;
    background: rgba(76, 175, 80, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.nav-pill a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-pill a:hover {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    transform: scale(1.05);
}

.cta-button {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #2e7d32 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600 !important;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, #388e3c, #43a047) !important;
    transform: scale(1.05) translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.4) !important;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .floating-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: space-between;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: none;
        background: none;
        cursor: pointer;
        flex-direction: column;
        gap: 4px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
        background: #2e7d32;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translateY(6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translateY(-6px);
    }
    
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1600;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
    }
    
    .mobile-nav-drawer.active {
        right: 0;
    }
    
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    }
    
    .mobile-nav-logo {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2e7d32;
    }
    
    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #2e7d32;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-nav-menu a {
        text-decoration: none;
        color: #1a1a1a;
        font-weight: 500;
        font-size: 1.1rem;
        padding: 1rem;
        border-radius: 12px;
        background: rgba(46, 125, 50, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .mobile-nav-menu a:hover {
        background: rgba(46, 125, 50, 0.1);
        border-left-color: #2e7d32;
        transform: translateX(8px);
    }
    
    .mobile-nav-cta {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(46, 125, 50, 0.1);
    }
    
    .mobile-nav-cta a {
        background: linear-gradient(135deg, #2e7d32, #388e3c) !important;
        color: white !important;
        text-align: center;
        font-weight: 600;
        border-left: 4px solid #2e7d32 !important;
    }
    
    .mobile-nav-cta a:hover {
        background: linear-gradient(135deg, #388e3c, #43a047) !important;
        transform: translateX(0) scale(1.02);
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-nav-overlay,
    .mobile-nav-drawer {
        display: none;
    }
}

.btn-cta {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5e8 100%);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Infographics Section */
.infographics-section {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
    align-items: center;
}

.infographic {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.infographic:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* New Hire Section */
.usecase-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.usecase-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 3rem;
}

.usecase-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 3rem;
    align-items: start;
}

.usecase-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-box, .solution-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.challenge-box h3, .solution-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.challenge-box {
    border-left: 4px solid var(--red);
}

.solution-box {
    border-left: 4px solid var(--primary-green);
}

.challenge-list, .benefit-list {
    list-style: none;
    margin-top: 1rem;
}

.challenge-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.challenge-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.benefit-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

.impact-metrics {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    background: linear-gradient(135deg, #358727, #48a73b);
    padding: 2rem;
    border-radius: 12px;
    color: white;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.usecase-infographics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.usecase-infographics .infographic {
    max-width: 100%;
}

/* Journey Visual */
.journey-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    gap: 1rem;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.step-icon.eager {
    background: #fff8e1;
    border: 3px solid #ffc107;
}

/* Platform Features Section */
.platform-features {
    padding: 5rem 0;
    background: #dee0f0;
}

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

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid #e1e5e9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(156, 39, 176, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(odd):hover::before {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.02));
}

.feature-card:nth-child(even):hover::before {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.08), rgba(156, 39, 176, 0.02));
}

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

.feature-card:nth-child(even):hover {
    border-color: #9c27b0;
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.1);
}

/* Feature Accent Elements */
.feature-shape {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    opacity: 0.08;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.feature-card:hover .feature-shape {
    opacity: 0.15;
    transform: translateY(-2px);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4px;
    height: 40px;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Green accents (odd cards) */
.feature-card:nth-child(odd) .feature-shape {
    background: linear-gradient(135deg, var(--primary-green), rgba(76, 175, 80, 0.6));
}

.feature-card:nth-child(odd)::after {
    background: var(--primary-green);
}

/* Purple accents (even cards) */
.feature-card:nth-child(even) .feature-shape {
    background: linear-gradient(135deg, #9c27b0, rgba(156, 39, 176, 0.6));
}

.feature-card:nth-child(even)::after {
    background: #9c27b0;
}

.feature-card:hover::after {
    height: 50px;
    width: 6px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.platform-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--border-light);
}

.win-more-deals {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkmark {
    width: 40px;
    height: 40px;
    background: #5865f2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.win-more-deals span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Feature Callouts */
.feature-callout {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.feature-callout:nth-child(2) { animation-delay: 0.5s; }
.feature-callout:nth-child(3) { animation-delay: 1s; }
.feature-callout:nth-child(4) { animation-delay: 1.5s; }
.feature-callout:nth-child(5) { animation-delay: 2s; }
.feature-callout:nth-child(6) { animation-delay: 2.5s; }

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

.callout-bubble {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
}

.callout-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-green);
}

.callout-icon {
    font-size: 1.2rem;
}

/* Highlight feature when callout is clicked */
.feature-card.highlighted {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #e8f5e9, #f0f9f0);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.2);
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .win-more-deals {
        position: static;
        margin-top: 2rem;
        justify-content: center;
    }
}

.step-icon.learning {
    background: #e8f5e9;
    border: 3px solid #4CAF50;
}

.step-icon.expert {
    background: #e3f2fd;
    border: 3px solid #2196f3;
}

.journey-step:hover .step-icon {
    transform: scale(1.1);
}

.journey-step span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.journey-arrow {
    font-size: 2rem;
    color: var(--primary-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

/* Transformation Arrow */
.transformation-arrow {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

/* Enhanced List Icons */
.list-icon, .benefit-icon {
    display: inline-block;
    width: 24px;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.challenge-list li, .benefit-list li {
    display: flex;
    align-items: flex-start;
}

/* Requirement Comparison Styling */
.requirement-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.requirement-comparison.expanded {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    padding: 2rem;
}

.screenshot-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.screenshot-wrapper {
    position: relative;
    width: 100%;
}

.sow-screenshot {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-section:first-child .sow-screenshot {
    border-color: #ff9800;
}

.screenshot-section:last-child .sow-screenshot {
    border-color: var(--primary-green);
}

.sow-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.sow-screenshot.enlarged {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    z-index: 9999;
    object-fit: contain;
}

.click-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    pointer-events: none;
}

/* Image overlay */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    transition: background 0.3s ease;
    cursor: pointer;
}

.image-overlay.active {
    background: rgba(0, 0, 0, 0.8);
}

/* Enhanced Metrics */
.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Value Drivers Section */
#value-drivers {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

#value-drivers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 25% 25%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.driver-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.04),
            0 1px 3px rgba(0, 0, 0, 0.06);
}

.driver-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.driver-card:hover::before {
    transform: scaleX(1);
}

.driver-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.08),
            0 8px 16px rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.2);
}

.driver-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.driver-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.driver-card:hover .driver-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.driver-title {
    flex: 1;
}

.driver-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.driver-subtitle {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.driver-card > p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.driver-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
    transition: all 0.2s ease;
}

.benefit:hover {
    color: var(--text-dark);
    transform: translateX(4px);
}

.benefit::before {
    content: "●";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.driver-screenshot-btn {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.driver-screenshot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    background: #4CAF50 !important;
    background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
    color: white !important;
    border-color: transparent !important;
}

.driver-screenshot-btn:hover .btn-icon {
    color: white !important;
}

.btn-icon {
    font-size: 1rem;
}

.driver-screenshot-btn .btn-icon {
    color: inherit;
}

/* Inline Driver Screenshot */
.driver-screenshot {
    margin-top: 1.5rem;
}

.driver-screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.driver-screenshot-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

/* Driver Screenshot Modal */
.screenshot-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-modal-overlay.active {
    opacity: 1;
}

.screenshot-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.screenshot-modal-overlay.active .screenshot-modal-content {
    transform: translateY(0) scale(1);
}

.screenshot-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
    color: white;
}

.screenshot-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.screenshot-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.screenshot-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.screenshot-modal-body {
    padding: 2rem;
    text-align: center;
}

.driver-screenshot-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .screenshot-modal-content {
        width: 95%;
    }

    .screenshot-modal-header,
    .screenshot-modal-body {
        padding: 1rem;
    }
}

@media (max-width: 1200px) {
    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

    .driver-card {
        padding: 2rem 1.5rem;
    }

    .driver-header {
        gap: 1rem;
    }

    .driver-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    transform: rotate(15deg);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.opportunity-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

/* Transformation Section */
.transformation {
    margin: 3rem 0;
}

.success-card {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.growth, .results {
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
}

.growth {
    background: linear-gradient(145deg, var(--green-bg) 0%, #c8e6c9 100%);
    border-left: 4px solid var(--primary-green);
}

.results {
    background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
}

.growth h3, .results h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.growth ul, .results ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.growth li, .results li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.growth li::before, .results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: bold;
}

.time-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.time-badge.success {
    background: var(--primary-green);
    color: white;
}

.time-badge.revenue {
    background: #2196f3;
    color: white;
}

/* CTA Buttons */
.cta-primary {
    display: flex;
    gap: 1rem;
    margin: 3rem 0;
}

.btn-hero-primary {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-hero-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.trust-indicators span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Hero Visual */
.platform-demo {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.platform-demo:hover {
    transform: rotate(0deg);
}

.demo-header {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.demo-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    background: white;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
}

.tab.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.demo-content {
    padding: 2rem;
}

.input-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.input-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--primary-green);
}

.input-field label {
    font-weight: 500;
    color: var(--text-medium);
}

.input-field span {
    font-weight: 600;
    color: var(--text-dark);
}

.ai-output {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.recommendation {
    background: linear-gradient(145deg, var(--green-bg) 0%, #c8e6c9 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--light-green);
}

.rec-badge {
    background: var(--primary-green);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.recommendation h5 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Interactive Demo Section */
.interactive-demo {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.demo-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-inputs, .calculator-results {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.calculator-inputs h3, .calculator-results h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-calculate {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-calculate:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
}

/* Calculator Results */
.results-content {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.results-content.active {
    opacity: 1;
}

.recommendation-item {
    background: var(--green-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--light-green);
}

.rec-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rec-rank {
    background: var(--yellow);
    color: var(--text-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rec-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.rec-details li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.rec-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-green);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.quote-actions {
    display: flex;
    gap: 1rem;
}

.btn-download, .btn-customize {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download {
    background: var(--primary-green);
    color: white;
    border: none;
}

.btn-customize {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-download:hover, .btn-customize:hover {
    transform: translateY(-1px);
}

/* ROI Calculator */
.roi-calculator {
    padding: 6rem 0;
    background: #dee0f0;
}

.roi-header {
    text-align: center;
    margin-bottom: 4rem;
}

.roi-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roi-inputs, .roi-results {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.roi-results {
    background: linear-gradient(145deg, var(--green-bg) 0%, #c8e6c9 100%);
}

.savings-grid {
    display: grid;
    gap: 1.5rem;
}

.saving-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.saving-item > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.saving-label {
    font-weight: 600;
    color: var(--text-dark);
}

.saving-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.saving-value.green {
    color: var(--primary-green);
}

.total-impact {
    background: var(--primary-green);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.impact-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.impact-value {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Industry Features */
.industry-features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.app-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.mockup-header {
    background: var(--primary-green);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.mockup-content {
    padding: 2rem;
}

.config-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.config-tab {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
}

.config-tab.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.config-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.option-count {
    background: var(--primary-green);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
}

.feature-content li {
    padding: 0.3rem 0;
    font-size: 1rem;
    color: var(--text-medium);
}

.integrations-section {
    text-align: center;
}

.integrations-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.integration-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
}

.integration-item:hover {
    transform: translateY(-4px);
}

.integration-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.integration-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.integration-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
    background: #dee0f0;
}

.testimonials {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card.featured {
    background: linear-gradient(145deg, var(--green-bg) 0%, #c8e6c9 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid var(--light-green);
    text-align: center;
}

.testimonial-card.featured blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-medium);
}

.company-size {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.case-study-cta {
    margin-top: 4rem;
    text-align: center;
}

.case-study-preview {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.case-study-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-study-preview p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.btn-case-study {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-case-study:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-option.primary {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.cta-option h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.cta-option p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.btn-cta-large, .btn-free-tools {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

.btn-cta-large {
    background: white;
    color: var(--primary-green);
    border: none;
}

.btn-free-tools {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-large:hover, .btn-free-tools:hover {
    transform: translateY(-2px);
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .success-card {
        grid-template-columns: 1fr;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .demo-calculator, .roi-grid, .feature-demo {
        grid-template-columns: 1fr;
    }

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

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

    .cta-options {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .infographics-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .infographic {
        max-width: 100%;
    }

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

    .usecase-infographics {
        position: static;
    }

    .journey-visual {
        flex-wrap: wrap;
    }

    .journey-arrow {
        display: none;
    }

    .transformation-arrow {
        transform: scale(0.8);
    }

    .requirement-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .final-trust {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.8)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 35px;
    right: 45px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #4CAF50;
    text-decoration: none;
}

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

.section-header, .testimonial-card, .integration-item {
    animation: fadeInUp 0.6s ease-out;
}