:root {
    --primary-color: #ff8c1a;
    --primary-light: #ffb347;
    --secondary-color: #232323;
    --dark-bg: #181818;
    --text-primary: #f0f0f0;
    --text-secondary: #e0a96d;
    --accent-gradient: linear-gradient(90deg, #ffb347 0%, #ff8c1a 100%);
    --bg-gradient: linear-gradient(135deg, #232323 0%, #181818 100%);
    --shadow-primary: 0 4px 24px rgba(255, 140, 26, 0.15);
    --shadow-secondary: 0 8px 40px rgba(0, 0, 0, 0.13);
    --border-radius: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

::after,
::before {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: Inter, Montserrat, 'Segoe UI', Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-gradient);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .3s ease
}

.loading-content {
    text-align: center
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary)
}

.loading-icon,
.loading-logo i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 25px rgba(255, 215, 0, .4)) drop-shadow(0 2px 10px rgba(192, 192, 192, .3))
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 140, 26, .2);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 0 auto
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

body::after,
body::before {
    content: '';
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    animation: float 20s ease-in-out infinite
}

body::before {
    width: min(700px, 90vw);
    height: min(700px, 90vw);
    left: -250px;
    top: -200px;
    background: radial-gradient(circle, var(--primary-light) 0, transparent 70%);
    animation-delay: -10s
}

body::after {
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    right: -200px;
    bottom: -150px;
    background: radial-gradient(circle, var(--primary-color) 0, transparent 70%)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    33% {
        transform: translateY(-20px) rotate(120deg)
    }

    66% {
        transform: translateY(20px) rotate(240deg)
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .5px
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem)
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem)
}

.site-bar {
    position: relative;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #000 0, #1a1a1a 50%, #000 100%);
    border-top: 2px solid #ff8c1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: .75rem;
    color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .6);
    transition: all .3s ease
}

.site-bar-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: .5rem
}

.user-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem
}

.ip-label {
    font-weight: 600;
    color: #ff8c1a;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

.ip-address {
    font-weight: 700;
    color: #fff;
    font-family: 'Courier New', monospace;
    letter-spacing: .3px;
    font-size: .8rem;
    word-break: break-all;
    line-height: 1.2
}

.country-flag {
    font-size: 1rem
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(24, 24, 24, .95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 140, 26, .2);
    transition: var(--transition)
}

.navbar.scrolled {
    height: 70px;
    background: rgba(24, 24, 24, .98)
}

.nav-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition)
}

.logo i,
.logo-icon {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 25px rgba(255, 215, 0, .4)) drop-shadow(0 2px 10px rgba(192, 192, 192, .3))
}

.logo:hover {
    transform: scale(1.05);
    color: var(--primary-light)
}

.nav-links {
    display: flex;
    gap: 2.5rem
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .5px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    opacity: .7
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width .3s ease
}

.nav-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-1px)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center
}

.mobile-menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: .5rem;
    transition: var(--transition)
}

.mobile-menu-toggle:hover {
    color: var(--primary-color)
}

.mobile-menu-toggle.active {
    color: var(--primary-color)
}

.nav-links.mobile-hidden {
    display: flex
}

.nav-links.mobile-open {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(24, 24, 24, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 140, 26, .2);
    box-shadow: var(--shadow-primary);
    z-index: 1001;
    animation: slideDown .3s ease
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    text-align: center
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .5s
}

.btn:hover::before {
    left: 100%
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: 0 0;
    opacity: .8
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    opacity: 1
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--dark-bg);
    border: none;
    box-shadow: var(--shadow-primary)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 140, 26, .3)
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.25rem;
    border-radius: 60px
}

.btn i {
    margin-right: 8px;
    font-size: 1.1em
}

.lang-switcher {
    display: flex;
    gap: .5rem
}

.lang-btn {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    background: 0 0;
    color: var(--primary-color);
    min-width: 50px;
    opacity: .7
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    opacity: 1;
    transform: translateY(-1px)
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    opacity: 1
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
    z-index: 1
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100vw);
    height: min(600px, 80vh);
    background: radial-gradient(circle at 50% 30%, rgba(255, 140, 26, .15) 0, transparent 70%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: .15;
        transform: translateX(-50%) scale(1)
    }

    50% {
        opacity: .25;
        transform: translateX(-50%) scale(1.05)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem
}

.hero-brand {
    font-size: 2.4rem;
    line-height: 1.2;
    word-wrap: break-word;
    margin-bottom: .5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 4px 32px rgba(255, 140, 26, .2);
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.hero-brand-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 25px rgba(255, 215, 0, .4)) drop-shadow(0 2px 10px rgba(192, 192, 192, .3));
    mix-blend-mode: multiply;
    background: 0 0
}

.hero-content h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    word-wrap: break-word;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 4px 32px rgba(255, 140, 26, .2);
    animation: fadeInUp 1s ease-out
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 24px rgba(255, 140, 26, .1);
    animation: fadeInUp 1s ease-out .2s both
}

