/* =========================================
   FAST MONEY - LANDING PAGE STYLES
   ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #ffa100;
    --primary-dark: #e69100;
    --primary-light: #ffb733;
    --secondary: #6c63ff;
    --secondary-light: #8a84ff;
    --dark: #121212;
    --darker: #0a0a0a;
    --dark-light: #1e1e1e;
    --dark-lighter: #2a2a2a;
    --light: #f5f5f5;
    --gray: #b0b0b0;
    --gray-dark: #757575;
    --success: #4caf50;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--darker);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 161, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 99, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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.7s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(255, 161, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 161, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 161, 0, 0.2);
}

.btn-tertiary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

/* ===== HEADER ===== */
header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(10, 10, 10, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

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

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
    transform: rotate(20deg) scale(1.1);
}

.logo h1 {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.logo:hover h1 {
    text-shadow: 0 0 20px rgba(255, 161, 0, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    padding: 8px 0;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    border-radius: 2px;
}

nav ul li a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(255, 161, 0, 0.2);
    transform: scale(1.05);
}

.mobile-auth-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    background: 
        linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%),
        url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
        no-repeat center center/cover;
    color: var(--white);
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--darker), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 900;
}

.hero-stat p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 20%;
}

.floating-element:nth-child(2) {
    background: var(--secondary);
    width: 30px;
    height: 30px;
    animation-delay: -5s;
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(3) {
    background: var(--primary-light);
    width: 15px;
    height: 15px;
    animation-delay: -10s;
    top: 60%;
    left: 80%;
}

.floating-element:nth-child(4) {
    background: var(--secondary);
    width: 25px;
    height: 25px;
    animation-delay: -15s;
    top: 70%;
    left: 15%;
}

.floating-element:nth-child(5) {
    background: var(--primary);
    width: 18px;
    height: 18px;
    animation-delay: -8s;
    top: 30%;
    left: 85%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
    }
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
    background-color: var(--dark);
    position: relative;
}

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

.feature-card {
    background: var(--dark-light);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 161, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--light);
}

.feature-card p {
    color: var(--gray);
    font-size: 1.05rem;
}

/* ===== CHART PREVIEW ===== */
.chart-preview {
    width: 100%;
    height: 200px;
    background: var(--darker);
    border-radius: 12px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgba(255, 161, 0, 0.3), transparent);
    clip-path: polygon(0% 100%, 10% 80%, 20% 90%, 30% 60%, 40% 70%, 50% 40%, 60% 50%, 70% 30%, 80% 45%, 90% 20%, 100% 35%, 100% 100%);
}

/* ===== SIMULATOR SECTION ===== */
.simulator {
    padding: 120px 0;
    background-color: var(--darker);
    position: relative;
}

.simulator-container {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.simulator-header {
    text-align: center;
    margin-bottom: 40px;
}

.simulator-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.simulator-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.simulator-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.simulator-control {
    background: var(--darker);
    padding: 25px;
    border-radius: 12px;
}

.simulator-control label {
    display: block;
    margin-bottom: 15px;
    color: var(--light);
    font-weight: 600;
    font-size: 0.95rem;
}

.simulator-control input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--dark-lighter);
    border-radius: 4px;
    outline: none;
    margin-bottom: 10px;
}

.simulator-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 161, 0, 0.4);
    transition: transform 0.2s ease;
}

.simulator-control input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.simulator-control input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 161, 0, 0.4);
}

.simulator-control .value-display {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.simulator-result {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.simulator-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.simulator-result h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.simulator-result .result-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.simulator-result .result-info {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.9;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.simulator-result .result-profit {
    display: inline-block;
    background: var(--dark);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 120px 0;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-swiper {
    width: 100%;
    padding: 30px 0 60px;
    overflow: hidden;
}

.testimonials-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    background: var(--dark-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: auto;
    box-sizing: border-box;
}

.testimonials-swiper .swiper-slide:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 161, 0, 0.2);
}

.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: bold;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--light);
    font-size: 1.3rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

.author-info .rating {
    margin-top: 8px;
}

.author-info .rating i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 120px 0;
    background-color: var(--dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 161, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 161, 0, 0.1);
}

.faq-question {
    background: var(--dark-light);
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-lighter);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question span i:first-child {
    color: var(--primary);
}

.faq-question i:last-child {
    transition: transform 0.4s ease;
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-answer {
    background: var(--dark-light);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

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

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 120px 0;
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 100px 0 40px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-column p {
    color: var(--gray);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-column ul li i {
    width: 20px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

.footer-legal {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(255, 161, 0, 0.3);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 161, 0, 0.4);
}

/* ===== ANIMATED COUNTER ===== */
.counter {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* ===== ANIMATIONS ===== */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .simulator-container {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-auth-buttons {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark);
        box-shadow: var(--shadow);
        padding: 20px;
        display: none;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    nav.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat h3 {
        font-size: 2rem;
    }
    
    .simulator-controls {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .stat-item h3 {
        font-size: 2.8rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat h3 {
        font-size: 1.8rem;
    }
    
    .simulator-container {
        padding: 30px 20px;
    }
    
    .simulator-result .result-value {
        font-size: 2.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .simulator-result .result-value {
        font-size: 2rem;
    }
    
    .hero-stat {
        padding: 15px;
    }
}
