:root {
    /* Brand Colors */
    --color-primary: #ed751f;
    --color-secondary: #e3ab23;
    --color-dark: #000000;
    --color-dark-light: #0a0a0a;
    --color-dark-card: #111111;
    --color-dark-elevated: #1a1a1a;
    --color-white: #ffffff;
    --color-text-light: #e0e0e0;
    --color-text-muted: #bcbcbc;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ed751f 0%, #e3ab23 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(237, 117, 31, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Loader */
.loader-container {
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 99999;
    position: fixed;
}

.loader-container p {
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    transform: scale(0.5);
    color: #121212;
    -webkit-text-stroke: 2px gray;
}

.loader-container p:nth-child(1) {
    animation: hover 1s linear infinite;
}

.loader-container p:nth-child(2) {
    animation: hover 1s linear infinite 0.125s;
}

.loader-container p:nth-child(3) {
    animation: hover 1s linear infinite 0.25s;
}

.loader-container p:nth-child(4) {
    animation: hover 1s linear infinite 0.375s;
}

.loader-container p:nth-child(5) {
    animation: hover 1s linear infinite 0.5s;
}

.loader-container p:nth-child(6) {
    animation: hover 1s linear infinite 0.675s;
}

.loader-container p:nth-child(7) {
    animation: hover 1s linear infinite 0.75s;
}

.loader-container p:nth-child(8) {
    animation: hover 1s linear infinite 0.875s;
}

.loader-container p:nth-child(9) {
    animation: hover 1s linear infinite 1s;
}

.loader-container p:nth-child(10) {
    animation: hover 1s linear infinite 1.125s;
}

.loader-container p:nth-child(11) {
    animation: hover 1s linear infinite 1.25s;
}

.loader-container p:nth-child(12) {
    animation: hover 1s linear infinite 1.375s;
}

.loader-container p:nth-child(13) {
    animation: hover 1s linear infinite 1.5s;
}

.loader-container p:nth-child(14) {
    animation: hover 1s linear infinite 1.625s;
}

@keyframes hover {
    0% {
        transform: scale(0.5);
        color: #121212;
        -webkit-text-stroke: 2px rgb(0, 0, 0);
    }

    20% {
        transform: scale(1);
        color: var(--color-primary);
        -webkit-text-stroke: 2px var(--color-primary);
        filter: none;
    }

    50% {
        transform: scale(0.5);
        color: var(--color-white);
        -webkit-text-stroke: 2px white;
    }
}

/* Fade Animations */
/* BASE REVEAL SYSTEM */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* CUSTOM FADE DIRECTIONS */
.active.fade0 {
    animation: fade0 1.2s ease-in-out;
}

.active.fade1 {
    animation: fade1 1.2s ease-in-out;
}

.active.fade2 {
    animation: fade2 1.2s ease-in-out;
}

.active.fade3 {
    animation: fade3 1.2s ease-in-out;
}


/* KEYFRAMES */
@keyframes fade0 {
    0% { transform: translateY(-100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fade1 {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade2 {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade3 {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}


/* 🔥 VERY IMPORTANT:
   The hero / first section must NEVER be invisible */
.hero.reveal,
.banner.reveal,
.first-section.reveal {
    opacity: 1 !important;
    transform: none !important;
}



/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
    background: var(--gradient-dark);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero p {
    font-size: 20px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 60px;
    background: var(--color-dark);
}

.pricing-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.pricing-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(237, 117, 31, 0.3);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: rgba(237, 117, 31, 0.5);
    background: rgba(17, 17, 17, 0.6);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.plan-description {
    font-size: 15px;
    color: var(--color-text-muted);
}

.plan-price {
    text-align: center;
    margin-bottom: 40px;
}

.plan-price .currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-light);
    vertical-align: top;
    margin-right: 5px;
}

.plan-price .amount {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

.plan-price .period {
    font-size: 18px;
    color: var(--color-text-muted);
    display: block;
    margin-top: 5px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: var(--color-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: rgba(237, 117, 31, 0.1);
    border: 2px solid rgba(237, 117, 31, 0.3);
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
}

.plan-button:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured .plan-button {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured .plan-button:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(237, 117, 31, 0.5);
}

/* Features Section */
.features-section {
    padding: 100px 60px;
    background: var(--color-dark-light);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.features-header p {
    font-size: 18px;
    color: var(--color-text-muted);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 117, 31, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(237, 117, 31, 0.1);
    border: 2px solid rgba(237, 117, 31, 0.3);
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    background: rgba(237, 117, 31, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: var(--color-text-light);
}

/* FAQ Section */
.faq-section {
    padding: 100px 60px;
    background: var(--color-dark);
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 18px;
    color: var(--color-text-muted);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(237, 117, 31, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    flex: 1;
}

.faq-question i {
    color: var(--color-primary);
    font-size: 16px;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 120px 60px;
    background: var(--color-dark-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(237, 117, 31, 0.5);
}

/* Footer */
.footer {
    padding: 30px 10px 0px 10px;
    z-index: 999;
    color: #2f2f2f;
    background-color: #202020;
    border-top: 1px solid #000000;
    width: 100%;
    margin: 0;
}

.footer_nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.nav_con {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.nav_con img {
    width: 180px;
    cursor: pointer;
}

.nav_con h2 {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 400;
    color: white;
}

.nav_ul.extra {
    column-count: 2;
    column-gap: 40px;
}

.nav_item {
    margin-top: 20px;
}

.nav_item h2 {
    font-weight: 400;
    font-size: 26px;
    color: white;
}

.nav_con a {
    color: #e3ab23;
    margin: 5px 0;
    text-decoration: none;
}

.footer p {
    margin: 10px 0;
    font-style: normal;
    color: #dcdcdc;
}

.footer .nav_item a {
    margin: 10px 0;
    color: #efefef;
    text-decoration: none;
}

.footer .nav_item a:hover {
    margin: 10px 0;
    color: #ed751f;
}

.footer ul {
    margin-top: 30px;
    list-style: none;
}

.footer ul li {
    margin: 10px 0;
}

.legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.legal p {
    color: #bcbcbc;
    font-size: 14px;
}

.links {
    display: flex;
    gap: 20px;
}

.links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.links i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 120px 30px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .pricing-section,
    .features-section,
    .faq-section,
    .cta-section {
        padding: 80px 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-header h2,
    .faq-header h2,
    .cta-content h2 {
        font-size: 36px;
    }

    .plan-price .amount {
        font-size: 48px;
    }

    .legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav_con {
        width: 100%;
    }
}