@media (max-width:768px) {
    .hero-brand {
        font-size: 1.6rem;
        margin-top: 3.5rem;
        gap: .75rem
    }

    .hero-brand-icon {
        width: 2rem;
        height: 2rem
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-top: 0
    }

    .hero-content p {
        font-size: 1rem
    }

    .hero-floating {
        display: none
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out .4s both
}

.hero-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: .3;
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: var(--delay)
}

.floating-icon:first-child {
    top: 20%;
    left: 10%
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
        opacity: .3
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: .6
    }
}

.features {
    padding: 8rem 2rem 6rem;
    background: var(--bg-gradient);
    position: relative;
    z-index: 1;
    margin-top: -2rem
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: clamp(2rem, 5vw, 5rem);
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem
}

.section-title-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 25px rgba(255, 215, 0, .4)) drop-shadow(0 2px 10px rgba(192, 192, 192, .3))
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto
}

.feature-card {
    text-align: center;
    padding: 4rem 2.5rem;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    transition: var(--transition);
    box-shadow: var(--shadow-secondary);
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1
}

.feature-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 140, 26, .25);
    border-color: var(--primary-color)
}

.feature-card:hover::before {
    opacity: .05
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 12px rgba(255, 140, 26, .2));
    transition: var(--transition)
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-light)
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: .5px
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    text-shadow: 0 2px 12px rgba(255, 140, 26, .1);
    line-height: 1.6
}

.feature-hover {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition)
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1)
}

.pricing {
    padding: 6rem 2rem;
    background: var(--dark-bg)
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto
}

.plan-card {
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    border-radius: var(--border-radius);
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-secondary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    z-index: 1;
    display: flex;
    flex-direction: column
}

.plan-logo {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center
}

.plan-logo img {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, .3);
    transition: var(--transition)
}

.plan-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, .5)
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 24px 80px rgba(255, 140, 26, .3);
    border-color: var(--primary-color)
}

.plan-card:hover::before {
    opacity: .05
}

.plan-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 16px 60px rgba(255, 140, 26, .2)
}

.plan-card.popular::before {
    content: none;
    display: none;
}

.plan-card.premium {
    border-color: var(--primary-color);
    box-shadow: 0 20px 80px rgba(255, 140, 26, .3);
    background: linear-gradient(135deg, var(--secondary-color) 40%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden
}

.plan-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0, transparent 100%);
    opacity: .1;
    z-index: -1
}

.plan-card.premium::after {
    content: "Premium";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: var(--dark-bg);
    font-size: .875rem;
    font-weight: 900;
    padding: .75rem;
    letter-spacing: 1px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(255, 107, 53, .3);
    z-index: 10
}

.plan-card.premium .plan-title {
    margin-top: 1.5em
}

@media (max-width:768px) {
    .plan-card.premium .plan-title {
        margin-top: 2em
    }
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: .5px
}

.plan-card.epic-cash .plan-title {
    margin-bottom: .5rem
}

.plan-price {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 12px rgba(255, 140, 26, .2)
}

.plan-card.epic-cash .plan-price {
    margin-bottom: .5rem
}

.plan-price span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary)
}

.plan-total-cost {
    color: var(--text-secondary);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .5rem;
    text-align: center
}

.plan-savings {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: .5rem 1.25rem;
    border-radius: 25px;
    font-size: .875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1)
}

.plan-features {
    list-style: none;
    margin-bottom: 1.25rem;
    text-align: left;
    flex-grow: 1
}

.plan-card>.btn {
    margin-top: auto
}

.plan-card.epic-cash .plan-features {
    margin-top: .5rem;
    margin-bottom: 1.5rem
}

.plan-card.epic-cash .plan-features li {
    font-size: .9rem
}

.plan-features li {
    padding: .4rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    text-shadow: 0 2px 8px rgba(255, 140, 26, .1)
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.25rem
}

.cta {
    padding: 6rem 2rem;
    background: var(--bg-gradient);
    color: var(--text-primary);
    text-align: center
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    opacity: .95;
    color: var(--text-secondary)
}

.epic-cash {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden
}

.epic-cash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 26, .1) 0, transparent 70%);
    z-index: 0
}

.epic-cash-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.epic-cash-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem
}

.epic-cash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 25px rgba(255, 215, 0, .4)) drop-shadow(0 2px 10px rgba(192, 192, 192, .3));
    mix-blend-mode: multiply;
    background: 0 0
}

.epic-cash h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px
}

.epic-cash p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6
}

.about-us {
    padding: 6rem 2rem;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 26, .1) 0, transparent 70%);
    z-index: 0
}

.about-us-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.about-us h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px
}

.about-us p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
    max-width: 700px;
    margin: 0 auto
}

.footer {
    padding: 5rem 2rem 2.5rem;
    background: linear-gradient(90deg, var(--dark-bg) 60%, var(--secondary-color) 100%);
    color: var(--text-secondary);
    font-size: 1rem;
    border-top: 1.5px solid var(--secondary-color);
    position: relative;
    z-index: 1
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3.5rem;
    border-bottom: 1.5px solid var(--secondary-color);
    padding-bottom: 2rem;
    text-align: center
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: .5px;
    text-align: center
}

