@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;700;800&display=swap');

:root {
    --bg-dark: #080b11;
    --bg-card: #0f141c;
    --bg-card-hover: #141b26;
    --primary: #f0883e;
    --primary-gradient: linear-gradient(135deg, #ff7b39 0%, #e65100 100%);
    --secondary-gradient: linear-gradient(135deg, #58a6ff 0%, #0056b3 100%);
    --accent-gradient: linear-gradient(135deg, #ff7b39 0%, #58a6ff 100%);
    --text-main: #f0f3f6;
    --text-muted: #8b949e;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-inter);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 11, 17, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 130px;
    width: 130px;
    object-fit: contain;
    margin-top: -40px;
    margin-bottom: -40px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-cta {
    background: var(--primary-gradient);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(240, 136, 62, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 136, 62, 0.4);
}

/* Sections General */
section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    font-family: var(--font-outfit);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.section-title {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, #b3b9c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
    font-size: 17px;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    background: rgba(240, 136, 62, 0.1);
    border: 1px solid rgba(240, 136, 62, 0.25);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 30%, #a5b1c2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(240, 136, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(240, 136, 62, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h3 {
    font-family: var(--font-outfit);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(240, 136, 62, 0.15) 0%, rgba(88, 166, 255, 0.05) 50%, transparent 100%);
    z-index: 1;
    filter: blur(40px);
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(240, 136, 62, 0.1);
    z-index: 2;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-premium);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(240, 136, 62, 0.2);
    box-shadow: 0 15px 40px -10px rgba(240, 136, 62, 0.15);
}

.feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(240, 136, 62, 0.1);
    border-color: rgba(240, 136, 62, 0.3);
}

.feature-card h3 {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

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

/* ROI Crisis Section */
.crisis-panel {
    background: linear-gradient(135deg, rgba(240, 136, 62, 0.04) 0%, rgba(88, 166, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.crisis-left h2 {
    font-family: var(--font-outfit);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    color: white;
}

.crisis-left p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
}

.crisis-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.crisis-bullet {
    background: rgba(240, 136, 62, 0.1);
    color: var(--primary);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
}

.crisis-item-text {
    font-size: 15px;
    color: var(--text-main);
}

/* Comparison Cards */
.crisis-comparison {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comp-card {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.comp-card.highlight {
    border-color: rgba(88, 166, 255, 0.3);
    background: rgba(88, 166, 255, 0.03);
}

.comp-card.primary-highlight {
    border-color: rgba(240, 136, 62, 0.3);
    background: rgba(240, 136, 62, 0.03);
}

.comp-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.comp-detail h4 {
    font-family: var(--font-outfit);
    font-size: 16px;
    margin-bottom: 4px;
}

.comp-detail p {
    color: var(--text-muted);
    font-size: 14px;
}

.comp-cost {
    margin-left: auto;
    font-family: var(--font-outfit);
    font-weight: 800;
    font-size: 20px;
    text-align: right;
}

.comp-cost.bad {
    color: #ff6b6b;
}

.comp-cost.good {
    color: #4ade80;
}

/* Pricing Section */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--text-main);
}

.pricing-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: #21262d;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.pricing-switch-handle {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-switch.active .pricing-switch-handle {
    transform: translateX(26px);
}

.discount-badge {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card.premium {
    border-color: var(--primary);
    transform: scale(1.03);
}

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

.pricing-card:not(.premium):hover {
    transform: translateY(-8px);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .tier-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-price {
    font-family: var(--font-outfit);
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricing-price .period {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
}

.setup-fee {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: #4ade80;
    font-weight: bold;
    font-size: 16px;
}

.pricing-features li.disabled {
    color: #555c65;
}

.pricing-features li.disabled::before {
    content: "✕";
    color: #ff6b6b;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

/* FAQ Accordion */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    font-family: var(--font-outfit);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.faq-open .faq-answer {
    max-height: 200px;
    border-top: 1px solid var(--border-color);
}

.faq-item.faq-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer-inner {
    padding: 24px;
}

/* Contact/Trial Form */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-premium);
}

.contact-info h3 {
    font-family: var(--font-outfit);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    background: rgba(240, 136, 62, 0.1);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.detail-content h4 {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.detail-content p {
    font-size: 16px;
    color: white;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-control {
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 18px;
    color: white;
    font-family: var(--font-inter);
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 136, 62, 0.15);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 24px;
    background: #06090e;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 14px;
}

/* Reveal Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes pulseCooking {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 140px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 32px auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crisis-panel {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 450px;
        margin: 0 auto;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

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

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

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
