/* Mobile Navigation Styles - Updated */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.mobile-menu-btn::before, 
.mobile-menu-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
}

.mobile-menu-btn::before {
    border-top: 2px solid var(--verde-kers);
    border-left: 2px solid var(--verde-kers);
}

.mobile-menu-btn::after {
    bottom: 0;
    right: 0;
    top: auto;
    left: auto;
    border-bottom: 2px solid var(--verde-kers);
    border-right: 2px solid var(--verde-kers);
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--verde-kers);
}/* Logo animation */
@keyframes logoMorph {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    40% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-full, .logo-sr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-full img {
    width: 180px;
    max-height: 80px;
    object-fit: contain;
}

.logo-sr img {
    width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.logo-sr {
    opacity: 0;
}

.logo-sr a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Fix the alignment of the SR logo with the menu bar */
.logo-sr a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.logo-sr a img {
    width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.header-scrolled .logo-full {
    opacity: 0;
}

.header-scrolled .logo-sr {
    opacity: 1;
}

:root {
    --dark-grey: #2A2A2A;
    --verde-kers: #0FEA22;
    --turquoise: #2FF7C5;
    --pearl-green: #1E5231;
    --teal-deer: #97EAA5;
    --dark-jungle-green: #0F2023;
    --white: #FFFFFF;
}

@font-face {
    font-family: 'NFS';
    src: url('https://fonts.cdnfonts.com/css/need-for-font') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-grey);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s;
}

header.scrolled {
    background-color: rgba(42, 42, 42, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo-wrapper {
    position: relative;
    width: 180px;
    height: 80px;
    overflow: visible;
}

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

/* Default desktop nav styles */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    flex-direction: row;
}

nav ul li {
    margin-left: 30px;
}

/* Mobile menu button - hidden by default */
.mobile-menu-btn {
    display: none;
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-grey);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-grey);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--verde-kers);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Custom SureRoad Button Style - Updated with sleeker borders and fill effect */
.btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    overflow: hidden;
    border: 1px solid var(--verde-kers);
    height: 50px;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 0;
    left: 0;
    border-top: 8px solid var(--verde-kers);
    border-right: 8px solid transparent;
}

.btn::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 0;
    right: 0;
    border-bottom: 8px solid var(--verde-kers);
    border-left: 8px solid transparent;
}

.btn:hover {
    background-color: var(--verde-kers);
    color: var(--dark-grey);
}

.btn-primary {
    background-color: rgba(15, 234, 34, 0.2);
    position: relative;
}

.btn-primary::before {
    border-top: 8px solid var(--verde-kers);
    border-right: 8px solid transparent;
}

.btn-primary::after {
    border-bottom: 8px solid var(--verde-kers);
    border-left: 8px solid transparent;
}

.btn-primary:hover {
    background-color: var(--verde-kers);
}

.btn-outline {
    background-color: transparent;
    color: var(--verde-kers);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--verde-kers);
    color: var(--dark-grey);
}

/* Map Background */
.map-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.2;
    filter: brightness(0.6) contrast(1.2);
}

.map-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-grey) 40%, rgba(42, 42, 42, 0.8) 70%, rgba(42, 42, 42, 0.6) 100%);
    z-index: 1;
}

/* Diagonal Element */
.diagonal-element {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark-grey);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
    z-index: 2;
}

/* Mission Section */
.mission {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--verde-kers);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--verde-kers);
}

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

.mission-text, .mission-comparison {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.mission-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    color: var(--verde-kers);
    font-weight: 600;
}

.comparison-table .highlight {
    color: var(--verde-kers);
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: #222222;
    position: relative;
}

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

.feature-card {
    background-color: var(--dark-grey);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--verde-kers);
    transition: width 0.3s;
}

.feature-card:hover::before {
    width: 10px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--verde-kers);
}

.feature-card p {
    margin-bottom: 0;
}

/* Demo Section */
.demo {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.demo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.demo-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.demo-video {
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background-color: #000;
    cursor: pointer;
}

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

/* Updated Play Button - Simpler verde kers style */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--verde-kers);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.3s;
}

.play-button-inner {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--dark-grey);
    margin-left: 5px;
}

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

/* Market Section */
.market {
    padding: 120px 0;
    background-color: #222222;
    position: relative;
}

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

.market-text, .market-stats {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.market-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
}

.stat-card {
    background-color: var(--dark-grey);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--verde-kers);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Business Model Section */
.business-model {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 30px;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    background-color: #333;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--verde-kers);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--verde-kers);
    margin-bottom: 20px;
}

.pricing-card .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde-kers);
    font-weight: bold;
}

/* SureRoad Dashed Lines Element - REMOVED as requested */
.dashed-lines {
    display: none;
}

/* Updated Future Section Styles */
.future {
    padding: 120px 0;
    background-color: #222222;
    position: relative;
}

.future-content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.future-item {
    background-color: rgba(15, 234, 34, 0.05);
    border: 1px solid rgba(15, 234, 34, 0.1);
    padding: 30px;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.future-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 234, 34, 0.1);
    background-color: rgba(15, 234, 34, 0.08);
}

.future-item::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 0;
    left: 0;
    border-top: 8px solid var(--verde-kers);
    border-right: 8px solid transparent;
}

.future-item::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: 0;
    right: 0;
    border-bottom: 8px solid var(--verde-kers);
    border-left: 8px solid transparent;
}

.future-item h3 {
    color: var(--verde-kers);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.future-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info .info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--verde-kers);
    color: var(--dark-grey);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 20px;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: var(--white);
    font-size: 1rem;
    transition: background-color 0.3s;
}

