/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --primary: 193 95% 56%;
    --primary-foreground: 0 0% 100%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 193 95% 56%;
    --accent-foreground: 0 0% 100%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 193 95% 56%;
    
    --hero-gradient: linear-gradient(135deg, hsl(220 38% 40%), hsl(220 48% 25%));
    --card-gradient: linear-gradient(145deg, hsl(var(--background)), hsl(220 20% 98%));
    --accent-gradient: linear-gradient(135deg, hsl(193 95% 56%), hsl(193 85% 66%));
    --text-gradient: linear-gradient(135deg, hsl(193 95% 56%), hsl(210 100% 70%));

    --shadow-card: 0 4px 20px -2px hsl(193 95% 56% / 0.1);
    --shadow-feature: 0 8px 30px -5px hsl(193 95% 56% / 0.15);
    --shadow-hero: 0 20px 60px -10px hsl(220 38% 40% / 0.3);
    
    --radius: 0.5rem;



--primary-glow: hsl(180, 100%, 55%);
    --primary2: hsl(195, 100%, 45%);
    --primary-foreground: hsl(0, 0%, 100%);
        --gradient-primary: linear-gradient(135deg, var(--primary2), var(--primary-glow));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-glow));
    --gradient-gaming: linear-gradient(135deg, hsl(195, 100%, 45%), hsl(270, 100%, 60%), hsl(180, 100%, 55%));
    --gradient-hero: linear-gradient(135deg, var(--background), hsl(215, 15%, 96%));
    --gradient-card: linear-gradient(145deg, hsla(0, 0%, 100%, 0.9), hsla(215, 15%, 98%, 0.8));
    --glow-primary: 0 0 25px hsla(195, 100%, 45%, 0.4);
    --glow-accent: 0 0 25px hsla(270, 100%, 60%, 0.4);
    --glow-strong: 0 0 40px hsla(195, 100%, 45%, 0.6);
    --shadow-gaming: 0 10px 30px hsla(195, 100%, 45%, 0.25);
    --shadow-neon: 0 0 60px hsla(195, 100%, 45%, 0.3);
    --transition-gaming: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.gradient-primary {
    background: var(--gradient-primary);
    box-shadow: var(--glow-primary);
    color: var(--primary-foreground);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Button Styles */
.btn-primary {
    background: var(--accent-gradient);
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-feature);
}

.btn-secondary {
    background: hsl(var(--background));
    color: hsl(var(--primary));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: hsl(var(--background) / 0.9);
}

.btn-ghost {
    background: transparent;
    color: hsl(var(--primary));
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: hsl(var(--accent));
    background: hsl(var(--muted) / 0.5);
}

.btn-outline {
    background: transparent;
    color: hsl(var(--primary));
    border: 1px solid hsl(var(--border));
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border));
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
}

.mobile-menu-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Hero Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(220 38% 40% / 0.8), hsl(220 48% 25% / 0.7), hsl(220 38% 40% / 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.hero-text {
    text-align: center;
    color: white;
}

.hero-intro {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: hsl(210 40% 80%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.title-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 4rem * 16;
    margin: 0 auto 3rem;
}

.description-main {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: hsl(210 40% 80%);
}

.description-sub {
    font-size: 1rem;
    color: hsl(210 40% 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(210 40% 70%);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgb(255 255 255 / 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgb(255 255 255 / 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background: rgb(255 255 255 / 0.15);
    transform: scale(1.05);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
    margin: 0 auto 1rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: hsl(210 40% 70%);
}


.service-text{
    text-align: -webkit-left;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .feature-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, hsl(210 40% 98%), hsl(var(--background)));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1rem;
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: hsl(220 38% 10%);
}

.section-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin: 0 auto;
}

.service-main {
    background: hsl(var(--background));
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-feature);
    border: 1px solid hsl(var(--border));
}

.service-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.service-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(220 38% 10%);
}

.service-description {
    font-size: 1.125rem;
    color: hsl(220 15% 30%);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-description strong {
    color: hsl(var(--primary));
}

.pricing-info {
    background: hsl(210 100% 96%);
    border-left: 4px solid hsl(var(--primary));
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
}

.pricing-info p {
    font-size: 0.875rem;
    color: hsl(215 15% 40%);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-feature-card {
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid;
}

.service-feature-card.primary {
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
    border-color: hsl(var(--primary) / 0.2);
}

.service-feature-card.accent {
    background: linear-gradient(to bottom right, hsl(var(--accent) / 0.1), hsl(var(--primary) / 0.1));
    border-color: hsl(var(--accent) / 0.2);
}

.service-feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.service-feature-card.primary .service-feature-icon {
    color: hsl(var(--primary));
}

.service-feature-card.accent .service-feature-icon {
    color: hsl(var(--accent));
}

.service-feature-title {
    font-weight: 600;
    color: hsl(220 38% 10%);
    margin-bottom: 0.5rem;
}

.service-feature-text {
    font-size: 0.875rem;
    color: hsl(215 15% 40%);
}

@media (min-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr 1fr;
    }
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    background: hsl(var(--background));
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    text-align: left;
    text-align: -webkit-left;
}

.feature-item:hover {
    box-shadow: var(--shadow-feature);
    transform: scale(1.05);
}

.feature-item-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gradient);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(220 38% 10%);
}

