:root {
    --primary-color: #A3E670; /* Light Green */
    --primary-hover: #92D360;
    --secondary-color: #1A1A1A; /* Dark Background */
    --text-color: #333333;
    --text-light: #FFFFFF;
    --text-muted: #888888;
    --card-bg: #F9F9F9;
    --section-bg-dark: #1F1F1F;
    --border-radius: 12px;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    padding: 20px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 30px;
    margin: 20px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-dark-outline {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
}

.store-btn img, .store-btn svg {
    height: 20px;
    width: 20px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 500px;
}

/* Mockup styles to attempt to recreate the image look with CSS/Layout */
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    transform: rotate(-10deg) scale(0.9) translateX(50px);
}

.mockup-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.mockup-item img {
    width: 100%;
    display: block;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-header p {
    max-width: 600px;
    color: #666;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services {
    background: var(--secondary-color);
    color: #fff;
    padding: 80px 20px;
    border-radius: 30px;
    margin: 20px;
}

.services-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.services-content {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

.services-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.service-item {
    background: #2A2A2A;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: background 0.3s;
}

.service-item:hover {
    background: #333;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #3E3E3E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}
.service-icon.active {
    background: var(--primary-color);
    color: #000;
}


.service-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.service-info p {
    color: #aaa;
    font-size: 14px;
}

.services-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}
.services-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    text-align: center;
}

.how-it-works .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.how-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    max-width: 500px;
}

.how-image img {
    width: 100%;
}

.how-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.how-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.how-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
}

.benefits h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

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

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}

/* Footer / CTA */
.cta-section {
    background: var(--secondary-color);
    color: #fff;
    border-radius: 30px;
    margin: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 500px;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    color: #aaa;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.main-footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .about-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-container {
        flex-direction: column-reverse;
    }
}