.footer-column ul {
    list-style: none;
    text-align: center
}

.footer-column ul li {
    margin-bottom: 1rem
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 500
}

.footer-column ul li a:hover {
    color: var(--primary-color)
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    font-size: .875rem;
    color: var(--text-secondary);
    opacity: .8
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition)
}

.copyright a:hover {
    color: var(--primary-light)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform .9s cubic-bezier(.4, 0, .2, 1)
}

.fade-in.visible {
    opacity: 1;
    transform: none
}

@media (max-width:1200px) {
    .nav-content {
        padding: 0 1.5rem
    }

    .features-grid {
        gap: 2rem
    }

    .pricing-plans {
        gap: 1.5rem
    }

    .hero h1 {
        font-size: 3.5rem
    }

    .hero p {
        font-size: 1.5rem
    }
}

@media (max-width:900px) {
    .nav-content {
        padding: 0 1rem
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.2
    }

    .hero p {
        font-size: 1.25rem;
        line-height: 1.5
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem
    }

    .pricing-plans {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem
    }

    .mission-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
    }
}

@media (max-width:768px) {
    .navbar {
        height: 70px
    }

    .nav-content {
        padding: 0 1rem
    }

    .nav-links.mobile-hidden {
        display: none
    }

    .hero {
        padding: 0 1rem;
        min-height: 80vh
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .hero p {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        text-align: center
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto
    }

    .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        gap: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .section-title-icon {
        width: 2rem;
        height: 2rem
    }

    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .features {
        padding: 6rem 1rem 4rem
    }

    .pricing {
        padding: 4rem 1rem
    }

    .cta {
        padding: 4rem 1rem
    }

    .about-us {
        padding: 4rem 1rem
    }

    .about-us h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .about-us p {
        font-size: 1.125rem;
        line-height: 1.6;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .footer {
        padding: 3rem 1rem 2rem
    }

    .floating-icon {
        display: none
    }

    .faq-header {
        padding: 6rem 1rem 3rem;
        margin-top: 70px
    }

    .faq-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-content {
        padding: 3rem 1rem
    }

    .faq-question {
        padding: 1.5rem
    }

    .faq-question h3 {
        font-size: 1.125rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem
    }

    .about-header {
        padding: 6rem 1rem 3rem;
        margin-top: 70px
    }

    .about-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .mission-section,
    .story-section,
    .values-section {
        padding: 4rem 1rem
    }

    .mission-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }
}

@media (max-width:600px) {
    .hero {
        padding: 0 1rem;
        min-height: 70vh
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .hero p {
        font-size: 1.125rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .btn {
        padding: 12px 24px;
        font-size: .875rem;
        min-height: 44px
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.125rem;
        min-height: 48px
    }

    .feature-card {
        padding: 2.5rem 1.5rem;
        margin: 0 .5rem
    }

    .plan-card {
        padding: 2rem 1.5rem;
        margin: 0 .5rem
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-header h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-header p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-cta h2 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .about-header h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .about-header p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .mission-text h2,
    .story-text h2 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .values-section h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .stat-number {
        font-size: 2.5rem;
        line-height: 1.2
    }

    .about-us h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .about-us p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }
}

@media (max-width:480px) {
    .hero {
        padding: 0 .75rem;
        min-height: 60vh
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: .75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .btn {
        padding: 10px 20px;
        font-size: .875rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px
    }

    .feature-card {
        padding: 2rem 1.25rem;
        margin: 0 .25rem
    }

    .plan-card {
        padding: 1.75rem 1.25rem;
        margin: 0 .25rem
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: .75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .section-subtitle {
        font-size: .875rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .features {
        padding: 5rem .75rem 3rem
    }

    .pricing {
        padding: 3rem .75rem
    }

    .cta {
        padding: 3rem .75rem
    }

    .about-us {
        padding: 3rem .75rem
    }

    .about-us h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: .75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .about-us p {
        font-size: .875rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .footer {
        padding: 2rem .75rem 1.5rem
    }

    .faq-header {
        padding: 5rem .75rem 2.5rem
    }

    .faq-header h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-content {
        padding: 2.5rem .75rem
    }

    .faq-question {
        padding: 1.25rem;
        margin-bottom: .75rem
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem
    }

    .faq-answer li,
    .faq-answer p {
        font-size: .875rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .about-header {
        padding: 4rem .5rem 2rem
    }

    .about-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .mission-section,
    .story-section,
    .values-section {
        padding: 2.5rem .5rem
    }

    .mission-icon {
        width: 100px;
        height: 100px;
        font-size: 2rem
    }

    .value-card {
        padding: 1.75rem 1rem
    }
}

@media (max-width:360px) {
    .hero {
        padding: 0 .5rem;
        min-height: 55vh
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: .5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .hero p {
        font-size: .875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .btn {
        padding: 8px 16px;
        font-size: .8rem;
        min-height: 40px;
        max-width: 260px
    }

    .btn-large {
        padding: 12px 24px;
        font-size: .9rem;
        min-height: 44px
    }

    .feature-card {
        padding: 1.75rem 1rem;
        margin: 0 .125rem
    }

    .plan-card {
        padding: 1.5rem 1rem;
        margin: 0 .125rem
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: .5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .section-subtitle {
        font-size: .8rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .features {
        padding: 4rem .5rem 2.5rem
    }

    .pricing {
        padding: 2.5rem .5rem
    }

    .cta {
        padding: 2.5rem .5rem
    }

    .footer {
        padding: 1.5rem .5rem 1rem
    }

    .faq-header {
        padding: 4rem .5rem 2rem
    }

    .faq-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-content {
        padding: 2rem .5rem
    }

    .faq-question {
        padding: 1rem;
        margin-bottom: .5rem
    }

    .faq-question h3 {
        font-size: .9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .faq-answer {
        padding: 0 1rem 1rem
    }

    .faq-answer li,
    .faq-answer p {
        font-size: .8rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .about-header {
        padding: 4rem .5rem 2rem
    }

    .about-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto
    }

    .mission-section,
    .story-section,
    .values-section {
        padding: 2.5rem .5rem
    }

    .mission-icon {
        width: 100px;
        height: 100px;
        font-size: 2rem
    }

    .value-card {
        padding: 1.75rem 1rem
    }
}

@media (max-width:600px) and (orientation:landscape) {
    .hero {
        min-height: 50vh;
        padding: 2rem 1rem
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: .5rem
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem
    }

    .hero-btns {
        flex-direction: row;
        gap: 1rem;
        justify-content: center
    }

    .hero-btns .btn {
        width: auto;
        max-width: none
    }

    .features {
        padding: 4rem 1rem 2rem
    }

    .pricing {
        padding: 2rem 1rem
    }

    .cta {
        padding: 2rem 1rem
    }
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {

    .btn,
    .feature-card,
    .plan-card {
        border-width: .5px
    }
}

@media (prefers-color-scheme:dark) {
    :root {
        --text-primary: #f0f0f0;
        --text-secondary: #e0a96d;
        --dark-bg: #0a0a0a;
        --secondary-color: #1a1a1a
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::after,
    ::before {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important
    }

    html {
        scroll-behavior: auto
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--dark-bg)
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light)
}

::selection {
    background: var(--primary-color);
    color: var(--dark-bg)
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--dark-bg)
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem
}

.faq-header {
    padding: 8rem 2rem 4rem;
    background: var(--bg-gradient);
    text-align: center;
    margin-top: 80px
}

.faq-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.faq-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto
}

.faq-content {
    padding: 4rem 2rem;
    background: var(--dark-bg)
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto
}

.faq-item {
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 2px solid var(--secondary-color);
    overflow: hidden;
    transition: var(--transition)
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary)
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition)
}

.faq-question:hover {
    background: rgba(255, 140, 26, .05)
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: rgba(255, 140, 26, .02)
}

.faq-item.active .faq-answer {
    max-height: 500px
}

.faq-answer p {
    padding: 0 2rem 1rem;
    color: var(--text-secondary);
    line-height: 1.6
}

.faq-answer ol,
.faq-answer ul {
    padding: 0 2rem 1rem 4rem;
    color: var(--text-secondary)
}

.faq-answer li {
    margin-bottom: .5rem;
    line-height: 1.6
}

.faq-answer strong {
    color: var(--primary-color)
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition)
}

.faq-answer a:hover {
    color: var(--primary-light)
}

.faq-cta {
    padding: 4rem 2rem;
    background: var(--bg-gradient);
    text-align: center
}

.faq-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap
}

.about-header {
    padding: 8rem 2rem 4rem;
    background: var(--bg-gradient);
    text-align: center;
    margin-top: 80px
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.about-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto
}

.mission-section {
    padding: 6rem 2rem;
    background: var(--dark-bg)
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary)
}

.mission-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center
}

.mission-icon {
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--dark-bg);
    box-shadow: var(--shadow-primary)
}

.values-section {
    padding: 6rem 2rem;
    background: var(--bg-gradient);
    text-align: center
}

.values-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.values-section>.container>p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.value-card {
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--secondary-color);
    transition: var(--transition)
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-primary)
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg)
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6
}

.story-section {
    padding: 6rem 2rem;
    background: var(--dark-bg)
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary)
}

.story-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7
}

