/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000003;
    color: #eef2ff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --yellow-primary: #FFFC00;
    --blue-electric: #1E90F3;
    --deep-bg: #000003;
    --gray-light: #cbd5e6;
    --card-bg: rgba(10, 20, 30, 0.75);
    --glow-yellow: rgba(255, 252, 0, 0.4);
    --glow-blue: rgba(30, 144, 243, 0.5);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 30%, #0a0f1a, #000003);
}

.animated-bg::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(ellipse at 40% 50%, rgba(30,144,243,0.08), transparent 70%);
    animation: driftBg 24s infinite alternate ease-in-out;
}

.animated-bg::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -30%;
    left: -20%;
    background: radial-gradient(circle at 70% 80%, rgba(255,252,0,0.05), transparent 70%);
    animation: driftBg2 30s infinite alternate;
}

@keyframes driftBg {
    0% { transform: translate(0%, 0%) rotate(0deg); }
    100% { transform: translate(8%, 5%) rotate(3deg); }
}

@keyframes driftBg2 {
    0% { transform: translate(0%, 0%) rotate(0deg); opacity: 0.6; }
    100% { transform: translate(-5%, 8%) rotate(-2deg); opacity: 1; }
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(30,144,243,0.12), rgba(255,252,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.08s linear;
    filter: blur(20px);
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(30,144,243,0.25);
    backdrop-filter: blur(4px);
}

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

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

.logo-text {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFC00 20%, #1E90F3 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text span {
    font-weight: 300;
    color: #FFFC00;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.tm {
    font-size: 0.8rem;
    vertical-align: super;
    color: #1E90F3 !important;
}

.nav-links a {
    color: #eef2ff;
    margin-left: 32px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 6px;
}

.nav-links a:hover {
    color: #FFFC00;
    border-bottom-color: #FFFC00;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 0 70px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #FFFC00, #1E90F3, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeSlideUp 1s ease-out;
}

.tagline {
    font-size: 1.3rem;
    margin: 25px 0 20px;
    max-width: 700px;
    color: #b9c7dd;
    animation: fadeSlideUp 1s 0.1s backwards;
}

.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    animation: fadeSlideUp 1s 0.2s backwards;
}

.btn {
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: 0.25s;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FFFC00;
    color: #000003;
    box-shadow: 0 5px 15px rgba(255,252,0,0.3);
}

.btn-primary:hover {
    background: #e6e300;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,252,0,0.4);
}

.btn-outline {
    border: 2px solid #1E90F3;
    background: transparent;
    color: #1E90F3;
}

.btn-outline:hover {
    background: #1E90F3;
    color: #000003;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30,144,243,0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 70px 0 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title:after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFFC00, #1E90F3);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 30px 0 40px;
}

.service-card {
    background: rgba(5, 10, 20, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 32px 24px;
    border: 1px solid rgba(30,144,243,0.4);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-align: center;
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.4);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #FFFC00;
    box-shadow: 0 25px 35px -15px rgba(255,252,0,0.2);
}

.service-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FFFC00, #1E90F3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #FFFC00;
}

.service-card p {
    color: #ccd6f0;
    line-height: 1.5;
}

/* Stats Section */
.stats-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin: 30px 0 50px;
}

.stat-item {
    text-align: center;
    background: rgba(0,0,0,0.4);
    padding: 25px 20px;
    border-radius: 36px;
    flex: 1;
    min-width: 150px;
    border: 1px solid rgba(30,144,243,0.3);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFC00;
}

.counter {
    display: inline-block;
    font-size: 2.8rem;
}

/* Testimonials */
.testimonials {
    background: rgba(0, 0, 3, 0.6);
    border-radius: 60px;
    padding: 30px 20px 50px;
    margin: 30px 0 60px;
    backdrop-filter: blur(5px);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    text-align: center;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #f0f3ff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 700;
    color: #FFFC00;
    font-size: 1.1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: #2c3e5c;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.nav-dot.active {
    background: #FFFC00;
    transform: scale(1.2);
    box-shadow: 0 0 6px #FFFC00;
}

