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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.hero-logo-container {
    perspective: 1000px;
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 220px;
    height: auto;
    border-radius: 30px;
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.4),
        -5px -5px 20px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: float3d 4s ease-in-out infinite;
}

.hero-logo:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 
        30px 30px 80px rgba(0, 0, 0, 0.5),
        -10px -10px 30px rgba(255, 255, 255, 0.15);
}

@keyframes float3d {
    0%, 100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-10deg) rotateX(3deg) translateY(-10px);
    }
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.description {
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.app-download-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.app-card {
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 220px;
}

.app-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.app-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.app-card.rider-app {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.app-card.driver-app {
    background: linear-gradient(135deg, #1a3d2a 0%, #0d1f15 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.download-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: transform 0.3s, background 0.3s;
}

.store-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
}

.store-button svg {
    flex-shrink: 0;
}

.cta-button {
    background: white;
    color: #1a5f2a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.features {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.features h2, .comparison h2, .about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a5f2a;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    color: #1a5f2a;
    margin-bottom: 0.5rem;
}

.comparison {
    padding: 5rem 5%;
}

.table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #1a5f2a;
    color: white;
    font-weight: 600;
}

.highlight {
    color: #1a5f2a;
    font-weight: 600;
}

.innovations {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a3d2a 0%, #0d1f15 100%);
    color: white;
}

.innovations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
}

.innovations-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

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

.innovation-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.innovation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.innovation-card h3 {
    color: #2ecc71;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.innovation-subtitle {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.innovation-card > p:last-of-type {
    line-height: 1.7;
    opacity: 0.9;
}

.innovation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.innovation-features span {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.innovation-video h3 {
    color: #2ecc71;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.innovation-video video {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.founder-info {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.founder-info h3 {
    color: #1a5f2a;
    margin-bottom: 0.5rem;
}

.founder-info > p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cv-section {
    margin-top: 1.5rem;
    text-align: left;
}

.cv-section h4 {
    color: #1a5f2a;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.cv-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.cv-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cv-item strong {
    color: #1a5f2a;
    display: block;
    margin-bottom: 0.2rem;
}

.cv-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.cv-contact {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cv-contact p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cv-download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f2a 0%, #2d8a3e 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cv-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 42, 0.3);
}

.linkedin-link {
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
}

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

.about {
    padding: 5rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.footer {
    background: #1a5f2a;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
}