.story-timeline {
    position: relative;
    padding-left: 2rem
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient)
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: .5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--dark-bg)
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: .5rem
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: .5rem
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem
}

.stats-section {
    padding: 4rem 2rem;
    background: var(--dark-bg)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto
}

.stat-item {
    text-align: center;
    padding: 2rem
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: .5rem;
    text-shadow: 0 2px 12px rgba(255, 140, 26, .2)
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500
}

.about-cta {
    padding: 4rem 2rem;
    background: var(--bg-gradient);
    text-align: center
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.about-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.about-cta h2,
.about-cta p,
.about-header h1,
.about-header p,
.faq-answer li,
.faq-answer p,
.faq-question h3,
.feature-card h3,
.feature-card p,
.hero h1,
.hero p,
.mission-text h2,
.mission-text p,
.plan-card h3,
.plan-card p,
.section-subtitle,
.section-title,
.stats-section h2,
.story-text h2,
.story-text p,
.value-card h3,
.value-card p,
.values-section h2,
.values-section>.container>p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto
}

.btn,
.btn-large,
.faq-question,
.feature-card,
.footer a,
.nav-links a,
.plan-card {
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent
}

.faq-item,
.feature-card,
.plan-card,
.value-card {
    margin-bottom: 1rem
}

.features-grid,
.pricing-plans,
.stats-grid,
.values-grid {
    gap: 1rem
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.mobile-menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: .5rem;
    min-height: 44px;
    min-width: 44px
}