.feature-item-text {
    color: hsl(215 15% 40%);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.premium-section {
    background: var(--accent-gradient);
    border-radius: 1.5rem;
    padding: 3rem;
    color: white;
    text-align: center;
}

.premium-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.premium-subtitle {
    font-size: 1.25rem;
    color: rgb(255 255 255 / 0.9);
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.premium-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.premium-feature {
    text-align: center;
}

.premium-feature-icon {
    width: 4rem;
    height: 4rem;
    background: rgb(255 255 255 / 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.premium-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.premium-feature-text {
    color: rgb(255 255 255 / 0.9);
}

@media (min-width: 768px) {
    .premium-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Policies Section */
.policies {
    padding: 4rem 0;
    background: hsl(210 40% 98%);
}

.policies-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.policy-card {
    background: hsl(var(--background));
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.policy-card:hover {
    box-shadow: var(--shadow-feature);
}

.policy-icon {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
    margin: 0 auto 1rem;
}

.policy-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-transparency {
    background: hsl(var(--background));
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid hsl(var(--border));
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: hsl(220 38% 10%);
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
}

.pricing-card.featured {
    border: 2px solid hsl(var(--primary));
    background: hsl(var(--primary) / 0.05);
}

.pricing-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.pricing-card-period {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.pricing-card-features {
    list-style: none;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.pricing-card-features li {
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: hsl(210 100% 96%);
    border-radius: var(--radius);
    border-left: 4px solid hsl(var(--primary));
    text-align: left;
    text-align: -webkit-left;
}

.pricing-info h4 {
    font-weight: 600;
    color: hsl(220 38% 10%);
    margin-bottom: 0.5rem;
}

.pricing-info ul {
    list-style: none;
    font-size: 0.875rem;
    color: hsl(215 15% 40%);
}

.pricing-info li {
    margin-bottom: 0.25rem;
}

/* Footer */
.footer1 {
    background: hsl(220 38% 10%);
    color: white;
    padding: 3rem 0;
}

.legal-info {
    background: rgb(30 41 59 / 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: hsl(210 40% 70%);
    line-height: 1.6;
}

.legal-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.legal-info p {
    margin-bottom: 1rem;
}

.legal-info strong {
    color: white;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: hsl(210 40% 70%);
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
}

.footer-buttons .btn-outline {
    border-color: hsl(210 40% 40%);
    color: hsl(210 40% 70%);
}

.footer-buttons .btn-outline:hover {
    background: hsl(210 40% 20%);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: hsl(210 40% 70%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: hsl(210 40% 70%);
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

.footer-bottom {
    border-top: 1px solid hsl(210 40% 20%);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(210 40% 60%);
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    background: hsl(0 0% 0% / 0.5);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: hsl(var(--background));
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 28rem;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    color: hsl(var(--muted-foreground));
}

.modal-close:hover {
    background: hsl(var(--muted));
}

.modal-progress {
    text-align: center;
    margin-bottom: 1.5rem;
}

.progress-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: hsl(var(--muted));
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 9999px;
    transition: width 0.3s ease;
    width: 50%;
}

.modal-step {
    text-align: center;
}

.modal-step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.modal-step h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-step p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    margin-bottom: 1rem;
}

.input-prefix {
    background: hsl(var(--muted));
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--input));
    border-right: 0;
    border-radius: var(--radius) 0 0 var(--radius);
}

.input-group input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--input));
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: hsl(var(--primary));
}

.pin-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
}

.pin-input:focus {
    outline: none;
    border-color: hsl(var(--primary));
}

#phone-form .btn-primary,
#pin-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

#phone-form .btn-primary:disabled,
#pin-form .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: var(--transition-bounce);
    border-radius: 130px;
}



.gradient-primary {
    background: var(--gradient-primary);
    box-shadow: var(--glow-primary);
    color: var(--primary-foreground);
}