/* ========================================
   FAST BATCH RENAMER - FUTURISTIC DESIGN
   Modern, Tech-forward, Sci-fi Inspired
   © 2025 Salman Naseem
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary: #00d4ff;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --dark: #0a0e1a;
    --darker: #060913;
    --card-bg: rgba(15, 23, 42, 0.8);
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --glow: rgba(0, 212, 255, 0.5);
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--darker);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px var(--glow);
}

code {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-size: 0.9em;
    color: var(--primary);
}

.code-block {
    display: block;
    background: rgba(10, 14, 26, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    overflow-x: auto;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

/* ========================================
   GLASS MORPHISM EFFECTS
   ======================================== */
.glass {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 3rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.logo {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--glow));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-name {
    background: linear-gradient(135deg, var(--primary) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dim);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--glow);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    border: 1px solid var(--primary);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.highlight {
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 30px var(--glow);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 3rem;
}

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

.hero-note {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
    background: rgba(220, 38, 38, 0.05);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.problem h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b6b;
}

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

.problem-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

.problem-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-preview {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    position: relative;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
}

.preview-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.preview-content {
    padding: 25px;
    position: relative;
    z-index: 1;
    background: rgba(10, 14, 26, 0.8);
}

.preview-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 212, 255, 0.05);
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.preview-row:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.check {
    color: var(--primary);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px var(--glow));
}

.filename {
    color: var(--text-dim);
    flex: 1;
}

.arrow {
    color: var(--primary);
    font-weight: 600;
}

.filename-new {
    color: #10b981;
    flex: 1;
    font-weight: 500;
}

.preview-footer {
    padding: 20px 25px;
    background: rgba(10, 14, 26, 0.9);
    text-align: center;
    position: relative;
    z-index: 1;
}

.preview-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: not-allowed;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.solution-list {
    list-style: none;
    font-size: 1.125rem;
}

.solution-list li {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.solution-list li:hover {
    padding-left: 25px;
    border-left: 3px solid var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

.solution-list li:last-child {
    border-bottom: none;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    background: rgba(124, 58, 237, 0.03);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.features h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px var(--glow);
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 600;
    filter: drop-shadow(0 0 10px var(--glow));
}

/* ========================================
   USE CASES SECTION
   ======================================== */
.use-cases {
    background: rgba(0, 212, 255, 0.03);
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.use-case {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

/* ========================================
   EXCEL SPOTLIGHT SECTION
   ======================================== */
.excel-spotlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.3);
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.excel-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite reverse;
}

.spotlight-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.spotlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.spotlight-text {
    font-size: 1.25rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.spotlight-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.excel-column,
.result-column {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.excel-header,
.result-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border-radius: 20px 20px 0 0;
}

.excel-row,
.result-row {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text);
}

.excel-row:last-child,
.result-row:last-child {
    border-bottom: none;
}

.arrow-large {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 700;
    filter: drop-shadow(0 0 20px var(--glow));
}

.spotlight-note {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.125rem;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent 30%
    );
    animation: rotate 6s linear infinite;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px var(--glow);
    position: relative;
    z-index: 1;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.price-currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-amount {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-dim);
}

.price-note {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text);
}

.pricing-footer {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */
.download {
    background: rgba(124, 58, 237, 0.05);
}

.download h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.download-box {
    max-width: 650px;
    margin: 0 auto 2.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.download-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.download-note {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 20px;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-dim);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: rgba(6, 9, 19, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text);
    padding: 3.5rem 0 2.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow);
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ========================================
   SUPPORT PAGE STYLES
   ======================================== */
.support-hero,
.privacy-hero {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 80px 0 50px;
    text-align: center;
}

.support-hero h1,
.privacy-hero h1 {
    margin-bottom: 1rem;
}

.quick-links {
    padding: 50px 0;
}

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

.quick-link-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    color: inherit;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    color: inherit;
}

.quick-link-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.support-section {
    padding: 70px 0;
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.guide-step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 0 30px var(--glow);
}

.guide-step-content {
    flex: 1;
}

.info-box {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    backdrop-filter: blur(20px);
}

.info-box h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

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

.quick-start-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.quick-start-card ul {
    list-style: none;
}

.quick-start-card li {
    padding: 10px 0;
    color: var(--text-dim);
}

.troubleshooting-list {
    max-width: 900px;
    margin: 0 auto;
}

.trouble-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.trouble-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.trouble-item ol,
.trouble-item ul {
    margin-left: 1.5rem;
    color: var(--text-dim);
}

.trouble-item li {
    margin-bottom: 0.75rem;
}

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

.requirement-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-methods {
    max-width: 650px;
    margin: 0 auto 3rem;
}

.contact-method {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.contact-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.contact-note {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.contact-form-section {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.google-form-container {
    margin: 2.5rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

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

.resource-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.bg-light {
    background: rgba(0, 212, 255, 0.02);
}

/* ========================================
   PRIVACY PAGE STYLES
   ======================================== */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

.privacy-summary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(20px);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text);
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.6);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.highlight-icon {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.privacy-section:first-of-type h2 {
    border-top: none;
    padding-top: 0;
}

.privacy-section ul {
    margin-left: 1.5rem;
    color: var(--text-dim);
}

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

.contact-info {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.privacy-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 212, 255, 0.2);
}

.privacy-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .spotlight-example {
        flex-direction: column;
    }

    .arrow-large {
        transform: rotate(90deg);
    }

    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