@media (max-width:768px) {
    .mobile-menu-toggle {
        display: block
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        padding: 1rem;
        transform: translateY(-100%);
        transition: transform .3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
    }

    .nav-links.mobile-open {
        transform: translateY(0)
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        opacity: .7;
        transition: var(--transition)
    }

    .nav-links a:hover {
        opacity: 1;
        background: rgba(255, 140, 26, .1);
        color: var(--primary-color)
    }

    .nav-links a:last-child {
        border-bottom: none
    }
}

body,
html {
    overflow-x: hidden;
    width: 100%
}

input,
select,
textarea {
    font-size: 16px;
    min-height: 44px
}

img {
    max-width: 100%;
    height: auto
}

.feature-card,
.plan-card,
.value-card {
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

ol,
ul {
    padding-left: 1.5rem
}

li {
    margin-bottom: .5rem
}

p {
    margin-bottom: 1rem;
    line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem
}

.container {
    padding: 0 1rem
}

@media (max-width:480px) {
    .container {
        padding: 0 .75rem
    }
}

@media (max-width:360px) {
    .container {
        padding: 0 .5rem
    }
}

.feature-card,
.plan-card,
.value-card {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0)
}

@media (prefers-reduced-motion:no-preference) {

    .feature-card:hover,
    .plan-card:hover,
    .value-card:hover {
        transform: translateY(-5px);
        transition: transform .3s ease
    }
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden
}

.faq-question {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.faq-answer.active {
    max-height: 500px
}

.plan-card {
    position: relative;
    overflow: hidden
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient)
}

.stat-item {
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.about-cta,
.cta {
    text-align: center
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.footer-content {
    text-align: center
}

.footer-content>div {
    margin-bottom: 2rem
}

.language-switcher {
    display: flex;
    gap: .5rem;
    align-items: center
}

.language-btn {
    padding: .5rem 1rem;
    border: 1px solid rgba(255, 255, 255, .2);
    background: 0 0;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease;
    min-height: 44px
}

.language-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.language-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light)
}

.hero-floating {
    display: none
}

@media (min-width:769px) {
    .hero-floating {
        display: block
    }
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999
}

.loading-content {
    text-align: center;
    padding: 2rem
}

.loading-logo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem
}

.loading-spinner {
    width: 40px;
    height: 40px
}

@media (max-width:480px) {
    .loading-logo {
        font-size: 1.25rem;
        margin-bottom: 1rem
    }

    .loading-spinner {
        width: 30px;
        height: 30px
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

html {
    scroll-behavior: smooth
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .fade-in {
        transition: none
    }
}

.btn:focus,
.faq-question:focus,
.feature-card:focus,
.nav-links a:focus,
.plan-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px
}

::selection {
    background: var(--primary-color);
    color: var(--dark-bg)
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--dark-bg)
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--dark-bg)
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light)
}

@media print {

    .cta,
    .footer,
    .hero-btns,
    .mobile-menu-toggle,
    .navbar {
        display: none !important
    }

    .features,
    .hero,
    .pricing {
        padding: 1rem 0
    }

    .feature-card,
    .plan-card {
        break-inside: avoid;
        margin-bottom: 1rem
    }
}

@media (max-width:768px) {
    .logo {
        font-size: .9rem
    }

    .logo-icon {
        width: 1.8rem;
        height: 1.8rem
    }
}

@media (max-width:600px) {
    .logo {
        font-size: .8rem
    }

    .logo-icon {
        width: 1.6rem;
        height: 1.6rem
    }
}

@media (max-width:480px) {
    .logo {
        font-size: .75rem
    }

    .logo-icon {
        width: 1.4rem;
        height: 1.4rem
    }
}

@media (max-width:360px) {
    .logo {
        font-size: .7rem
    }

    .logo-icon {
        width: 1.2rem;
        height: 1.2rem
    }
}

@media (max-width:768px) {
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: .8rem;
        min-height: 44px
    }
}

@media (max-width:600px) {
    .nav-actions .btn {
        padding: 6px 12px;
        font-size: .75rem;
        min-height: 44px
    }
}

@media (max-width:480px) {
    .nav-actions .btn {
        padding: 5px 10px;
        font-size: .7rem;
        min-height: 44px
    }
}

