/* ===== CSS RESET & VARIABLES ===== */
:root {
    --primary-bg: #0a0c0f;
    --secondary-bg: #111417;
    --card-bg: #151a1e;
    --card-hover: #1a2127;
    --border-color: #2a3138;
    --border-hover: #3a4550;

    --accent-primary: #00e5ff;
    --accent-secondary: #0066ff;
    --accent-glow: rgba(0, 229, 255, 0.4);
    --accent-success: #2aff7c;
    --accent-warning: #ffaa00;
    --accent-danger: #ff4d4d;

    --text-primary: #ffffff;
    --text-secondary: #b0b8c5;
    --text-dim: #8a929c;
    --text-muted: #6c757d;

    --gradient-blue: linear-gradient(145deg, #00e5ff, #0066ff);
    --gradient-dark: linear-gradient(145deg, #151a1e, #0f1317);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.15);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
}

h4 {
    font-size: 1.3rem;
}

/* ===== GLOW EFFECTS ===== */
.glow-text {
    color: var(--accent-primary);
    text-shadow: 0 0 20px var(--accent-glow);
}

.gradient-text {
    background: linear-gradient(135deg, #00e5ff, #a0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.4);
    background: linear-gradient(145deg, #1ac8ff, #0055ff);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 20px;
}

.btn-text:hover {
    color: var(--accent-primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.logo span {
    background: linear-gradient(135deg, #fff, #b0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.dashboard-link {
    background: rgba(0, 229, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.dashboard-link i {
    margin-right: 6px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 16px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.btn-mobile-create {
    background: var(--gradient-blue);
    color: white !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 40px;
    margin-top: 16px;
    border: none !important;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.live-badge,
.no-log-badge {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.live-badge i {
    color: #2aff7c;
    font-size: 0.6rem;
}

.no-log-badge i {
    color: var(--accent-primary);
}

.hero-text h1 {
    margin-bottom: 24px;
    line-height: 1.1;
}

.dollar {
    background: rgba(0, 229, 255, 0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.5em;
    vertical-align: middle;
    margin-left: 10px;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    padding: 0 20px;
    border-left: 3px solid var(--accent-primary);
}

.quote-mark {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px;
    background: rgba(21, 26, 30, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-icon {
    font-size: 12rem;
    color: var(--accent-primary);
    opacity: 0.9;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: float 6s ease-in-out infinite;
}

.pulse-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(0, 229, 255, 0.3);
    animation: pulse 3s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

.pulse-ring.delay-2 {
    animation-delay: 2s;
}

.server-status-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 12, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    width: 250px;
    box-shadow: var(--shadow-lg);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.status-header i {
    color: var(--accent-primary);
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.online {
    background: rgba(42, 255, 124, 0.1);
    color: #2aff7c;
    border: 1px solid rgba(42, 255, 124, 0.3);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

/* ===== AD SECTION ===== */
.ad-section {
    padding: 20px 0;
}

.ad-text {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 400;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-primary);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.section-header h2 {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.why-icon i {
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.why-card h3 {
    margin-bottom: 16px;
}

.why-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.why-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.why-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.why-stats i {
    color: var(--accent-primary);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    background: var(--card-hover);
}

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-tag.popular {
    background: linear-gradient(145deg, #ff6b6b, #ff4757);
    color: white;
}

.service-tag.new {
    background: linear-gradient(145deg, #2aff7c, #00b894);
    color: white;
}

.service-tag.streaming {
    background: linear-gradient(145deg, #ffb142, #ff793f);
    color: white;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.service-icon i {
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.service-card h3 {
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-dim);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.service-features {
    margin: 20px 0;
    flex: 1;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.server-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-primary);
    font-weight: 600;
    flex-wrap: wrap;
}

.server-locations {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: normal;
}

.btn-service {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-service:hover {
    background: var(--accent-primary);
    color: black;
    border-color: var(--accent-primary);
}

/* ===== SERVERS SECTION ===== */
.servers {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.server-map {
    margin: 40px 0;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.server-location-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.server-location-card:hover {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.server-location-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.server-location-card h4 {
    margin-bottom: 8px;
}

.server-location-card p {
    color: var(--text-dim);
    margin-bottom: 12px;
}

.ping-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.stat-box .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-primary);
}

.feature-content h4 {
    margin-bottom: 12px;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0, 229, 255, 0.1);
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.user-info h5 {
    margin-bottom: 4px;
}

.user-info span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(0, 229, 255, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(145deg, #0f1317, #080b0e);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-primary);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
}

.cta-features i {
    color: var(--accent-success);
}

.small-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.cta-stat-item .stat-number {
    font-size: 2.2rem;
}

.cta-stat-item .stat-label {
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--accent-primary);
    color: black;
    border-color: var(--accent-primary);
}

.footer-links h4 {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.copyright p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 6px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 12, 15, 0.98);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 i {
    color: var(--accent-primary);
}

.close-modal,
.close-success {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-success:hover {
    color: var(--accent-primary);
}

.modal-body {
    padding: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-option {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.service-option i {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.service-option span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-option:hover,
.service-option.active {
    border-color: var(--accent-primary);
    background: rgba(0, 229, 255, 0.1);
}

.service-option.active i {
    color: var(--accent-primary);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-info i {
    color: var(--accent-primary);
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 5rem;
    color: #2aff7c;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.account-details {
    background: var(--primary-bg);
    border-radius: 20px;
    padding: 24px;
    margin: 30px 0;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-dim);
}

.detail-value {
    color: var(--accent-primary);
    font-weight: 600;
}

.success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 12, 15, 0.98);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
    box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay h3 {
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.loading-overlay p {
    color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease;
}

.animate-slideIn {
    animation: slideIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .why-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn-outline {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .services-grid,
    .testimonials-grid,
    .features-grid,
    .server-stats {
        grid-template-columns: 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .success-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-badge {
        flex-direction: column;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .service-selector {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-accent {
    color: var(--accent-primary);
}

.bg-gradient {
    background: var(--gradient-dark);
}

.glow {
    box-shadow: var(--shadow-glow);
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 24px;
}

.hidden {
    display: none !important;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}