/* ====================================
   Linux2Proxy - Custom Styles
   Color Scheme:
   - #1A1A1A (Dark Background)
   - #800000 (Maroon/Dark Red)
   - #DAA520 (Goldenrod)
   - #F5DEB3 (Wheat/Beige)
   - #F8F8F8 (Off White)
   - #4A4A4A (Dark Gray)
   ==================================== */

/* ====================================
   Global Styles & Reset
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #1A1A1A;
    --color-maroon: #800000;
    --color-gold: #DAA520;
    --color-wheat: #F5DEB3;
    --color-white: #F8F8F8;
    --color-gray: #4A4A4A;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(218, 165, 32, 0.15);
    --shadow-hover: 0 20px 60px rgba(218, 165, 32, 0.25);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   Loader
   ==================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dark) 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-maroon));
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-text {
    color: var(--color-wheat);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ====================================
   Header & Navigation
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px;
    transition: var(--transition);
}

/* ====================================
   Hero Slider
   ==================================== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animated-bg {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--color-dark) 0%, #0a0a0a 50%, var(--color-dark) 100%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.bg-1::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.bg-2::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.bg-3::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.slide-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.slide-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.slide.active .title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.slide.active .title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 20px;
    color: var(--color-wheat);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.stats-row {
    display: flex;
    gap: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 36px;
    color: var(--color-gold);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-wheat);
    opacity: 0.8;
}

.slide-visual {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards 0.6s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Terminal Window */
.terminal-window {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.terminal-header {
    background: rgba(74, 74, 74, 0.5);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-size: 12px;
    color: var(--color-wheat);
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 30px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.terminal-line {
    margin-bottom: 8px;
    color: var(--color-wheat);
}

.prompt {
    color: var(--color-gold);
    margin-right: 10px;
    font-weight: bold;
}

.response {
    color: var(--color-white);
    padding-left: 20px;
}

.response.success {
    color: #27c93f;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--color-gold);
}

.stat-icon {
    font-size: 48px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 16px;
    color: var(--color-wheat);
    opacity: 0.8;
}

/* Checker Demo */
.checker-demo {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.checker-input {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(74, 74, 74, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.checker-input i {
    color: var(--color-gold);
    font-size: 18px;
}

.checker-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 16px;
    outline: none;
}

.check-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.check-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.checker-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--color-wheat);
    opacity: 0.8;
}

.result-value {
    color: var(--color-white);
    font-weight: 600;
}

.result-value.success {
    color: #27c93f;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.1);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-gold);
    width: 40px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-wheat);
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ====================================
   Section Styles
   ==================================== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--color-wheat);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ====================================
   Features Section
   ==================================== */
.features-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, #0f0f0f 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.feature-category {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
}

.feature-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--color-gold);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-white);
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item > i {
    font-size: 20px;
    color: var(--color-gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: var(--color-wheat);
    opacity: 0.8;
    line-height: 1.6;
}

/* ====================================
   Services Section
   ==================================== */
.services-section {
    background: var(--color-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

.service-card.featured {
    border-color: var(--color-gold);
    background: rgba(218, 165, 32, 0.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--color-gold);
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.service-description {
    color: var(--color-wheat);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.service-features li i {
    color: var(--color-gold);
    font-size: 16px;
}

.service-features li.disabled {
    opacity: 0.4;
}

.service-features li.disabled i {
    color: var(--color-gray);
}

.service-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.service-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.service-card.featured .service-btn {
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    border: none;
    color: var(--color-white);
}

.service-card.featured .service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ====================================
   API Section
   ==================================== */
.api-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, #0f0f0f 100%);
}

.api-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.api-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.api-info > p {
    color: var(--color-wheat);
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
}

.api-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.api-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.api-feature i {
    font-size: 28px;
    color: var(--color-gold);
    margin-top: 5px;
}

.api-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.api-feature p {
    color: var(--color-wheat);
    opacity: 0.8;
    font-size: 14px;
}

.api-actions {
    display: flex;
    gap: 15px;
}

.api-code {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.code-tabs {
    display: flex;
    background: rgba(74, 74, 74, 0.3);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.code-tab {
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--color-wheat);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.code-tab:hover {
    color: var(--color-gold);
    background: rgba(218, 165, 32, 0.05);
}

.code-tab.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.code-examples {
    position: relative;
}

.code-example {
    display: none;
    padding: 30px;
}

.code-example.active {
    display: block;
}

.code-example pre {
    margin: 0;
}

.code-example code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-wheat);
    display: block;
}

/* ====================================
   Pricing Section
   ==================================== */
.pricing-section {
    background: var(--color-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

.pricing-card.featured {
    border-color: var(--color-gold);
    background: rgba(218, 165, 32, 0.05);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.pricing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 24px;
    color: var(--color-gold);
    font-weight: 600;
    margin-top: 10px;
}

.amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--color-wheat);
    opacity: 0.7;
    margin-top: 25px;
}

.amount-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-gold);
}

.pricing-description {
    color: var(--color-wheat);
    opacity: 0.8;
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.pricing-features li i {
    color: var(--color-gold);
    font-size: 16px;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--color-gray);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.pricing-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    border: none;
    color: var(--color-white);
}

.pricing-card.featured .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ====================================
   Contact Section
   ==================================== */
.contact-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, #0f0f0f 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.contact-details a,
.contact-details p {
    color: var(--color-wheat);
    opacity: 0.9;
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--color-gold);
}

.contact-form {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(74, 74, 74, 0.3);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(74, 74, 74, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: #0a0a0a;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
}

.footer-description {
    color: var(--color-wheat);
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-wheat);
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--color-wheat);
    opacity: 0.7;
    font-size: 14px;
}

.developer {
    color: var(--color-gold);
    font-weight: 600;
    margin-left: 10px;
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 15px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 6px;
    color: var(--color-wheat);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge i {
    color: var(--color-gold);
}

/* ====================================
   Back to Top Button
   ==================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-maroon));
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1200px) {
    .slide-content {
        gap: 40px;
    }

    .slide-title {
        font-size: 52px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        transition: var(--transition);
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .slide-title {
        font-size: 42px;
    }

    .api-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 36px;
    }

    .slide-description {
        font-size: 16px;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-category {
        padding: 25px;
    }

    /* === RESPONSIVE FIX FOR IP CHECKER === */
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .result-value {
        word-break: break-all; /* This forces the long IP to wrap */
    }
    /* === END OF FIX === */
}