@media (max-width:360px) {
    .nav-actions .btn {
        padding: 4px 8px;
        font-size: .65rem;
        min-height: 44px
    }
}

.epic-cash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px
}

.epic-cash-logo {
    max-width: 200px;
    height: auto
}

/* Special styles for Referral System feature card */
.feature-card-special {
    position: relative;
    border: 2px solid var(--primary-color) !important;
    background: linear-gradient(135deg, var(--secondary-color) 40%, var(--dark-bg) 100%) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    overflow: visible !important;
}

/* Отключаем анимации для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .feature-card-special {
        animation: none !important;
    }

    .feature-card-special::before {
        display: none !important;
    }

    .feature-card-special .feature-icon {
        animation: none !important;
        filter: none !important;
    }

    .feature-badge {
        animation: none !important;
    }
}

.feature-card-special::before {
    display: none !important;
    opacity: 0 !important;
}


.feature-card-special:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(255, 140, 26, 0.25) !important;
}

.feature-card-special .feature-icon {
    color: var(--primary-color) !important;
    filter: none !important;
    animation: none !important;
}


.feature-card-special h3 {
    color: var(--text-primary) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: none !important;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: none !important;
    z-index: 10;
}


.feature-card-special .feature-hover {
    background: var(--primary-color) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card-special {
        margin: 0 0.5rem;
        /* Отключаем яркие анимации на мобильных */
        animation: none !important;
    }

    .feature-card-special::before {
        /* Отключаем яркий градиентный бордер на мобильных */
        display: none !important;
    }

    .feature-card-special .feature-icon {
        /* Отключаем пульсацию иконки на мобильных */
        animation: none !important;
        filter: none !important;
        color: var(--primary-color) !important;
    }

    .feature-card-special:hover {
        /* Убираем hover эффекты на мобильных */
        transform: none !important;
        box-shadow: 0 8px 32px rgba(255, 140, 26, 0.2) !important;
    }

    .feature-badge {
        top: -8px;
        right: -8px;
        padding: 6px 12px;
        font-size: 0.7rem;
        /* Отключаем анимацию бейджа на мобильных */
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .feature-card-special {
        margin: 0 0.25rem;
        /* Отключаем все анимации на маленьких экранах */
        animation: none !important;
    }

    .feature-card-special::before {
        display: none !important;
    }

    .feature-card-special .feature-icon {
        animation: none !important;
        filter: none !important;
        color: var(--primary-color) !important;
    }

    .feature-card-special:hover {
        transform: none !important;
        box-shadow: 0 8px 32px rgba(255, 140, 26, 0.2) !important;
    }

    .feature-badge {
        top: -6px;
        right: -6px;
        padding: 4px 8px;
        font-size: 0.65rem;
        animation: none !important;
    }
}


/* EPIC STARS Plan Card - Standard Styling (matching other pricing blocks) */

/* Remove all special styling and make it look like standard plan-card */
.plan-card.epic-stars {
    position: relative;
    border: 2px solid var(--secondary-color) !important;
    background: linear-gradient(135deg, var(--secondary-color) 60%, var(--dark-bg) 100%) !important;
    box-shadow: var(--shadow-secondary) !important;
    overflow: hidden !important;
}

/* Remove special border animation */
.plan-card.epic-stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

/* Standard hover effect like other cards */
.plan-card.epic-stars:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 24px 80px rgba(255, 140, 26, 0.3) !important;
    border-color: var(--primary-color) !important;
}

.plan-card.epic-stars:hover::before {
    opacity: 0.05;
}

/* Standard logo styling */
.plan-card.epic-stars .plan-logo img {
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3)) !important;
    transition: var(--transition);
}

.plan-card.epic-stars:hover .plan-logo img {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Standard title styling */
.plan-card.epic-stars .plan-title {
    color: var(--text-primary) !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: none !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

/* Standard price styling */
.plan-card.epic-stars .plan-price {
    color: var(--primary-color) !important;
    text-shadow: 0 2px 12px rgba(255, 140, 26, 0.2);
}

/* Standard features styling */
.plan-card.epic-stars .plan-features li {
    color: var(--text-secondary) !important;
    text-shadow: 0 2px 8px rgba(255, 140, 26, 0.1);
}

.plan-card.epic-stars .plan-features li i {
    color: var(--primary-color) !important;
    filter: none !important;
    animation: none !important;
}

/* Standard button styling - use btn-outline class */
.plan-card.epic-stars .btn-stars {
    background: 0 0 !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    opacity: 0.8;
}

.plan-card.epic-stars .btn-stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-card.epic-stars .btn-stars:hover::before {
    left: 100%;
}

.plan-card.epic-stars .btn-stars:hover {
    background: var(--primary-color) !important;
    color: var(--dark-bg) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-primary) !important;
    opacity: 1;
}

.plan-card.epic-stars .btn-stars i {
    color: inherit !important;
    filter: none !important;
    animation: none !important;
}

/* Remove sparkle effect */
.plan-card.epic-stars::after {
    display: none !important;
}

/* Responsive adjustments - same as other cards */
@media (max-width: 768px) {
    .plan-card.epic-stars {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .plan-card.epic-stars {
        margin: 0 0.25rem;
    }
}

/* EPIC STARS hover effect — same as other plan-cards */
.plan-card.epic-stars:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 24px 80px rgba(255, 140, 26, 0.3) !important;
    border-color: var(--primary-color) !important;
}

.plan-card.epic-stars:hover .plan-logo img {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* FAQ Accordion Styles */
.faq-item {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: rgba(255, 140, 26, 0.1);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 140, 26, 0.05);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer.active {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 140, 26, 0.1);
    border: 1px solid rgba(255, 140, 26, 0.3);
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 140, 26, 0.4);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    font-style: italic;
}