.form-control:focus {
    outline: none;
    background-color: #444;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Minimalist Beta Signup Section Styles with Tighter Container */
.beta-signup {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    /* Uses the default dark grey background from the page */
}

/* Tighter container for beta section */
.beta-signup .container {
    max-width: 900px; /* More compact than the standard 1200px */
    margin: 0 auto;
}

.beta-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.beta-info, .beta-form {
    flex: 1;
    min-width: 280px;
}

.beta-info {
    padding: 0 20px 0 0;
}

.beta-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 234, 34, 0), rgba(15, 234, 34, 0.3) 50%, rgba(15, 234, 34, 0) 100%);
    margin: 30px 0;
}

.contact-link {
    color: var(--verde-kers);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-decoration: underline;
}

.beta-form {
    padding: 0 0 0 20px;
}

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

.beta-form .form-control {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background-color: rgba(51, 51, 51, 0.8);
    color: var(--white);
    font-size: 1rem;
    transition: background-color 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(15, 234, 34, 0.1);
}

.beta-form .form-control:focus {
    outline: none;
    background-color: rgba(51, 51, 51, 1);
    box-shadow: 0 0 0 2px rgba(15, 234, 34, 0.2);
}

.beta-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230FEA22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

.beta-form .btn {
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .beta-container {
        flex-direction: column;
    }
    
    .beta-info, .beta-form {
        flex: 100%;
        padding: 0;
    }
    
    .beta-signup .container {
        width: 90%; /* Slightly more padding on mobile */
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 60px 0 30px;
}

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

.footer-logo, .footer-links, .footer-newsletter {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--verde-kers);
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--verde-kers);
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: #333;
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 15px;
    background-color: var(--verde-kers);
    color: var(--dark-grey);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #0cc71e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #808080; /* standard grey color */
}

.footer-bottom a {
    color: #808080; /* standard grey color */
    text-decoration: none;
}

.footer-bottom a.footer-legal {
    color: var(--verde-kers);
    text-decoration: none; /* if you want to ensure no underline */
    transition: color 0.3s;
}

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

/* App Showcase Section Styles */
.app-showcase {
    padding: 120px 0;
    background-color: #222222;
    position: relative;
    overflow: hidden;
}

.app-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.app-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.app-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.app-features-list {
    margin-top: 40px;
}

.app-feature {
    display: flex;
    margin-bottom: 30px;
}

.feature-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--verde-kers);
}

.app-screens {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    position: relative;
}

.phone-container {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    position: absolute;
    width: 280px;
    height: 580px;
    background-color: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    overflow: hidden;
}

.phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 8px solid var(--verde-kers);
    border-right: 8px solid transparent;
    z-index: 10;
}

.phone::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-bottom: 8px solid var(--verde-kers);
    border-left: 8px solid transparent;
    z-index: 10;
}

.phone-inner {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background-color: #111;
    position: relative;
}

.phone-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-1 {
    transform: translateX(-140px) scale(0.85);
    z-index: 1;
}

.phone-2 {
    z-index: 2;
}

.phone-3 {
    transform: translateX(140px) scale(0.85);
    z-index: 1;
}

.phone-container:hover .phone-1 {
    transform: translateX(-220px) scale(0.8);
}

.phone-container:hover .phone-3 {
    transform: translateX(220px) scale(0.8);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: auto;
        margin-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -60px;
    }
    
    .phone-container {
        height: 500px;
    }
    
    .phone {
        width: 230px;
        height: 480px;
    }
    
    .phone-1 {
        transform: translateX(-100px) scale(0.85);
    }
    
    .phone-3 {
        transform: translateX(100px) scale(0.85);
    }
    
    .phone-container:hover .phone-1 {
        transform: translateX(-160px) scale(0.8);
    }
    
    .phone-container:hover .phone-3 {
        transform: translateX(160px) scale(0.8);
    }
}


@media (max-width: 768px) {
.hero-image {
        display: none;
    }
    
    .hero-overlay {
        background: rgba(42, 42, 42, 0.7);
    }
    
    .mission-text, .mission-comparison {
        flex: 100%;
    }
    
    .app-text, .app-screens {
        flex: 100%;
    }
    
    .phone-container {
        height: 450px;
        margin-top: 40px;
    }
    
    .phone {
        width: 200px;
        height: 420px;
    }
    
    .phone-1, .phone-3 {
        display: none;
    }
    
    .phone-2 {
        position: relative;
        margin: 0 auto;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-grey);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn, .btn-outline {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .mission, .features, .demo, .market, .business-model, .future, .contact {
        padding: 80px 0;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* Comparison Table Mobile Fixes */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        width: 100%;
        overflow-x: auto; /* Allow horizontal scrolling if needed */
        padding: 0;
        margin: 0 auto;
    }
    
    .comparison-table {
        width: 100%;
        min-width: 100%; /* Ensure table takes full width */
        margin: 0;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 10px; /* Slightly reduce padding on mobile */
    }
    
    .mission-text, 
    .mission-comparison {
        padding: 10px; /* Consistent padding */
    }
    
    /* Add proper side padding to ensure content doesn't touch edges */
    .mission-content {
        padding: 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .comparison-table th, 
    .comparison-table td {
        padding: 8px 6px; /* Further reduce padding on very small screens */
        font-size: 0.9rem; /* Slightly smaller text */
    }
}

/* Road Graphic - REMOVED as requested */
.road-graphic {
    display: none;
}

/* Extended asset styling - REMOVED as requested */
.extended-asset {
    display: none;
}