/* ============================================
   BanditCode - Premium Landing Page
   Software Development & Marketing
   ============================================ */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(15, 15, 25, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --accent: #00d4ff;
    --accent-secondary: #7c3aed;
    --accent-glow: rgba(0, 212, 255, 0.4);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========== Scroll Progress ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ========== Gradient Orbs ========== */
.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.6) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* ========== Grid Overlay ========== */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* ========== Background Layers ========== */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.35;
}

#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ========== Logo Watermark Background ========== */
.logo-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 90vmin;
    max-height: 90vmin;
    min-width: 400px;
    min-height: 400px;
    z-index: -4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-watermark img {
    width: 100%;
    height: 100%;
    max-width: 700px;
    max-height: 700px;
    object-fit: contain;
    opacity: 0.06;
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.15));
}

/* ========== Nav Right (links + lang + toggle) ========== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ========== Language Switcher ========== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--accent);
}

.lang-divider {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 48px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: var(--transition-smooth);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 8px var(--accent-glow)); }
    50% { filter: drop-shadow(0 0 15px var(--accent-glow)); }
}

.nav-logo:hover .logo-img {
    transform: scale(1.08);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.hero-badge:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.hero-badge .bracket {
    color: var(--accent);
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s 0.4s ease forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.6s ease forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #0099cc);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 4px 20px 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.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px var(--accent-glow);
    animation: btnPulse 2s ease-in-out infinite;
}

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

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 40px var(--accent-glow); }
    50% { box-shadow: 0 8px 50px rgba(0, 212, 255, 0.6); }
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-arrow {
    width: 18px;
    height: 18px;
}

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    height: 400px;
    pointer-events: none;
    opacity: 0.25;
}

.hex-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hex {
    position: absolute;
    width: 60px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.4;
    animation: hexFloat 6s ease-in-out infinite;
    box-shadow: 0 0 30px var(--accent-glow);
}

.hex-1 { top: 0; left: 50%; animation-delay: 0s; }
.hex-2 { top: 60px; left: 0; animation-delay: 0.5s; }
.hex-3 { top: 60px; right: 0; left: auto; animation-delay: 1s; }
.hex-4 { top: 120px; left: 25%; animation-delay: 1.5s; }
.hex-5 { top: 120px; right: 25%; left: auto; animation-delay: 2s; }
.hex-6 { top: 180px; left: 50%; animation-delay: 2.5s; }

@keyframes hexFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.code-float {
    position: absolute;
    bottom: -80px;
    right: 10%;
    font-size: 0.7rem;
    font-family: 'Fira Code', 'Consolas', monospace;
    animation: codeGlow 3s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 5px var(--accent-glow)); }
    50% { opacity: 1; filter: drop-shadow(0 0 15px var(--accent-glow)); }
}

.code-tag { color: var(--accent); }
.code-attr { color: var(--accent-secondary); }
.code-prop { color: #a78bfa; }
.code-val { color: #34d399; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    animation: fadeIn 1s 1s ease forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.5); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

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

/* ========== Sections ========== */
.section {
    padding: 100px 48px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 12px;
    position: relative;
}

.section-tag::after {
    content: '_';
    animation: cursorBlink 1s step-end infinite;
    color: var(--accent);
}

@keyframes cursorBlink {
    50% { opacity: 0; }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-secondary), transparent);
    border-radius: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; box-shadow: 0 0 20px var(--accent-glow); }
}

/* ========== About Section ========== */
.about {
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text.highlight {
    color: var(--text-primary);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 0 40px var(--accent-glow), inset 0 0 30px rgba(0, 212, 255, 0.05);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    animation: statGlow 3s ease-in-out infinite;
}

@keyframes statGlow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-glow); }
    50% { text-shadow: 0 0 25px var(--accent-glow); }
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ========== Services Section ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========== SEO Section ========== */
.seo-section {
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04));
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-headline {
    text-align: center;
    margin-bottom: 48px;
}

.seo-claim {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.seo-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.seo-extra-item {
    padding: 24px;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.seo-extra-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.seo-extra-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 8px;
}

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

.seo-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.seo-benefit-card {
    padding: 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.seo-benefit-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
}

.seo-benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.seo-benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== Clients Section ========== */
.clients {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.04), transparent);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.client-card:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.client-logo {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(1) grayscale(0.2);
    transition: var(--transition-smooth);
}

.client-card:hover .client-logo {
    filter: brightness(1.2) grayscale(0);
}

.client-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

/* Contact WhatsApp styling */
.contact-whatsapp {
    flex-direction: row;
    flex-wrap: wrap;
}

.contact-whatsapp .contact-icon {
    flex-shrink: 0;
}

.contact-whatsapp .contact-phone {
    flex: 1;
}

.contact-whatsapp .whatsapp-badge {
    width: 100%;
    margin-left: 28px;
    margin-top: 2px;
}

.contact-phone {
    font-weight: 600;
}

.whatsapp-badge {
    font-size: 0.8rem;
    color: #25D366;
    font-weight: 500;
}

.contact-whatsapp:hover .whatsapp-badge {
    color: #25D366;
}

/* ========== Solutions Section ========== */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 36px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.solution-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
    transform: translateX(8px);
}

.solution-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.solution-item:hover .solution-icon {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px var(--accent-glow);
}

.solution-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

/* ========== Contact Section ========== */
.contact {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03), transparent);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.contact-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

/* ========== Footer ========== */
.footer {
    padding: 48px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.footer-logo {
    height: 48px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========== Scroll Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-watermark {
        min-width: 280px;
        min-height: 280px;
    }
    .navbar {
        padding: 16px 24px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        gap: 24px;
        border-left: 1px solid var(--border-subtle);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle span {
        transition: var(--transition-smooth);
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-extras,
    .seo-benefits {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
}
