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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b6b;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6b6b;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b6b" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #ff6b6b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    animation: slideInDown 0.6s ease;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    min-width: 45px;
    text-align: center;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.lang-btn:hover::before {
    opacity: 0.2;
}

.lang-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.1; }
}

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

/* Language switcher tooltip */
.lang-btn:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
}

/* Mobile responsive language switcher */
@media (max-width: 768px) {
    .language-switcher {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.4rem;
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        min-width: 35px;
    }
}

/* Mobile responsive pricing table */
@media (max-width: 768px) {
    .compare-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .compare-table {
        min-width: 800px;
        font-size: 0.9rem;
    }
    
    .plan-header h3 {
        font-size: 1.2rem;
    }
    
    .plan-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .plan-price {
        font-size: 0.9rem;
    }
    
    .plan-min-price {
        font-size: 0.8rem;
    }
    
    .get-started-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .feature-name {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .category-title {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

@media (max-width: 600px) {
    .compare-table {
        min-width: 700px;
    }
    
    .plan-header {
        padding: 1rem;
    }
    
    .plan-header h3 {
        font-size: 1.1rem;
    }
    
    .plan-description {
        display: none;
    }
    
    .compare-table th,
    .compare-table td {
        padding: 0.5rem;
    }
    
    .feature-name {
        max-width: 200px;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .compare-table {
        min-width: 600px;
        font-size: 0.8rem;
    }
    
    .plan-header h3 {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 0.8rem;
    }
    
    .plan-min-price {
        font-size: 0.7rem;
    }
    
    .get-started-button {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .compare-table th,
    .compare-table td {
        padding: 0.4rem;
    }
    
    .feature-name {
        font-size: 0.7rem;
        max-width: 150px;
    }
    
    .category-title {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .price-value,
    .min-price-value {
        font-size: 0.9rem;
    }
}

/* Mobile table scroll indicator */
.compare-table-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 107, 107, 0.3) 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.compare-table-wrapper.scrolling::after {
    opacity: 1;
}

/* Mobile plan switcher */
@media (max-width: 600px) {
    .plan-switcher {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .switcher-button {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .document-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-document {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-document {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn-document i {
        font-size: 0.9rem;
    }
}

.btn-primary {
    background: #ff6b6b;
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b6b;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #ff6b6b;
    color: #000000;
}

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

.franchise-showcase {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
}

.business-icon {
    font-size: 8rem;
    color: rgba(255, 107, 107, 0.3);
    animation: float 3s ease-in-out infinite;
}

.car-icon {
    font-size: 10rem;
    color: rgba(255, 107, 107, 0.3);
    animation: float 3s ease-in-out infinite 0.5s;
}

.scooter-icon {
    font-size: 8rem;
    color: rgba(255, 217, 61, 0.3);
    animation: float 3s ease-in-out infinite 1s;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: 2px;
}

/* About Section */
.about {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.about-feature i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.about-document {
    margin-top: 2rem;
}

.about-document .btn-document {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.about-document .btn-document:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.about-document .btn-document i {
    color: #000000;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
}

/* Benefits Section */
.benefits {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: #0a0a0a;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit p {
    color: #cccccc;
    line-height: 1.6;
}

/* Compare Plans Section */
.compare-plans {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0;
}

.plan-switcher-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.plan-switcher {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.switcher-button {
    background: transparent;
    border: none;
    color: #cccccc;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.switcher-button:hover {
    color: #ffffff;
}

.switcher-button.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.compare-table-wrapper {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 800px;
}

.compare-table th {
    background: #1a1a1a;
    padding: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.feature-column {
    width: 35%;
    text-align: left;
    padding: 1.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-column {
    width: 21.67%;
    text-align: center;
    vertical-align: top;
}

.plan-header {
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
}

.plan-column.scale .plan-header {
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-column.enterprise .plan-header {
    background: rgba(255, 107, 107, 0.1);
    border-right: 1px solid rgba(255, 107, 107, 0.2);
}

.plan-column.customize .plan-header {
    background: rgba(255, 217, 61, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.plan-column.scale .plan-header h3 {
    color: #ffffff;
}

.plan-column.enterprise .plan-header h3 {
    color: #ff6b6b;
}

.plan-column.customize .plan-header h3 {
    color: #ffd93d;
}

.plan-description {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.plan-price {
    font-size: 1.1rem;
    color: #ffd93d;
    font-weight: 600;
    margin: 0.5rem 0;
}

.plan-min-price {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0.5rem 0 1rem 0;
}

.get-started-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: auto;
}

.get-started-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.compare-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.feature-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.category-row {
    background: rgba(255, 255, 255, 0.02);
}

.category-title {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 2px solid rgba(255, 107, 107, 0.2);
}

.included {
    text-align: center;
    color: #10b981;
    font-size: 1.2rem;
}

.included i {
    color: #10b981;
}

.price {
    text-align: center;
    color: #ffd93d;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.not-included {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
}

.customizable {
    text-align: center;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hover effects for table rows */
.compare-table tbody tr {
    transition: background-color 0.3s ease;
}

.compare-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.compare-table tbody tr:hover .feature-name {
    color: #ff6b6b;
}

/* Responsive table styles */
@media (max-width: 768px) {
    .compare-plans {
        padding: 60px 0;
    }
    
    .plan-switcher {
        padding: 3px;
    }
    
    .switcher-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .compare-table-wrapper {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .compare-table {
        font-size: 0.85rem;
        min-width: 600px;
    }
    
    .feature-column {
        width: 40%;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .plan-column {
        width: 20%;
    }
    
    .plan-header {
        padding: 1.5rem 0.8rem;
        min-height: 160px;
    }
    
    .plan-header h3 {
        font-size: 1.2rem;
    }
    
    .plan-description {
        font-size: 0.8rem;
    }
    
    .plan-price {
        font-size: 1rem;
    }
    
    .plan-min-price {
        font-size: 0.8rem;
    }
    
    .compare-table td {
        padding: 0.8rem 1rem;
    }
    
    .feature-name {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 0.8rem;
    }
    
    .category-title {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .plan-switcher {
        flex-direction: column;
        width: 100%;
        max-width: 200px;
        border-radius: 15px;
    }
    
    .switcher-button {
        width: 100%;
        border-radius: 10px;
        text-align: center;
    }
    
    .compare-table {
        font-size: 0.75rem;
        min-width: 500px;
    }
    
    .plan-header {
        padding: 1rem 0.5rem;
        min-height: 140px;
    }
    
    .plan-header h3 {
        font-size: 1rem;
    }
    
    .plan-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .plan-price {
        font-size: 0.9rem;
    }
    
    .plan-min-price {
        font-size: 0.7rem;
    }
    
    .get-started-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .compare-table td {
        padding: 0.6rem 0.8rem;
    }
    
    .feature-name {
        font-size: 0.75rem;
    }
    
    .price {
        font-size: 0.7rem;
    }
    
    .category-title {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Investment Section */
.investment {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.investment-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.investment-card.featured {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.investment-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: #ffd93d;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.description {
    color: #cccccc;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.features-list i {
    color: #ff6b6b;
    font-size: 1rem;
}

.btn-investment {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.btn-investment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Process Section */
.process {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b6b;
    width: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.contact-item p {
    color: #cccccc;
}

.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #0a0a0a;
    color: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
}

/* Language switcher styles */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
}

.lang-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
    color: #000000;
    border-color: transparent;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Enhanced animations and micro-interactions */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-card, .benefit, .investment-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.benefit:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.investment-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.25);
    border-color: rgba(255, 107, 107, 0.4);
}

/* Enhanced button animations */
.btn-primary, .btn-secondary, .cta-button, .btn-investment {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
}

/* Enhanced hover states for icons */
.benefit-icon, .investment-card:hover .badge {
    transition: all 0.3s ease;
}

.benefit:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    color: #ff8787;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* Enhanced stats animation */
.stat {
    transition: all 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
}

.stat-number {
    transition: all 0.3s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

/* Enhanced social links */
.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* Enhanced form inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex !important;
        right: 0;
    }
    
    .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
    z-index: 1001;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .hamburger i {
        font-size: 1.5rem;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        background: rgba(255, 107, 107, 0.2);
        transform: scale(1.1);
    }

    .hamburger.active {
        background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
        transform: rotate(180deg);
    }

    .hamburger.active i {
        color: #000000;
    }

    /* Car menu animation */
    .car-menu i {
        animation: carDrive 2s ease-in-out infinite;
    }

    @keyframes carDrive {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-2px); }
        75% { transform: translateX(2px); }
    }

    .car-menu.active i {
        animation: carHonk 0.5s ease-in-out;
    }

    @keyframes carHonk {
        0%, 100% { transform: scale(1) rotate(0deg); }
        50% { transform: scale(1.2) rotate(-10deg); }
    }

    /* Overlay for mobile menu */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
        min-height: auto;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
        order: 2;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        order: 1;
        margin-top: 0;
        margin-bottom: 2rem;
    }
    
    .franchise-showcase {
        flex-direction: column;
        gap: 1rem;
    }
    
    .business-icon {
        font-size: 4rem;
        color: rgba(255, 107, 107, 0.4);
    }
    
    .car-icon {
        font-size: 5rem;
        color: rgba(255, 107, 107, 0.4);
    }
    
    .scooter-icon {
        font-size: 4rem;
        color: rgba(255, 217, 61, 0.4);
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-card.featured {
        transform: scale(1);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .benefit, .investment-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-button {
        display: none;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
    }
    
    .business-icon {
        font-size: 3rem;
    }
    
    .car-icon {
        font-size: 4rem;
    }
    
    .scooter-icon {
        font-size: 3rem;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .cta-button.large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .document-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-document {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        padding: 0.8rem 1.2rem;
        border-radius: 20px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 0.9rem;
        backdrop-filter: blur(10px);
    }
    
    .btn-document:hover {
        background: rgba(255, 107, 107, 0.2);
        border-color: #ff6b6b;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    }
    
    .btn-document:active {
        transform: translateY(0);
    }
    
    .btn-document i {
        font-size: 1rem;
        color: #ff6b6b;
    }
    
    .benefit, .investment-card {
        padding: 1.2rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .nav-menu.active {
        top: 70px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
}