.footer-column ul li a i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 1.25rem;
    text-align: center;
}

/* Hero Stats in full styles */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 140, 26, 0.08);
    border: 1px solid rgba(255, 140, 26, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-stat:hover {
    background: rgba(255, 140, 26, 0.15);
    border-color: rgba(255, 140, 26, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 140, 26, 0.2);
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 140, 26, 0.3);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .hero-stat {
        padding: 0.75rem 1rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .hero-stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 0.5rem;
    }

    .hero-stat {
        padding: 0.6rem 0.75rem;
        flex: 1;
        min-width: 0;
    }

    .hero-stat-number {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.55rem;
    }
}

/* ===========================
   PREMIUM VISUAL ENHANCEMENTS
   =========================== */

/* Subtle section backgrounds with gradients */
.features {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(255, 140, 26, 0.03) 50%, var(--dark-bg) 100%);
    position: relative;
}

.pricing {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(255, 140, 26, 0.02) 50%, var(--dark-bg) 100%);
    position: relative;
}

/* Feature cards glow on hover */
.feature-card:hover {
    box-shadow: 0 20px 60px rgba(255, 140, 26, 0.15), 0 0 40px rgba(255, 140, 26, 0.05);
}

/* Pricing card hover glow enhancement */
.plan-card:hover {
    box-shadow: 0 20px 60px rgba(255, 140, 26, 0.15), 0 0 0 1px rgba(255, 140, 26, 0.2);
}

/* Section divider lines */
.features::before,
.pricing::before,
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 26, 0.3), transparent);
}

/* CTA section enhanced styling */
.cta {
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(255, 140, 26, 0.06) 100%);
}

.cta h2 {
    position: relative;
}

.cta .btn-primary {
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(255, 140, 26, 0.3);
    }

    50% {
        box-shadow: 0 8px 32px rgba(255, 140, 26, 0.5), 0 0 60px rgba(255, 140, 26, 0.15);
    }
}

/* EPIC CASH section enhanced background */
section.epic-cash {
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.05) 0%, var(--dark-bg) 50%, rgba(255, 140, 26, 0.03) 100%);
    position: relative;
}

section.epic-cash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 26, 0.3), transparent);
}

/* About Us enhanced background */
.about-us {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(255, 140, 26, 0.03) 100%);
    position: relative;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 26, 0.3), transparent);
}

/* Footer enhanced styling */
.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1000px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 26, 0.4), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-column:last-child {
    text-align: center;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

/* Copyright enhanced */
.copyright {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 140, 26, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.copyright p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1.5rem 1rem;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul li a:hover {
        padding-left: 0;
    }
}

/* Scroll reveal animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .cta .btn-primary {
        animation: none;
    }

    .hero-stat {
        animation: none;
    }

    .hero-orb {
        animation: none !important;
    }

    .btn-glow::before {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ===========================
   WOW FACTOR ANIMATIONS
   =========================== */

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, #ffb347 0%, #ff8c1a 30%, #ffcc80 60%, #ff8c1a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

/* --- Hero Animated Orbs --- */
.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    will-change: transform;
}

