:root {
    --primary: #ffaa33;
    --primary-foreground: #323232;
    --secondary: #ffaa3330;
    --secondary-foreground: #1A1F2C;
    --background: #ffffff;
    --foreground: #1A1F2C;
    --muted: #F1F0FB;
    --muted-foreground: #333333;
    --border: #E5DEFF;
    --accent: #ffaa33;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: var(--primary);
    padding: 1.25rem 1.5rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .nav-mobile {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: rgb(39 39 39 / 90%);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-foreground);
}

.nav-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
}

.btn-primary:hover {
    background-color: rgb(231 153 44);
}

.btn-secondary {
    background-color: #ffffff8f;
    color: var(--secondary-foreground);
    padding: 0.5rem 0.75rem;
}

.btn-secondary:hover {
    background-color: rgba(242, 252, 226, 0.8);
}

.btn-sm {
    padding: 0.5rem 0.75rem;
}

.btn-lg {
    padding: 0.75rem 3rem;
    font-size: 1rem;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgb(39 39 39 / 90%);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.btn-language:hover {
    color: var(--primary-foreground);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    width: 100%;
}

.menu-toggle {
    background: transparent;
    border: none;
    color: var(--primary-foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.icon {
    width: 1rem;
    height: 1rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background-color: var(--background);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.mobile-link {
    font-size: 1rem;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero */
.hero {
    padding: 5rem 1.5rem;
    background-color: var(--background);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.hero-subtext {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.hero-card {
    background-color: rgba(155, 135, 245, 0.05);
    border-radius: 1rem;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-text {
    color: var(--muted-foreground);
}

/* Features */
.features {
    padding: 4rem 1.5rem;
}

.features .container {
    max-width: 64rem;
}

.feature-card {
    background-color: var(--background);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    background-color: rgba(155, 135, 245, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Steps */
.steps {
    padding: 4rem 1.5rem;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background-color: rgba(155, 135, 245, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
}

.step-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact */
.contact {
    padding: 4rem 1.5rem;
    background-color: var(--background);
}

.contact-content {
    max-width: 48rem;
    text-align: center;
}

.contact .section-title {
    margin-bottom: 1.5rem;
}

.contact-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--secondary);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.contact-box .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.contact-box a {
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
}

.contact-box a:hover {
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--secondary);
    padding: 2rem 1.5rem;
}

.footer-content {
    max-width: 64rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-divider {
    color: var(--muted-foreground);
}

/* Page Content */
.page-content {
    padding: 4rem 1.5rem;
    flex: 1;
    min-height: calc(100vh - 200px);
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--muted-foreground);
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.text-content {
    line-height: 1.7;
}

.contact-email {
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
}

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