:root {
    --primary-orange: #FF7A00;
    --primary-orange-light: #FF9E42;
    --primary-orange-dark: #b85700;
    --bg-color: #07080a;
    --bg-color-alt: #0a0c0f;
    --text-light: #f5f5f7;
    --text-muted: #a1a1aa;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --glow-color: rgba(255, 122, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(7, 8, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

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

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

.logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

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

/* Base Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff4d00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-light);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--card-hover);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--glow-color) 0%, rgba(0,0,0,0) 65%);
    top: 15%;
    left: 45%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 122, 0, 0.1);
    border: 1px solid rgba(255, 122, 0, 0.3);
    color: var(--primary-orange-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-orange), #ff4d00);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-orange), #ffd1a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero Visual Interactive */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

.mic-container {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.mic-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-orange), #ff4d00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.4);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mic-container:hover .mic-button {
    transform: scale(1.08);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    opacity: 0;
}

.mic-container.active .pulse-ring {
    animation: pulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mic-container.active .delay-1 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

.speech-bubble {
    margin-top: 50px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px 36px;
    border-radius: 20px;
    border-top-left-radius: 4px;
    font-size: 1.25rem;
    color: var(--text-muted);
    min-width: 320px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.speech-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-color-alt));
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,122,0,0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    background: var(--card-hover);
    border-color: rgba(255, 122, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-color-alt);
}

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

.step-card {
    position: relative;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(255, 122, 0, 0.3);
    transform: translateY(-8px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 20px;
    opacity: 0.3;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg-color-alt), var(--bg-color));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-single-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card-single {
    background: var(--card-bg);
    border: 2px solid var(--primary-orange);
    padding: 50px 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.15);
}

.pricing-card-single:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(255, 122, 0, 0.25);
}

.pricing-card-single h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.price-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 8px;
    text-align: center;
}

.price-note-single {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--card-border);
}

.price-features-single {
    list-style: none;
    margin-bottom: 30px;
}

.price-features-single li {
    padding: 14px 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
}

.price-features-single li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    background: rgba(255, 122, 0, 0.05);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.2);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--card-border);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features li i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.pricing-card:hover {
    border-color: rgba(255, 122, 0, 0.5);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--bg-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 122, 0, 0.3);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 122, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(0,0,0,0.2);
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Action Section */
.action-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(255, 122, 0, 0.08) 0%, transparent 60%);
    text-align: center;
}

.action-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.action-container p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 30px;
    max-width: 600px;
}

/* Footer */
/* Custom Cursor Trail */
* {
    cursor: none;
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(255, 122, 0, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: fadeOut 600ms forwards;
    box-shadow: 0 0 8px rgba(255, 122, 0, 0.6);
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}
/* Footer */
footer {
    background: var(--bg-color-alt);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo {
    height: 32px;
    width: auto;
}

.footer-brand .logo-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
    margin-left: 16px;
}

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

.link-group {
    display: flex;
    gap: 20px;
}

.link-group a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .footer-links {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero::before {
        left: 50%;
        top: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .faq-question i {
        margin-left: 0;
        align-self: flex-end;
        margin-top: -40px;
    }

    .pricing-card-single {
        padding: 40px 24px;
        margin: 0 16px;
    }

    .price-large {
        font-size: 2.8rem;
    }

    .price-features-single li {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}
