/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #06060c;
    --bg-primary: #0c0c16;
    --bg-secondary: #111122;
    --bg-card: #16162a;
    --bg-card-hover: #1e1e38;
    --bg-elevated: #1a1a35;
    --text-primary: #eeeff5;
    --text-secondary: #a8a8c0;
    --text-muted: #686880;
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --accent-glow: rgba(108, 92, 231, 0.25);
    --accent-strong: rgba(108, 92, 231, 0.4);
    --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-2: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
    --gradient-3: linear-gradient(135deg, #00cec9 0%, #0984e3 100%);
    --success: #00b894;
    --success-bg: rgba(0, 184, 148, 0.1);
    --success-border: rgba(0, 184, 148, 0.3);
    --warning: #fdcb6e;
    --warning-bg: rgba(253, 203, 110, 0.1);
    --error: #ff7675;
    --error-bg: rgba(255, 118, 117, 0.1);
    --border: #1e1e38;
    --border-light: #2a2a48;
    --border-hover: #3d3d60;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(108, 92, 231, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============ BACKGROUND ANIMATION ============ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(108, 92, 231, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.02;
    animation: float 25s infinite ease-in-out;
    filter: blur(40px);
}

.particle:nth-child(1) { width: 400px; height: 400px; top: -5%; left: -5%; animation-delay: 0s; }
.particle:nth-child(2) { width: 300px; height: 300px; top: 60%; left: 85%; animation-delay: -4s; }
.particle:nth-child(3) { width: 500px; height: 500px; top: 40%; left: 40%; animation-delay: -8s; }
.particle:nth-child(4) { width: 250px; height: 250px; top: 80%; left: 8%; animation-delay: -12s; }
.particle:nth-child(5) { width: 350px; height: 350px; top: 15%; left: 70%; animation-delay: -16s; }
.particle:nth-child(6) { width: 200px; height: 200px; top: 50%; left: 15%; animation-delay: -20s; }
.particle:nth-child(7) { width: 450px; height: 450px; top: 70%; left: 55%; animation-delay: -6s; }
.particle:nth-child(8) { width: 180px; height: 180px; top: 25%; left: 90%; animation-delay: -10s; }
.particle:nth-child(9) { width: 320px; height: 320px; top: 85%; left: 35%; animation-delay: -14s; }
.particle:nth-child(10) { width: 380px; height: 380px; top: 10%; left: 50%; animation-delay: -18s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -100px) scale(1.15); }
    50% { transform: translate(-40px, -180px) scale(0.85); }
    75% { transform: translate(-100px, -50px) scale(1.1); }
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 6, 12, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 6, 12, 0.95);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo-icon svg {
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: #ffffff;
    box-shadow: 0 4px 24px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px var(--accent-strong);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(108, 92, 231, 0.05);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ HERO ============ */
.hero {
    max-width: 1300px;
    margin: 0 auto;
    padding: 160px 28px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.pulse {
    width: 9px;
    height: 9px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(0, 184, 148, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 18px 26px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow);
    animation: floatCard 6s infinite ease-in-out;
    backdrop-filter: blur(10px);
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.1rem;
}

.card-1 { top: 8%; left: 0%; animation-delay: 0s; }
.card-2 { top: 48%; right: 0%; animation-delay: -2s; }
.card-3 { bottom: 12%; left: 10%; animation-delay: -4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.hero-glow {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    border-radius: 50%;
    position: absolute;
    animation: glowPulse 4s infinite ease-in-out;
}

.hero-orb {
    width: 200px;
    height: 200px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    position: absolute;
    opacity: 0.3;
    animation: orbSpin 20s linear infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes orbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============ SECTIONS ============ */
section {
    position: relative;
    z-index: 1;
    padding: 100px 28px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ SEARCH SECTION ============ */
.search-section {
    max-width: 950px;
    margin: 0 auto;
}

.search-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
}

.search-box {
    display: flex;
    gap: 14px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    z-index: 2;
    pointer-events: none;
}

#gameSearchInput {
    flex: 1;
    padding: 17px 22px 17px 52px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.05rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

#gameSearchInput:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

#gameSearchInput::placeholder {
    color: var(--text-muted);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 0.85rem;
}

.suggestions-label {
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 4px;
}

.tag {
    padding: 7px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: var(--transition);
    font-weight: 500;
}

.tag:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(108, 92, 231, 0.08);
}

.search-results {
    margin-top: 28px;
    display: none;
}

.search-results.active {
    display: block;
}

/* Result Card */
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.result-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateX(6px);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.result-game-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-elevated);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-light);
}

.result-game-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.result-game-info .result-match-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--border-hover);
}

.service-item.available {
    border-left: 3px solid var(--success);
    background: var(--success-bg);
}

.service-item.unavailable {
    opacity: 0.35;
    border-left: 3px solid var(--error);
}

.service-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.service-status {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.service-status.available {
    color: var(--success);
}

.service-status.unavailable {
    color: var(--error);
}

.no-results {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    opacity: 0.4;
}

/* ============ FREE GAMES ============ */
.free-games-section {
    max-width: 1300px;
    margin: 0 auto;
}

.free-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.free-game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.free-game-card::before {
    content: 'FREE';
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--success-bg);
    color: var(--success);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    border: 1px solid var(--success-border);
}

.free-game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.free-game-card .game-platform {
    font-size: 0.8rem;
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.free-game-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.free-game-card .expiry {
    font-size: 0.85rem;
    color: var(--warning);
    margin-bottom: 20px;
    font-weight: 500;
}

.free-game-card .btn {
    width: 100%;
    justify-content: center;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ============ COMPATIBILITY ============ */
.compatibility-section {
    max-width: 900px;
    margin: 0 auto;
}

.compatibility-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.specs-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--accent-light);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.form-select {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a8a8c0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.compatibility-result {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.result-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.placeholder-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    opacity: 0.35;
}

.result-placeholder p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.compatibility-details {
    width: 100%;
}

.recommendation-card {
    background: var(--bg-card);
    border: 1px solid var(--success-border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.recommendation-card:hover {
    border-color: var(--success);
    box-shadow: 0 0 20px rgba(0, 184, 148, 0.1);
}

.recommendation-card h4 {
    color: var(--success);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.recommendation-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-light);
    font-family: 'Space Grotesk', sans-serif;
}

.recommendation-card .note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 10px 0;
    line-height: 1.5;
}

/* ============ GEAR SECTION ============ */
.gear-section {
    max-width: 1300px;
    margin: 0 auto;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gear-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gear-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.gear-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.gear-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gear-card .gear-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.gear-card .gear-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.gear-card .btn {
    width: 100%;
    justify-content: center;
}

.disclosure {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 32px;
}

/* ============ HOW IT WORKS ============ */
.about-section {
    max-width: 1300px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition-slow);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: 22px;
    left: 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(108, 92, 231, 0.06);
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-elevated);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--accent-light);
}

.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ CTA ============ */
.cta-section {
    text-align: center;
    padding: 120px 28px;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 28px 32px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo svg {
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 14px 0 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    color: var(--accent-light);
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.footer-links h4 {
    margin-bottom: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    max-width: 1300px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 130px 28px 60px;
        gap: 40px;
    }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-stats { justify-content: center; }
    .hero-visual { height: 220px; }
    .floating-card { display: none; }
    .compatibility-container { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 640px) {
    .search-box { flex-direction: column; }
    .service-list { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 1.8rem; }
    .hero-stats { gap: 28px; }
    .stat-number { font-size: 1.6rem; }
    .search-container { padding: 24px; }
    .specs-form { padding: 24px; }
    .compatibility-result { padding: 24px; }
}