/* ============================================
   KINGMAN COMPUTER REPAIR - CYBERPUNK FUTURISTIC
   ============================================ */

:root {
    --neon-cyan: #5a8cff;
    --neon-magenta: #d7263d;
    --electric-blue: #21407a;
    --gold: #ffd700;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(10, 15, 30, 0.8);
    --glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gradient-primary: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
    --gradient-secondary: linear-gradient(135deg, var(--neon-magenta), var(--electric-blue));
    --gradient-gold: linear-gradient(135deg, var(--gold), #ffb347);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', 'Orbitron', 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(90, 140, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(215, 38, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(33, 64, 122, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 140, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 140, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(90, 140, 255, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 0 26px rgba(90, 140, 255, 0.25);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 30px rgba(90, 140, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(90, 140, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

nav a:hover::before {
    left: 100%;
}

nav a:hover, nav a.active {
    color: var(--neon-cyan);
    background: rgba(90, 140, 255, 0.1);
    box-shadow: 0 0 20px rgba(90, 140, 255, 0.2);
}

.remote-support-btn {
    background: var(--gradient-primary);
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(90, 140, 255, 0.4);
}

.remote-support-btn:hover {
    box-shadow: 0 0 30px rgba(90, 140, 255, 0.6);
    transform: translateY(-2px);
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.glowing-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
    position: relative;
}

.glowing-text .cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px rgba(90, 140, 255, 0.8), 0 0 60px rgba(90, 140, 255, 0.4);
}

.glowing-text .magenta {
    color: var(--neon-magenta);
    text-shadow: 0 0 30px rgba(215, 38, 61, 0.8), 0 0 60px rgba(215, 38, 61, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 4px 20px rgba(90, 140, 255, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(90, 140, 255, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(90, 140, 255, 0.2), inset 0 0 20px rgba(90, 140, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(90, 140, 255, 0.1);
    box-shadow: 0 0 30px rgba(90, 140, 255, 0.4), inset 0 0 30px rgba(90, 140, 255, 0.1);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    transform: translateY(-3px);
}

.btn-magenta {
    background: var(--gradient-secondary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(215, 38, 61, 0.4);
}

.btn-magenta:hover {
    box-shadow: 0 0 30px rgba(215, 38, 61, 0.6);
    transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */

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

.card {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-magenta), transparent);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 140, 255, 0.1), transparent, rgba(215, 38, 61, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(90, 140, 255, 0.4);
    box-shadow: 0 20px 60px rgba(90, 140, 255, 0.15);
}

.card:hover::after {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(90, 140, 255, 0.3);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.card-price span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   PC BUILDER
   ============================================ */

.builder-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.builder-sidebar {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.tier-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tier-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(90, 140, 255, 0.3);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tier-btn.active {
    border-color: var(--neon-cyan);
    background: rgba(90, 140, 255, 0.2);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(90, 140, 255, 0.3);
}

.tier-btn:hover:not(.active) {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.component-category {
    margin-bottom: 2.5rem;
}

.component-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.component-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(90, 140, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: grab;
    transition: all 0.3s ease;
    position: relative;
}

.component-item:hover {
    border-color: var(--neon-cyan);
    background: rgba(90, 140, 255, 0.1);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(90, 140, 255, 0.2);
}

.component-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.component-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.component-item .name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.component-item .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.component-item .specs {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.build-summary {
    margin-top: 1rem;
}

.build-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
}

.build-slot {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(90, 140, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    transition: all 0.3s ease;
}

.build-slot.drag-over {
    border-color: var(--neon-cyan);
    background: rgba(90, 140, 255, 0.1);
}

.build-slot.filled {
    border-style: solid;
    border-color: var(--neon-cyan);
    background: rgba(90, 140, 255, 0.05);
}

.build-slot .slot-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.build-slot .slot-item {
    text-align: right;
}

.build-slot .slot-item .name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.build-slot .slot-item .price {
    color: var(--gold);
    font-size: 0.9rem;
}

.remove-btn {
    background: rgba(255, 0, 100, 0.2);
    border: none;
    color: #ff3366;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: rgba(255, 0, 100, 0.4);
    transform: scale(1.1);
}

.total-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(90, 140, 255, 0.2);
}

.total-price .parts-total {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.total-price .build-fee {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.total-price .grand-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
}

.order-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1.1rem;
}

/* ============================================
   PHONE REPAIR
   ============================================ */

.repair-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.repair-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(90, 140, 255, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.repair-tab:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.repair-tab.active {
    background: rgba(90, 140, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(90, 140, 255, 0.2);
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.repair-card {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(90, 140, 255, 0.15);
}

.repair-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.repair-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.repair-card-content .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.repair-card-content .price span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   TUTORIALS
   ============================================ */

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.tutorial-card {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(90, 140, 255, 0.15);
}

.tutorial-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, rgba(90, 140, 255, 0.2), rgba(215, 38, 61, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.tutorial-thumbnail .play-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tutorial-thumbnail .play-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: scale(1.1);
}

.tutorial-content {
    padding: 1.5rem;
}

.tutorial-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tutorial-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.tutorial-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tutorial-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============================================
   BUSINESS SECTION
   ============================================ */

.business-hero {
    background: linear-gradient(135deg, rgba(90, 140, 255, 0.1), rgba(33, 64, 122, 0.1));
    border-radius: 24px;
    padding: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    border: 1px solid rgba(90, 140, 255, 0.2);
}

.business-hero h2 {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.sla-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sla-card {
    background: var(--card-bg);
    border: 2px solid rgba(90, 140, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.sla-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.sla-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
}

.sla-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.sla-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.sla-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.sla-card .sla-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.sla-card .sla-price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.sla-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.sla-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.sla-card ul li::before {
    content: '✓';
    color: var(--neon-cyan);
    font-weight: bold;
}

/* ============================================
   REMOTE SUPPORT
   ============================================ */

.remote-hero {
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.remote-hero .icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(90, 140, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(90, 140, 255, 0.4); }
    50% { box-shadow: 0 20px 80px rgba(90, 140, 255, 0.7); }
}

.connect-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: var(--gradient-primary);
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(90, 140, 255, 0.5);
    transition: all 0.3s ease;
    margin: 2rem 0;
}

.connect-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(90, 140, 255, 0.7);
}

.remote-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto;
}

.remote-feature {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.remote-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(90, 140, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.remote-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--neon-cyan);
    transform: translateX(10px);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}

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

.contact-item-content a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--neon-cyan);
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(90, 140, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(90, 140, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-section {
    background: linear-gradient(180deg, transparent, rgba(90, 140, 255, 0.05), transparent);
    padding: 6rem 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid rgba(90, 140, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(90, 140, 255, 0.2);
    font-family: serif;
    line-height: 1;
}

.review-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.review-author-info h5 {
    color: var(--text-primary);
    font-size: 1rem;
}

.review-author-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ============================================
   GUARANTEE BANNER
   ============================================ */

.guarantee-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 4rem auto;
    max-width: 1000px;
}

.guarantee-banner h3 {
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.guarantee-banner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(90, 140, 255, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

.footer-section a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .builder-container {
        grid-template-columns: 1fr;
    }
    
    .builder-sidebar {
        position: relative;
        top: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(90, 140, 255, 0.2);
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

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

.glow-text {
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 0 20px rgba(90, 140, 255, 0.5); }
    to { text-shadow: 0 0 40px rgba(90, 140, 255, 0.8), 0 0 60px rgba(215, 38, 61, 0.5); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-magenta), var(--neon-cyan));
}
