/* Base styles */
:root {
    /* Primary color palette from branding */
    --primary: #2ECC71;
    --primary-dark: #27AE60;
    --secondary: #9B59B6;
    --secondary-dark: #8E44AD;
    --accent: #3498DB;
    --accent-dark: #2980B9;
    
    /* Neutral colors */
    --dark: #0B0C10;
    --card-bg: #1E1E1E;
    --light: #FFFFFF;
    --gray: #95A5A6;
    --light-gray: #CCCCCC;
    
    /* UI colors */
    --positive: #2ECC71;
    --negative: #E74C3C;
    --warning: #F1C40F;
    --info: #3498DB;
    
    /* Typography */
    --heading-font: 'Inter', 'Open Sans', sans-serif;
    --body-font: 'Inter', 'Open Sans', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Shadows */
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: var(--body-font);
    color: var(--light);
    line-height: 1.6;
    background-color: var(--dark);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-top: -1.5rem;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-dark);
}

ul {
    list-style-type: none;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;  /* From branding */
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: var(--hover-shadow);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var (--secondary-dark);
    box-shadow: var(--hover-shadow);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Header */
header {
    background-color: var(--dark);  /* From branding */
    box-shadow: var(--card-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

nav a {
    color: var(--light);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary);
}

/* Sections */
section {
    padding: var(--spacing-xxl) 0;
}

/* Hero Section - Complete Replacement */
.hero {
    position: relative;
    padding-top: 120px; /* Adjusted for ticker */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Section - Enforced 3-Column Layout */
.hero .container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 2rem !important;
    width: 100% !important;
}

.hero-content {
    flex: 1 !important;
    max-width: 450px !important;
    order: 1 !important;
}

.hero-image {
    flex: 1.2 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 45% !important;
    order: 2 !important;
}

.stats-overlay {
    flex: 0.8 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 200px !important;
    order: 3 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.badge:hover {
    opacity: 1;
}

.badge img {
    width: 20px;
    height: 20px;
    filter: brightness(1.2);
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 45%;
}

.dashboard-preview {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 100% !important;
    height: auto !important;
}

.stats-overlay {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 200px;
}

.stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateZ(0); /* Fixes backdrop-filter in some browsers */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100% !important;
    max-width: 200px !important;
    box-sizing: border-box !important;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* Responsive adjustments for the hero section */
@media (max-width: 1200px) {
    .hero .container {
        justify-content: center;
    }
    
    .hero-content {
        flex: 1 0 100%;
        max-width: 600px;
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-image {
        flex: 1 0 60%;
        max-width: 60%;
        order: 2;
    }
    
    .stats-overlay {
        flex: 1 0 35%;
        max-width: 35%;
        order: 3;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-image, .stats-overlay {
        flex: 1 0 100%;
        max-width: 100%;
    }
    
    .hero-image {
        margin: 0 auto;
    }
    
    .stats-overlay {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .stat {
        flex: 1 0 40%;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .stat {
        flex: 1 0 100%;
    }
}

/* Trust badge in hero */
.trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pulse animation for buttons */
.pulse-animation {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); /* Changed to green (--primary) */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); /* Changed to green (--primary) */
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); /* Changed to green (--primary) */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); /* Changed to green (--primary) */
    }
}

/* Problem Section */
.problem {
    background-color: var(--card-bg);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background-color: var(--dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.problem-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Product Section */
.product {
    background-color: var(--light);
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.product-info {
    flex: 1;
}

.product-visual {
    flex: 1;
}

.product-screenshot {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature {
    display: flex;
    gap: var(--spacing-md);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
}

.feature-content h3 {
    margin-bottom: var(--spacing-xs);
}

/* Demo Section */
.demo {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.demo-video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
}

.video-placeholder {
    background-color: var(--card-bg);
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 30px;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.demo-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.highlight {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--light);
    font-size: 1.1rem;
}

/* Market Section */
.market {
    background: linear-gradient(135deg, #2c3e50 0%, var(--dark) 100%);
    color: white;
}

.market h2:after {
    background: var(--accent);
}

.market-content {
    display: flex;
    gap: var(--spacing-xl);
}

.market-info {
    flex: 1;
}

.market-chart {
    flex: 1;
}

.market-graph {
    max-width: 100%;
    border-radius: 8px;
}

.market-stat {
    margin-bottom: var(--spacing-lg);
}

.market-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.market-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.market-description p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Traction Section */
.traction {
    background-color: white;
}

.traction-content {
    display: flex;
    gap: var(--spacing-xl);
}

.timeline {
    flex: 2;
    position: relative;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 4px;
    background: var(--light-gray);
}

.timeline-item {
    padding-left: 60px;
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.timeline-marker {
    position: absolute;
    left: 0;
    width: 34px;
    height: 34px;
    background: white;
    border: 4px solid var(--gray);
    border-radius: 50%;
    z-index: 10;
}

.timeline-content {
    background: var(--light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
}

.timeline-content p {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.timeline-content ul {
    padding-left: var(--spacing-md);
    list-style-type: disc;
}

.timeline-item.complete .timeline-marker {
    border-color: var(--positive);
}

.timeline-item.current .timeline-marker {
    border-color: var(--primary);
    background: var(--primary);
}

.metrics {
    flex: 1;
}

.metric-card {
    background: var(--light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.metric-card h3 {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light-gray);
}

.metric-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--light-gray);
}

.metric-value {
    font-weight: 700;
    color: var(--primary);
}

/* Team Section */
.team {
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var (--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.team-member {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto var(--spacing-md) auto;
    border: 4px solid var(--light);
}

.member-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.member-bio {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
}

.member-social .social-link {
    font-size: 0.9rem;
    color: var(--primary);
}

.advisors {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advisors h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.advisor-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.advisor {
    text-align: center;
}

.advisor-name {
    font-weight: 600;
    margin-bottom: 0;
}

.advisor-role {
    font-size: 0.9rem;
    color: var (--gray);
    margin-bottom: 0;
}

/* Business Model Section */
.business {
    background-color: white;
}

.business-content {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.revenue-model, .unit-economics {
    flex: 1;
    background: var(--light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.revenue-model h3, .unit-economics h3 {
    margin-bottom: var (--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light-gray);
}

.revenue-item {
    margin-bottom: var(--spacing-md);
}

.revenue-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--secondary);
}

.economic-metric {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--light-gray);
}

.economic-metric .metric-value {
    font-weight: 700;
    color: var(--primary);
}

.projections {
    background: var(--light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.projections h3 {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.projection-table {
    width: 100%;
    border-collapse: collapse;
}

.projection-table th, .projection-table td {
    padding: var(--spacing-md);
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.projection-table th {
    background: var(--primary);
    color: white;
}

.projection-table tr:nth-child(even) {
    background: rgba(0,0,0,0.02);
}

/* Investors Section */
.investors {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
}

.investors h2:after {
    background: var(--accent);
}

.investment-details {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.detail-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.investment-detail {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.investment-detail h3 {
    color: var(--accent);
    margin-bottom: var(--spacing-md);
}

.detail-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.funds-list, .milestone-list, .exit-list {
    padding-left: 0;
}

.funds-list li, .milestone-list li, .exit-list li {
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: 20px;
}

.funds-list li:before, .milestone-list li:before, .exit-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.percent {
    font-weight: 700;
    color: var(--accent);
    margin-right: var(--spacing-xs);
}

.pitch-deck {
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-content {
    display: flex;
    gap: var(--spacing-xl);
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-method p {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 1rem;
}

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

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

.footer-content {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    height: 40px;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.link-group h4 {
    color: var(--accent);
    margin-bottom: var(--spacing-md);
}

.link-group ul li {
    margin-bottom: var(--spacing-sm);
}

.link-group a {
    color: var(--gray);
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--gray);
}

.social-link:hover {
    color: white;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .product-showcase, .market-content, .business-content, .investment-details, .contact-content {
        flex-direction: column;
    }
    
    .stats-overlay {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: var (--spacing-md);
    }

    .process-steps {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    header {
        position: static;
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .hero {
        min-height: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .demo-highlights, .traction-content, .footer-content {
        flex-direction: column;
    }

    .sticky-cta {
        width: 100%;
        right: 0;
        bottom: 0;
        padding: var(--spacing-sm);
        background-color: var(--dark);
    }
    
    .sticky-cta a {
        width: 100%;
        text-align: center;
    }
    
    .cookie-banner {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

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

/* Live Price Ticker */
.price-ticker {
    background-color: var(--dark);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 900;
}

.ticker-container {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.ticker-symbol {
    font-weight: 600;
    margin-right: 8px;
}

.ticker-price {
    margin-right: 8px;
}

.ticker-price.up {
    color: var(--positive);
}

.ticker-price.down {
    color: var(--negative);
}

.ticker-change {
    font-size: 0.9em;
    font-weight: 500;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Enhancements */
.trusted-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.badge img {
    width: 20px;
    height: 20px;
}

.pulse-animation {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Logo Carousel */
.logo-carousel {
    background-color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.trusted-by {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.logo-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    overflow: hidden;
}

.logo-slide img {
    height: 30px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light);
    padding: var(--spacing-xxl) 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--spacing-xl) 0;
}

.process-step {
    text-align: center;
    position: relative;
    width: 200px;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-weight: 600;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 50%, var(--primary) 100%);
    background-size: 10px 2px;
    margin: 0 10px;
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Feature Tabs Enhancement */
.feature-tab {
    border: none;
    background-color: var(--light);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.feature-tab:hover {
    background-color: rgba(13, 150, 246, 0.1);
    transform: translateX(5px);
}

.feature-tab.active {
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(13, 150, 246, 0.3);
}

.tab-icon {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.feature-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.feature-panel.active {
    display: flex;
}

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

/* Results Section */
.results {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
}

.results h2:after {
    background-color: var(--accent);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.result-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: var(--spacing-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.result-icon {
    margin-bottom: var(--spacing-sm);
}

.result-icon img {
    width: 40px;
    height: 40px;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var (--accent);
    margin-bottom: var(--spacing-xs);
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.result-detail {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.case-study-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-tertiary {
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    background-color: var(--accent);
    color: white;
}

.btn-tertiary .arrow {
    transition: transform 0.3s ease;
}

.btn-tertiary:hover .arrow {
    transform: translateX(5px);
}

/* Comparison Section */
.comparison {
    background-color: white;
    padding: var(--spacing-xxl) 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-xl);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table th {
    background-color: var(--dark);
    color: white;
    padding: var(--spacing-md);
    text-align: left;
}

.comparison-table th:first-child {
    width: 25%;
}

.comparison-table img {
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.comparison-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--light-gray);
    background-color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--positive);
    font-weight: bold;
}

.comparison-table .x {
    color: var(--negative);
    font-weight: bold;
}

.comparison-table .partial {
    color: var(--warning);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background-color: var(--light);
    padding: var(--spacing-xxl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var (--spacing-lg);
    margin-top: var (--spacing-xl);
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    max-height: 300px;
}

.faq-more {
    text-align: center;
    margin-top: var (--spacing-xl);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 300px;
    background-color: var(--primary);
    color: var(--dark);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--hover-shadow);
    text-align: center;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.sticky-cta a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: var(--spacing-sm);
}

.sticky-cta a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: white;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.cookie-settings {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-accept {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
    /* ... existing media query rules ... */
    
    .process-steps {
        flex-direction: column;
        gap: var (--spacing-lg);
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* ... existing media query rules ... */
    
    .sticky-cta {
        width: 100%;
        right: 0;
        bottom: 0;
        padding: var(--spacing-sm);
        background-color: var(--dark);
    }
    
    .sticky-cta a {
        width: 100%;
        text-align: center;
    }
    
    .cookie-banner {
        flex-direction: column;
        gap: var (--spacing-md);
        text-align: center;
    }
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    :root {
        --dark: #121212;
        --light: #ffffff;
        --light-gray: #f0f0f0;
        --gray: #b0b0b0;
        --primary: #2ECC71; /* Changed back to green */
        --primary-dark: #27AE60; /* Changed to darker green */
        --secondary: #9B59B6; /* Keep original secondary color */
        --accent: #3498DB;
        --positive: #2ECC71;
        --negative: #E74C3C;
        --warning: #F1C40F;
        --card-bg: #1e1e1e;
        /* ...existing code... */
    }
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(13, 150, 246, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Lazy Load Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Add Tools Section Styling */
.tools {
    background-color: var(--card-bg);
    padding: var(--spacing-xxl) 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background-color: var(--dark);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.tool-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.1);  /* Primary with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tool-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
}

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

.tool-icon i {
    font-size: 42px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    background-color: rgba(46, 204, 113, 0.2);
    transform: scale(1.05);
}

.tool-card:hover .tool-icon i {
    transform: scale(1.1);
}

/* Responsive adjustments for tools section */
@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Add the following CSS at an appropriate location in your styles.css file */

/* Featured In Section */
.featured-in {
    background-color: white;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.featured-heading {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.7;
}

.featured-logo img {
    height: 30px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.featured-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Trust badge in hero */
.trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pricing toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 1rem;
    color: var(--gray);
    margin: 0 10px;
}

.toggle-label.active {
    color: var(--light);
}

.save-badge {
    background-color: var(--primary);
    color: var(--dark);
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Price toggle visibility */
.annual-price {
    display: none;
}

.monthly-price {
    display: block;
}

body.annual-pricing .annual-price {
    display: block;
}

body.annual-pricing .monthly-price {
    display: none;
}

/* FAQ accordion */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(46, 204, 113, 0.1);
}

.faq-toggle {
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Form validation */
.form-group {
    position: relative;
}

.error-message {
    color: var(--negative);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input {
    border-color: var(--negative);
}

/* Security badges */
.security-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Guarantee badge */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    color: var(--light-gray);
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light);
    transition: all 0.3s ease;
}

/* Legal links */
.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Enhanced mobile responsiveness */
@media (max-width: 992px) {
    /* ...existing media query rules... */
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .featured-logo img {
        height: 20px;
    }
}

@media (max-width: 768px) {
    /* ...existing media query rules... */
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    nav.open ul {
        right: 0;
    }
    
    nav.open .mobile-menu-toggle span:first-child {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    nav.open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    nav.open .mobile-menu-toggle span:last-child {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .security-badges {
        flex-wrap: wrap;
    }
}

/* Featured In Section - Enhanced */
.featured-in {
    background-color: var(--dark);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.featured-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.featured-heading {
    text-align: center;
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.featured-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

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

.featured-logo {
    opacity: 0.7;
    transition: all 0.4s ease;
    position: relative;
}

.featured-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(150%);
    transition: all 0.3s ease;
}

.featured-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.featured-logo:hover img {
    filter: grayscale(0%) brightness(100%);
}

.featured-logo::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.featured-logo:hover::after {
    opacity: 1;
    visibility: visible;
}

/* How It Works Section - Enhanced */
.how-it-works {
    background-color: var(--card-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    max-width: 250px;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    background-color: rgba(30, 30, 30, 0.8);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 35px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background-color: rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
}

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.process-step h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.process-step p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    height: 3px;
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.3), rgba(46, 204, 113, 0.7), rgba(46, 204, 113, 0.3));
    flex: 0.8;
    position: relative;
    z-index: 0;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, rgba(46, 204, 113, 0), rgba(46, 204, 113, 0.3), rgba(46, 204, 113, 0));
    transform: translateY(-50%);
    filter: blur(3px);
}

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

.cta-center .btn-primary {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.cta-center .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

/* Responsive styles for these sections */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        max-width: 100%;
        width: 100%;
    }
    
    .step-connector {
        width: 3px;
        height: 30px;
        flex: none;
    }
    
    .logo-row {
        gap: 30px;
    }
    
    .featured-logo img {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .featured-heading {
        font-size: 1.3rem;
    }
    
    .logo-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .featured-logo img {
        height: 35px;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
}

/* Enhanced Pricing Section with Dark Background */
.pricing {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var (--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-card.featured .pricing-header {
    background-color: rgba(46, 204, 113, 0.15);
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 0 12px 0 12px;
    z-index: 1;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-gray);
    margin-left: 5px;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    color: var(--light);
}

.pricing-features li.included::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.pricing-features li.excluded {
    color: var(--gray);
    text-decoration: line-through;
}

.pricing-features li.excluded::before {
    content: "✕";
    color: var(--gray);
    position: absolute;
    left: 0;
    top: 0;
}

.pricing-cta {
    padding: 20px 30px 30px;
    text-align: center;
}

.pricing-cta .btn-primary,
.pricing-cta .btn-secondary {
    width: 100%;
    padding: 12px 20px;
}

/* Enhanced FAQ Section with Dark Background */
.faq {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(155, 89, 182, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background-color: var (--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--card-shadow);
}

.faq-item:hover {
    box-shadow: var(--hover-shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background-color: rgba(46, 204, 113, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
    background-color: rgba(30, 30, 30, 0.6);
    color: var(--light-gray);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(46, 204, 113, 0.05);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Enhanced Feature Tabs with Dark Background */
.features {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.feature-showcase {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-tabs {
    display: flex;
    background-color: rgba(20, 20, 20, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.feature-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.feature-tab {
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    color: var(--light-gray);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    min-width: fit-content;
    white-space: nowrap;
}

.feature-tab:hover {
    color: var(--light);
    background-color: rgba(30, 30, 30, 0.8);
}

.feature-tab.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background-color: rgba(46, 204, 113, 0.05);
}

.tab-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.feature-content {
    padding: 0;
    position: relative;
}

.feature-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 40px;
}

.feature-panel.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

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

.panel-content {
    flex: 1;
    padding-right: 40px;
}

.panel-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.panel-content p {
    color: var(--light-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list {
    margin: 25px 0;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: var(--light-gray);
}

.feature-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.panel-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.panel-image img:hover {
    transform: scale(1.03);
    box-shadow: var(--hover-shadow);
}

.btn-tertiary {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-tertiary:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.btn-tertiary .arrow {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.btn-tertiary:hover .arrow {
    transform: translateX(3px);
}

/* Why HedgeScope Section */
.why-hedgescope {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.why-hedgescope::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    background-color: rgba(30, 30, 30, 0.8);
    border-color: rgba(46, 204, 113, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
}

.value-card:hover .value-icon i {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

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

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

/* Enhanced icon styling for value icons */
.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.15);
}

.value-card:hover .value-icon {
    background-color: rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

/* Add animation to SVG icons on hover */
.value-icon svg, 
.problem-card .icon svg,
.step-icon svg,
.tool-icon svg {
    transition: all 0.3s ease;
}

.value-card:hover .value-icon svg,
.problem-card:hover .icon svg,
.process-step:hover .step-icon svg,
.tool-card:hover .tool-icon svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 3px rgba(46, 204, 113, 0.5));
}

/* Problem card icon styling */
.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* How it works step icon enhancement */
.step-icon {
    width: 85px;
    height: 85px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.process-step:hover .step-icon {
    background-color: rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

/* Tool icon enhancement */
.tool-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.tool-card:hover .tool-icon {
    background-color: rgba(46, 204, 113, 0.15);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.25);
}

/* Enhanced panel image display for screenshots */
.panel-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px; /* Fixed height container */
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.panel-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Maintain aspect ratio */
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding: 5px; /* Add some padding inside */
}

.panel-image img:hover {
    transform: scale(1.03);
    box-shadow: var(--hover-shadow);
}

/* Make feature panel content and image more responsive */
@media (max-width: 992px) {
    .feature-panel {
        flex-direction: column;
    }
    
    .panel-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .panel-image {
        height: 300px;
        width: 100%;
    }
}

/* Enhanced Testimonials Section */
.testimonials {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.testimonial-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 20px;
    color: var(--light-gray);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 500;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
    overflow: hidden;
}

.testimonial-slide-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.3s ease;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(46, 204, 113, 0.3);
}

.testimonial-content {
    flex: 1;
}

.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.testimonial-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin: 0 0 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light);
    font-style: italic;
}

.testimonial-metrics {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.metric {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--light-gray);
}

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

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(46, 204, 113, 0.3);
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--light);
}

.author-info p {
    margin-bottom: 5px;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.company {
    font-weight: 500;
    color: var(--primary);
}

.read-case-study {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.read-case-study:hover {
    transform: translateX(5px);
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.nav-prev, .nav-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--light);
    transition: all 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
    background: rgba(46, 204, 113, 0.2);
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

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

.dot.active {
    background-color: var(--primary);
}

.trusted-by {
    text-align: center;
    margin-bottom: 50px;
}

.trusted-by h3 {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.company-logos img {
    height: 35px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.company-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

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

.testimonial-cta .btn-primary {
    margin-right: 20px;
}

/* Enhanced Registration Section */
.getting-started {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.getting-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(155, 89, 182, 0.1) 0%, rgba(46, 204, 113, 0.05) 70%);
    pointer-events: none;
}

.signup-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
    align-items: stretch;
}

.signup-form-container {
    flex: 1.2;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.form-steps {
    display: flex;
    background-color: rgba(20, 20, 20, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
    color: var(--light-gray);
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.step.active {
    color: var(--primary);
    font-weight: 500;
}

.step.active::after {
    background-color: var(--primary);
}

.signup-form {
    position: relative;
    overflow: hidden;
}

.form-step {
    padding: 40px;
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeSlideIn 0.5s ease;
}

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

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light);
}

.form-intro {
    color: var(--light-gray);
    margin-bottom: 25px;
}

.social-signup {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: var(--light-gray);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-social.google:hover {
    border-color: #DB4437;
    color: #DB4437;
}

.btn-social.linkedin:hover {
    border-color: #0077B5;
    color: #0077B5;
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-divider span {
    position: relative;
    background-color: var(--card-bg);
    padding: 0 15px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.form-row {
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--light);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 15px;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus, .input-wrapper select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.input-wrapper input:focus + svg {
    color: var(--primary);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--light);
}

.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.85rem;
}

.strength-label {
    color: var(--light-gray);
}

.strength-meter {
    display: flex;
    gap: 3px;
    flex: 1;
}

.meter-segment {
    height: 5px;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.meter-segment:nth-child(1) {
    background-color: rgba(231, 76, 60, 0.5);
}

.strength-text {
    color: #E74C3C;
    font-weight: 500;
}

.error-message {
    color: var(--negative);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error .input-wrapper input {
    border-color: var(--negative);
}

.form-action {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.form-action .btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
}

.form-action .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--light-gray);
}

/* Plan selector styling */
.plan-selector {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.plan-option {
    flex: 1;
    position: relative;
}

.plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-option label {
    display: block;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background-color: rgba(46, 204, 113, 0.1);
}

.plan-name {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light);
}

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

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-gray);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 1;
}

/* Commodity selector styling */
.commodity-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.commodity-option {
    position: relative;
}

.commodity-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.commodity-option label {
    display: block;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.commodity-option input[type="checkbox"]:checked + label {
    border-color: var(--primary);
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary);
    font-weight: 500;
}

/* Completion message styling */
.completion-message {
    text-align: center;
    padding: 20px 0;
}

.completion-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.completion-message h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.completion-message p {
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--light-gray);
}

.next-steps {
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto 30px;
    text-align: left;
}

.next-steps h4 {
    margin-bottom: 15px;
    color: var(--light);
    font-size: 1.1rem;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-disclaimer {
    background-color: rgba(20, 20, 20, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
}

.form-disclaimer p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* Signup features section */
.signup-features {
    flex: 0.8;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.trial-countdown {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.trial-countdown::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.3) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
}

.timer-unit {
    text-align: center;
}

.timer-value {
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.timer-value::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 0;
}

.timer-label {
    font-size: 0.8rem;
    color: var(--light-gray);
}

.timer-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var (--light);
    display: flex;
    align-items: center;
}

.countdown-message {
    font-size: 0.9rem;
    color: var(--light-gray);
    position: relative;
}

.signup-features h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.signup-features .feature-list {
    margin-bottom: 30px;
}

.signup-features .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light);
}

.signup-features .feature-list li svg {
    min-width: 24px;
    margin-top: 2px;
}

.testimonial-quote {
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 12px;
    padding: 20px;
    margin: auto 0 30px;
    position: relative;
}

.testimonial-quote::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(46, 204, 113, 0.2);
    font-family: Georgia, serif;
}

.testimonial-quote blockquote {
    margin: 0 0 15px;
    padding-left: 20px;
    font-style: italic;
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.5;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

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

.alternate-cta {
    margin-top: auto;
    text-align: center;
}

.alternate-cta p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .signup-container {
        flex-direction: column;
    }
    
    .testimonial-slide {
        flex-direction: column;
    }
    
    .testimonial-author {
        margin-top: 0;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 10px;
    }
    
    .plan-selector {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .testimonial-categories {
        flex-direction: column;
    }
    
    .category-btn {
        width: 100%;
    }
    
    .social-signup {
        flex-direction: column;
    }
    
    .commodity-selector {
        grid-template-columns: 1fr;
    }
    
    .company-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-cta .btn-primary {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Case Study Modal Styles */
.case-study-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.case-study-modal-content {
    background-color: var(--card-bg);
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.case-study-container {
    padding: 40px;
}

.case-study-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 24px;
    line-height: 1;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.case-study-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary);
}

.case-study-highlight {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.highlight-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--light);
}

.case-study-modal h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
}

.case-study-modal h2::after {
    content: none;
}

.case-study-modal h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.case-study-modal p, .case-study-modal li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-gray);
}

.case-study-modal ul, .case-study-modal ol {
    margin: 15px 0;
    padding-left: 25px;
}

.case-study-modal li {
    margin-bottom: 10px;
}

.case-study-modal blockquote {
    background-color: rgba(20, 20, 20, 0.5);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.metric-item {
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 10px;
}

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

.modal-open {
    overflow: hidden;
}

/* Small loading spinner for buttons */
.loading-spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light);
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Create completed step indicator styling */
.step.completed::after {
    background-color: var(--primary);
    opacity: 0.4;
}

/* Case Study Modal Responsive Styling */
@media (max-width: 768px) {
    .case-study-container {
        padding: 20px;
    }
    
    .case-study-modal h2 {
        font-size: 1.5rem;
    }
    
    .case-study-modal h3 {
        font-size: 1.2rem;
    }
    
    .results-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-item {
        padding: 15px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .case-study-highlight {
        padding: 15px;
    }
    
    .highlight-metric {
        font-size: 2rem;
    }
}

/* Case Studies Section */
.case-studies {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-study-card {
    background-color: var(--card-bg);
    border-radius: 14px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(46, 204, 113, 0.3);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.case-study-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(46, 204, 113, 0.3);
}

.case-study-meta h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--light);
}

.case-study-meta .company {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.case-study-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-stat {
    background-color: rgba(46, 204, 113, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--light-gray);
}

.case-summary {
    color: var(--light-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.view-case-study {
    align-self: flex-start;
    margin-top: auto;
}

/* App Preview Section */
.app-preview {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(155, 89, 182, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.app-coming-soon {
    position: relative;
    margin-top: 40px;
}

.coming-soon-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.5);
}

.app-mockup {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(3px);
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.mockup-content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}

.mockup-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.mockup-content p {
    color: var(--light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.app-features-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: 300px;
}

.feature-preview:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(46, 204, 113, 0.2);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light);
}

.feature-detail p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.5;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .app-features-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-preview {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .case-study-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .mockup-content {
        padding: 20px;
    }
    
    .mockup-content h3 {
        font-size: 1.5rem;
    }
    
    .mockup-content p {
        font-size: 1rem;
    }
}

/* Fix testimonial navigation - make buttons more clickable */
.nav-prev, .nav-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--light);
    transition: all 0.3s ease;
    z-index: 100; /* Ensure buttons are above other elements */
}

.nav-prev:hover, .nav-next:hover {
    background: rgba(46, 204, 113, 0.2);
    color: var(--primary);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    z-index: 100; /* Ensure dots are above other elements */
}

.dot {
    width: 12px; /* Slightly larger for better clickability */
    height: 12px; /* Slightly larger for better clickability */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0; /* Remove padding */
    margin: 0 4px; /* Add margin instead */
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2); /* Emphasize active dot */
}

.dot:hover {
    background-color: rgba(46, 204, 113, 0.5);
    transform: scale(1.2);
}

/* Make testimonial navigation more responsive */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Increased gap for better spacing */
    margin-top: 30px;
    padding: 10px 0; /* Add padding for better touch targets */
}

/* App Section - Horizontal Features */
.horizontal-features {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.horizontal-features li {
    flex: 1 1 30%; /* Better control over item sizing */
    min-width: 180px;
    max-width: 32%; /* Prevent items from getting too wide */
    background: rgba(255,255,255,0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.horizontal-features li:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.horizontal-features .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    height: 60px; /* Consistent height for all icons */
}

.horizontal-features h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem; /* Slightly larger heading */
}

.horizontal-features p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Better responsive adjustments */
@media (max-width: 992px) {
    .horizontal-features li {
        flex: 1 1 45%;
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    .horizontal-features {
        flex-direction: column;
    }
    
    .horizontal-features li {
        width: 100%;
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }
}

/* App CTA section - add some spacing from the features */
.app-cta {
    margin-top: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* App Section Styles - Updated for static image approach */
.app-section {
    background-color: var(--dark);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.app-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.app-iframe-wrapper {
    flex: 1;
    min-width: 65%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 600px;
    position: relative;
}

/* Updated app preview style for static image */
.app-preview {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.app-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-preview:hover .preview-overlay {
    opacity: 1;
}

.app-preview:hover .app-preview-image {
    transform: scale(1.05);
}

/* ...existing app feature styles... */

/* Email sent confirmation styles */
.email-sent-confirmation {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.2);
    animation: fadeIn 0.5s ease;
}

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

.email-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.email-sent-confirmation p {
    color: var(--light);
    margin-bottom: 10px;
}

.email-sent-confirmation a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

/* Additional Case Studies Styles */
.case-studies {
    background-color: var(--card-bg);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.case-studies-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var (--light-gray);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--light);
    border-color: rgba(46, 204, 113, 0.2);
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .app-container {
        flex-direction: column;
    }
    
    .app-iframe-wrapper {
        min-width: 100%;
        height: 500px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

/* Add styles for the new app preview section */

/* App section enhancements */
.app-preview-fallback {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-preview-fallback:hover .preview-overlay {
    opacity: 1;
}

.app-preview-fallback:hover .app-preview-image {
    transform: scale(1.05);
}

.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 30, 30, 0.95);
    z-index: 10;
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.app-direct-access {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.app-direct-access .btn-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
}

.app-direct-access svg {
    width: 18px;
    height: 18px;
}

/* Hide case studies section and company logos since assets are missing */
.case-studies, 
.company-logos,
.logo-row img[src*="company"] {
    display: none !important;
}

/* Use existing assets for security icons if they fail to load */
.security-badge img[src*="secure.svg"],
.security-badge img[src*="encrypted.svg"],
.security-badge img[src*="guarantee.svg"] {
    /* Fallback in case SVG fails to load */
    width: 20px;
    height: 20px;
    background-color: #2ECC71;
    border-radius: 50%;
}

/* ...existing code... */

/* =====================================================
   YC-FOCUSED IMPROVEMENTS - MERGED FROM styles-yc-improvements.css
   ===================================================== */

/* Why YC Section */
.why-yc {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-yc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(46, 204, 113, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.yc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.yc-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.yc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(46, 204, 113, 0.3);
}

.yc-card h3 {
    color: var(--primary);
}

.yc-card p {
    color: var(--light-gray);
}

.yc-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.expansion-vision {
    margin-top: 60px;
    text-align: center;
}

.expansion-vision h3 {
    color: var(--light);
}

.expansion-vision p {
    color: var(--light-gray);
}

.expansion-timeline {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    position: relative;
}

.expansion-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary);
    z-index: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.timeline-year {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-goal {
    font-size: 14px;
    text-align: center;
    color: var(--light-gray);
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: var(--card-bg);
    position: relative;
}

.story-content {
    margin-top: 40px;
}

.story-highlight {
    font-size: 20px;
    line-height: 1.6;
    color: var(--light);
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.problem-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E74C3C;
    font-size: 24px;
}

.founder-quote {
    margin: 40px 0;
    padding: 30px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-quote blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--light-gray);
    margin: 0 0 20px 0;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-info img {
    border-radius: 50%;
}

.market-insights {
    margin-top: 60px;
}

.insight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.insight-card {
    padding: 25px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(46, 204, 113, 0.3);
}

.insight-card h4 {
    color: var(--light);
}

.insight-card p {
    color: var(--light-gray);
}

.insight-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.traction-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
    color: white;
    border-radius: 12px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.traction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.traction-item {
    text-align: center;
}

.traction-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.traction-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Beta Metrics Section */
.beta-metrics {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.beta-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(155, 89, 182, 0.1) 0%, rgba(13, 150, 246, 0) 70%);
    pointer-events: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.metric-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(46, 204, 113, 0.3);
}

.metric-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.metric-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.metric-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light);
}

.metric-detail {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.5;
}

.growth-chart {
    margin-top: 60px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.growth-chart h3 {
    color: var(--light);
}

.chart-description p {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

.chart-description p:last-child {
    border-bottom: none;
}

/* Competitive Advantage Section */
.competitive-advantage {
    padding: 80px 0;
    background: var(--card-bg);
}

.comparison-table {
    margin-top: 50px;
    overflow-x: auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(30, 30, 30, 0.6);
    padding: 20px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    color: var(--light);
}

.solution-col.highlighted {
    color: var(--primary);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    background: rgba(20, 20, 20, 0.4);
}

.comparison-row:hover {
    background: rgba(46, 204, 113, 0.05);
}

.problem-cell h4 {
    margin: 0;
    font-size: 16px;
    color: var(--light);
}

.traditional-cell,
.hedgescope-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
}

.negative,
.positive {
    font-size: 24px;
}

.moat-section {
    margin-top: 60px;
}

.moat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.moat-item {
    text-align: center;
    padding: 20px;
}

.moat-item h4 {
    color: var(--light);
}

.moat-item p {
    color: var(--light-gray);
}

.moat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.team-section {
    margin-top: 60px;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

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

.team-member img {
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--primary);
}

.team-member h4 {
    margin-bottom: 5px;
    color: var(--light);
}

.team-member p {
    font-size: 14px;
    color: var(--light-gray);
}

/* Story CTA */
.story-cta {
    text-align: center;
    margin-top: 60px;
}

.story-cta .btn-secondary {
    margin-left: 20px;
}

/* Responsive adjustments for YC sections */
@media (max-width: 768px) {
    .traction-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expansion-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .expansion-timeline::before {
        display: none;
    }
    
    .team-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .story-cta .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}

/* END OF YC IMPROVEMENTS */
