:root {
    --bg-dark: #070709;
    --bg-card: #121215;
    --bg-card-hover: #18181c;
    --brand-orange: #FF5A36;
    --brand-orange-hover: #ff7052;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-color: rgba(255, 90, 54, 0.15);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Extensions */
h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
}
.highlight-orange {
    color: var(--brand-orange);
    background: linear-gradient(135deg, #FF5A36 0%, #ff8c52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
    font-size: 1.15rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--brand-orange);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 90, 54, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-text {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}
.btn-text:hover {
    color: var(--brand-orange);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-orange);
    border-radius: 8px;
    position: relative;
}
.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    background: var(--bg-dark);
    border-radius: 50%;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a.btn-secondary {
    color: var(--text-primary);
}
.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 160px 2rem 40px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}
.glow-blob {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    z-index: -1;
}
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 90, 54, 0.1);
    color: var(--brand-orange);
    border: 1px solid rgba(255, 90, 54, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* UI Carousel Pro Max */
.hero-carousel-wrapper {
    margin-top: 5rem;
    perspective: 1000px;
    width: 100%;
}
.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 2rem;
    /* Custom Scrollbar for cool aesthetics */
    scrollbar-width: thin;
    scrollbar-color: var(--brand-orange) var(--bg-card);
    -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar {
    height: 8px;
}
.carousel-track::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 8px;
}
.carousel-track::-webkit-scrollbar-thumb {
    background-color: var(--brand-orange);
    border-radius: 8px;
}
.carousel-slide {
    flex: 0 0 100%;
    max-width: 1000px;
    scroll-snap-align: center;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255, 90, 54, 0.4);
    transform: rotateX(8deg) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    will-change: transform;
}
.carousel-slide:hover {
    transform: rotateX(0deg) translateY(0);
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 0 2px rgba(255, 90, 54, 0.8);
}
.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 90, 54, 0.1);
    border: 1px solid rgba(255, 90, 54, 0.3);
    color: var(--brand-orange);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255, 90, 54, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.carousel-btn:hover::before {
    left: 0;
}

.carousel-btn:hover {
    border-color: rgba(255, 90, 54, 0.6);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 90, 54, 0.4);
}

.carousel-btn:active {
    transform: scale(0.92);
}

.carousel-nav {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 60px;
}

/* Features */
.features {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.grid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}
.icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(255, 90, 54, 0.1);
    color: var(--brand-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0c 100%);
    position: relative;
}
.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}
.cta-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--brand-orange), transparent);
}
.cta-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta-info .section-title {
    text-align: left;
}
.cta-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-line {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}
.contact-line iconify-icon {
    color: var(--brand-orange);
    font-size: 1.2rem;
}
.cta-form-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    background: #0f0f11;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
}
.form-group textarea {
    height: 100px;
    resize: none;
}
.submit-btn {
    width: 100%;
    background: var(--brand-orange);
    color: #fff;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn:hover {
    background: var(--brand-orange-hover);
}
.submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}
.privacy-note {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-features { grid-template-columns: 1fr; }
    .cta-container { grid-template-columns: 1fr; padding: 2.5rem; }
    .hero-title { font-size: 3rem; }
    .nav-links { display: none; }
    .carousel-slide { flex: 0 0 90vw; max-width: 100%; }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 1rem 2rem 1rem;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-primary, .btn-text {
        width: 100%;
        justify-content: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .grid-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 2rem 1.5rem;
    }
    .carousel-controls {
        gap: 1rem;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .cta-container {
        padding: 2rem 1rem;
        border-radius: 16px;
    }
    .cta-form-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0.75rem 1rem 0.75rem;
    }
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .feature-card {
        padding: 1.5rem 1rem;
    }
    .feature-card h3 {
        font-size: 1.1rem;
    }
    .feature-card p {
        font-size: 0.95rem;
    }
    .carousel-nav {
        font-size: 0.85rem;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .logo {
        font-size: 1rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-container {
        padding: 0 1rem;
    }
}