.hero-orb-1 {
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    background: radial-gradient(circle, rgba(255, 140, 26, 0.5) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: min(400px, 70vw);
    height: min(400px, 70vw);
    background: radial-gradient(circle, rgba(255, 179, 71, 0.4) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: min(300px, 60vw);
    height: min(300px, 60vw);
    background: radial-gradient(circle, rgba(255, 204, 128, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-60px, 40px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 80px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(80px, -50px) scale(1.15);
    }

    66% {
        transform: translate(30px, -80px) scale(0.9);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, 0) scale(1);
    }

    50% {
        transform: translate(-50%, -60px) scale(1.2);
    }
}

/* --- Particles Canvas --- */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* --- Glowing CTA Button --- */
.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: conic-gradient(from 0deg,
            #ff8c1a,
            #ffb347,
            #ffcc80,
            #ff8c1a,
            #ffb347,
            #ffcc80,
            #ff8c1a);
    border-radius: inherit;
    z-index: -2;
    animation: glowRotate 3s linear infinite;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #ff8c1a, #e07700);
    border-radius: inherit;
    z-index: -1;
}

@keyframes glowRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-glow:hover::before {
    inset: -4px;
    filter: brightness(1.3);
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(255, 140, 26, 0.5);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* --- Feature Card 3D Tilt --- */
.feature-card:not(.feature-card-special) {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.feature-card:not(.feature-card-special):hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow:
        0 30px 60px rgba(255, 140, 26, 0.2),
        0 0 40px rgba(255, 140, 26, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:not(.feature-card-special)::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.feature-card:not(.feature-card-special):hover::before {
    opacity: 1;
}

/* --- Feature Icon Animated --- */
.feature-card:not(.feature-card-special):hover .feature-icon {
    transform: scale(1.15) rotateY(10deg);
    filter: drop-shadow(0 0 20px rgba(255, 140, 26, 0.5));
}

.feature-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

/* --- Pricing Cards Premium Redesign --- */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.plan-card {
    background: rgba(35, 35, 35, 0.6);
    border: 1px solid rgba(255, 140, 26, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 140, 26, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 140, 26, 0.35);
    box-shadow:
        0 30px 60px rgba(255, 140, 26, 0.15),
        0 0 0 1px rgba(255, 140, 26, 0.2);
}

/* Popular card — highlighted */
.plan-card.popular {
    border-color: rgba(255, 140, 26, 0.4);
    background: rgba(45, 35, 25, 0.7);
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(255, 140, 26, 0.12);
}

.plan-card.popular::after {
    content: 'POPULAR';
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #ff8c1a, #e07700);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 2;
}

.plan-card.popular:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 30px 60px rgba(255, 140, 26, 0.25);
}

/* Premium card — special glow */
.plan-card.premium {
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(50, 40, 20, 0.8) 0%, rgba(35, 35, 35, 0.6) 100%);
}

.plan-card.premium::after {
    content: 'PREMIUM';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a1a;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.plan-card.premium:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.12);
}

/* EPIC CASH card */
.plan-card.epic-cash {
    border-color: rgba(255, 140, 26, 0.3);
    background: linear-gradient(135deg, rgba(40, 30, 15, 0.8) 0%, rgba(35, 35, 35, 0.6) 100%);
}

.plan-card.epic-cash:hover {
    box-shadow: 0 30px 60px rgba(255, 140, 26, 0.18);
}

.plan-card.epic-cash .plan-price span,
.plan-card.epic-stars .plan-price span {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffb347, #ff8c1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 1;
}

/* EPIC STARS card */
.plan-card.epic-stars {
    border-color: rgba(100, 149, 237, 0.3);
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.8) 0%, rgba(35, 35, 35, 0.6) 100%);
}

.plan-card.epic-stars:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(100, 149, 237, 0.5);
    box-shadow: 0 30px 60px rgba(100, 149, 237, 0.12);
}

/* Plan title */
.plan-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Plan price */
.plan-price {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.plan-price span:first-child {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffb347, #ff8c1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price span:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Total cost & savings */
.plan-total-cost {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.plan-savings {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.2), rgba(255, 140, 26, 0.1));
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Plan features list */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Plan logo (EPIC CASH / STARS) */
.plan-logo {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.plan-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 140, 26, 0.3));
}

/* Plan CTA button */
.plan-card .btn {
    width: 100%;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card.popular:hover {
        transform: translateY(-8px);
    }
}

/* --- Section Title Enhanced --- */
.section-title span {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Hero Brand Logo Glow --- */
.hero-brand-icon {
    filter: drop-shadow(0 0 30px rgba(255, 140, 26, 0.6));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 140, 26, 0.6));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(255, 140, 26, 0.8));
        transform: scale(1.05);
    }
}

/* --- Hero description fade --- */
#heroDescription {
    opacity: 0.7;
    font-style: italic;
    font-size: 1.05rem;
}

/* --- Navbar scroll-shadow enhanced --- */
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 140, 26, 0.1);
}

/* --- Mobile orb sizing --- */
@media (max-width: 768px) {
    .hero-orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-orb-2 {
        width: 250px;
        height: 250px;
    }

    .hero-orb-3 {
        width: 200px;
        height: 200px;
    }
}

/* ===========================
   EXTRA PREMIUM POLISH
   =========================== */

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #ff8c1a, #ffb347, #ffcc80, #ff8c1a);
    background-size: 300% 100%;
    animation: progressGradient 2s linear infinite;
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

@keyframes progressGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c1a, #e07700);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 140, 26, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 140, 26, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 26, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    will-change: left, top;
}

.cursor-glow.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* --- About Us Value Cards --- */
.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
    }
}

.about-value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 140, 26, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 140, 26, 0.3);
    box-shadow: 0 20px 50px rgba(255, 140, 26, 0.12);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.15), rgba(255, 179, 71, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1) rotateZ(5deg);
    box-shadow: 0 0 30px rgba(255, 140, 26, 0.3);
    background: linear-gradient(135deg, rgba(255, 140, 26, 0.25), rgba(255, 179, 71, 0.15));
}

.about-value-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.about-value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-value-card {
        padding: 2rem 1.5rem;
    }
}