/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #0a0f1a, #000003);
    margin: 40px auto;
    padding: 0;
    border-radius: 32px;
    width: 90%;
    max-width: 1300px;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid rgba(30,144,243,0.3);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: slideUp 0.4s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    border-bottom: 1px solid rgba(30,144,243,0.3);
    background: rgba(0,0,0,0.3);
    border-radius: 32px 32px 0 0;
}

.modal-header h2 {
    color: #FFFC00;
    font-size: 1.8rem;
}

.modal-header h2 i {
    color: #1E90F3;
    margin-right: 10px;
}

.modal-close, .modal-close-lead, .modal-close-payment, .modal-close-client {
    color: #eef2ff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.modal-close:hover, .modal-close-lead:hover, .modal-close-payment:hover, .modal-close-client:hover {
    color: #FFFC00;
    transform: scale(1.1);
}

.modal-body {
    padding: 35px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: rgba(5, 10, 25, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 28px 20px;
    border: 1px solid rgba(30,144,243,0.4);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #FFFC00;
    box-shadow: 0 15px 30px rgba(255,252,0,0.1);
}

.pricing-card.popular {
    border: 2px solid #FFFC00;
    background: rgba(30,144,243,0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFC00;
    color: #000003;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.8rem;
    text-align: center;
    color: #FFFC00;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #1E90F3;
    margin-bottom: 20px;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #8a9bb5;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    color: #ccd6f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.features-list li i {
    color: #FFFC00;
    font-size: 0.8rem;
}

.btn-buy {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFFC00, #e6e300);
    color: #000003;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 15px;
}

.btn-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255,252,0,0.3);
}

/* Lead Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFFC00;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(30,144,243,0.4);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #FFFC00;
    box-shadow: 0 0 10px rgba(255,252,0,0.2);
}

.btn-submit-lead {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1E90F3, #0c6bcf);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}

.btn-submit-lead:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30,144,243,0.4);
}

/* QR Frame with Yellowish Shiny Frame */
.qr-frame {
    padding: 15px;
    background: linear-gradient(135deg, #FFFC00, #e6b800, #FFFC00);
    border-radius: 24px;
    display: inline-block;
    margin: 15px auto;
    box-shadow: 0 0 20px rgba(255,252,0,0.6), 0 0 40px rgba(255,252,0,0.3);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { box-shadow: 0 0 10px rgba(255,252,0,0.4); }
    50% { box-shadow: 0 0 30px rgba(255,252,0,0.8); }
    100% { box-shadow: 0 0 10px rgba(255,252,0,0.4); }
}

.qr-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

.timer-box {
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 60px;
    margin: 20px 0;
    font-size: 2rem;
    font-weight: 800;
    color: #FFFC00;
    font-family: monospace;
}

.client-id-box {
    background: linear-gradient(135deg, #1E90F3, #0a4a8a);
    padding: 20px;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 20px 0;
    color: #FFFC00;
    font-family: monospace;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(115deg, #000003, #041e34);
    border-radius: 48px;
    padding: 55px 40px;
    text-align: center;
    margin: 50px 0 70px;
    border: 1px solid #1E90F370;
    box-shadow: 0 25px 30px -12px rgba(0,0,0,0.5);
}

.cta-banner h2 {
    font-size: 2rem;
    color: #FFFC00;
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(30,144,243,0.2);
    color: #7f8fa4;
}

/* Animations */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

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

.particle {
    position: fixed;
    background: rgba(255,252,0,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(2px);
}

/* Responsive */
@media (max-width: 780px) {
    .hero h1 { font-size: 2.4rem; }
    .navbar { flex-direction: column; gap: 15px; }
    .nav-links a { margin: 0 15px; }
    .container { padding: 0 20px; }
    .modal-content { margin: 20px auto; width: 95%; }
    .modal-header h2 { font-size: 1.3rem; }
    .qr-image { width: 160px; height: 160px; }
    .timer-box { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .pricing-card h3 { font-size: 1.4rem; }
    .price { font-size: 1.5rem; }
}
