:root {
    --primary: #f37021;
    --primary-dark: #cc5a14;
    --secondary: #2c3e50;
    --text: #333;
    --light: #f9f9f9;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
}

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

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

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

/* Nav */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    z-index: 1000;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-width: 280px;
}

.logo span {
    font-weight: 800;
    font-size: 20px;
    color: var(--secondary);
}

.logo span span {
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    transition: all 0.3s;
}

.nav-links a.btn-primary {
    color: #fff !important;
    border-radius: 150px;
    transition: all 0.3s;
}

/* Hero */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(243, 112, 33, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(235, 107, 33, 0.03), transparent);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(243, 112, 33, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

/* Features */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Demo */
.demo {
    padding: 100px 0;
    background: #fdfdfd;
}

.demo-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.demo-browser {
    background: white;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 5px;
}

.address-bar {
    background: white;
    flex: 1;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 6px;
    color: #999;
}

.demo-content {
    height: 400px;
    position: relative;
}

.demo-step {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: none;
    opacity: 0;
}

.demo-step.active {
    display: block;
    opacity: 1;
}

.payment-method-mio {
    border: 1px solid var(--primary);
    padding: 15px;
    border-radius: 8px;
    background: rgba(243, 112, 33, 0.05);
    margin-top: 20px;
}

.btn-mio-pay,
.btn-demo-action {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

.demo-info .info-step {
    padding: 20px;
    border-radius: 12px;
    opacity: 0.4;
    transition: all 0.3s;
}

.demo-info .info-step.active {
    opacity: 1;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
}

/* Pricing */
.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.highlighted {
    border: 2px solid var(--primary);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.price {
    font-size: 50px;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 20px;
    color: #888;
}

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

.pricing-card li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: 800;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 800;
}

.footer-credit a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 900px) {

    .hero .container,
    .demo-container,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        display: none;
    }

    .nav-container {
        justify-content: center;
    }

    .glass-card img {
        max-width: 100% !important;
    }

    .hero-btns {
        display: block;
    }

    .hero-btns a {
        display: block !important;
        width: 100% !important;
        text-align: center;
        margin-bottom: 20px;
    }

    .price {
        font-size: 40px;
    }

    .section-title {
        font-size: 35px;
        line-height: 40px;
    }

    .footer-content {
        display: block;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 50px;
    }

}