/* ============================================
   WELLES IMAGE SOLUTIONS - SYNTHWAVE THEME
   ============================================ */

:root {
    /* Updated Premium Color Palette (From Audit) */
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --gold-accent: #d4a853;
    --gold-hover: #e8c068;

    /* Service-Specific Colors */
    --trust-blue: #4a90d9;        /* Automation - Tech/Reliability */
    --growth-green: #5cb85c;      /* Social Media - Growth */
    --premium-purple: #8b5cf6;    /* AI Phone - Innovation */

    /* Legacy Synthwave (Keep for existing elements) */
    --neon-pink: #d4a853;         /* Map to gold */
    --neon-cyan: #4a90d9;         /* Map to blue */
    --neon-blue: #4a90d9;
    --electric-purple: #8b5cf6;
    --sunset-orange: #d4a853;
    --hot-pink: #d4a853;

    /* Background Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(26, 26, 26, 0.8);
    --bg-card-hover: rgba(35, 35, 35, 0.9);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* Gradients (Updated for Premium Look) */
    --gradient-gold: linear-gradient(135deg, #d4a853 0%, #e8c068 100%);
    --gradient-neon: linear-gradient(135deg, #d4a853 0%, #e8c068 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);

    /* Shadows (Updated) */
    --glow-gold: 0 0 20px rgba(212, 168, 83, 0.5), 0 0 40px rgba(212, 168, 83, 0.3);
    --glow-blue: 0 0 20px rgba(74, 144, 217, 0.5), 0 0 40px rgba(74, 144, 217, 0.3);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Spacing */
    --section-padding: 100px 5%;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4' fill='%2339ff14'/%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%2339ff14' stroke-width='1' opacity='0.5'/%3E%3Ccircle cx='12' cy='12' r='11' fill='none' stroke='%2339ff14' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E") 12 12, auto;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Pointer cursor for clickable elements */
a, button, .btn, input[type="submit"], .portfolio-item, .pricing-card, .service-card {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='5' fill='%2339ff14'/%3E%3Ccircle cx='14' cy='14' r='9' fill='none' stroke='%2339ff14' stroke-width='1.5' opacity='0.6'/%3E%3Ccircle cx='14' cy='14' r='13' fill='none' stroke='%2339ff14' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E") 14 14, pointer;
}

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(var(--bg-dark) 0%, transparent 100%),
        linear-gradient(90deg, rgba(255, 0, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: -2;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 0 100%, 0 50px, 50px 0; }
}

/* Scan Line Effect */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.1;
    animation: scanline 8s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes scanline {
    0% { top: -4px; }
    100% { top: 100%; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, var(--bg-darker) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 25px !important;
    background: var(--gradient-neon);
    border-radius: 5px;
    color: var(--bg-dark) !important;
    font-weight: 700 !important;
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--section-padding);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 50%;
    background: radial-gradient(ellipse at center bottom, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--neon-pink);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 0, 255, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-punch {
    font-size: 1.4rem;
    color: var(--gold-accent);
    margin: 25px 0;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0a0a0a;
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
    background: linear-gradient(135deg, #e8c068 0%, #f0d080 100%);
}

.btn-glow {
    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 .btn-glow {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.btn-full {
    width: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Mockup for Social Media Hero */
.phone-mockup {
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    border: 4px solid #333;
    padding: 8px;
    box-shadow:
        0 0 40px rgba(255, 0, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-notch {
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Facebook Header */
.fb-header {
    background: #fff;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
}

.fb-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1877F2;
}

/* Feed Container */
.feed-container {
    flex: 1;
    overflow: hidden;
    background: #f0f2f5;
}

.feed-scroll-track {
    animation: feedScroll 20s linear infinite;
}

@keyframes feedScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-75%); }
}

/* Facebook Post Styling */
.fb-post {
    background: #fff;
    margin-bottom: 8px;
}

.fb-post-header {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 8px;
}

.fb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: #e4e6eb;
}

.fb-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-post-info {
    display: flex;
    flex-direction: column;
}

.fb-page-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #050505;
}

.fb-post-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    color: #65676b;
}

.fb-public {
    font-size: 10px;
}

.fb-post-image {
    width: 100%;
}

.fb-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Engagement Stats - Authentic Facebook Style */
.fb-engagement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
}

.fb-reactions {
    display: flex;
    align-items: center;
}

.reaction-icons {
    display: flex;
    align-items: center;
}

.reaction-icons span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: -5px;
    border: 2px solid #fff;
    position: relative;
    background: #fff;
}

.reaction-icons span:nth-child(1) {
    z-index: 3;
}

.reaction-icons span:nth-child(2) {
    z-index: 2;
}

.reaction-icons span:nth-child(3) {
    z-index: 1;
}

.reaction-count {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    color: #65676b;
    margin-left: 8px;
}

.fb-comments-shares {
    display: flex;
    gap: 8px;
}

.fb-comments-shares span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #65676b;
}

.fb-post-actions {
    display: flex;
    justify-content: space-around;
    padding: 4px 0;
    border-top: 1px solid #e4e6eb;
    background: #fff;
}

.fb-post-actions span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #65676b;
    padding: 6px 0;
    cursor: pointer;
}

/* Instagram Post Styling - Legacy, can be removed */
.ig-post {
    background: #000;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ig-post-header {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 10px;
}

.ig-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
}

.ig-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    z-index: -1;
}

.ig-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ig-username {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.ig-location {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 11px;
    color: #a8a8a8;
}

.ig-more {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
}

.ig-post-image {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-image-content {
    text-align: center;
}

.ig-overlay-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.ig-overlay-sub {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

.ig-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px 5px;
}

.ig-actions-left {
    display: flex;
    gap: 14px;
}

.ig-icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ig-icon:hover {
    transform: scale(1.1);
}

.ig-heart {
    animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.ig-likes {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    padding: 0 12px 5px;
}

.ig-caption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    color: #fff;
    padding: 0 12px 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ig-cap-user {
    font-weight: 600;
    margin-right: 5px;
}

/* Floating Notifications */
.phone-mockup .notification {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 15, 25, 0.95);
    border: 1px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: notifFloat 4s ease-in-out infinite;
    z-index: 10;
}

.notif-icon {
    flex-shrink: 0;
}

.phone-mockup .notif-1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.phone-mockup .notif-2 {
    top: 45%;
    left: -60px;
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    animation-delay: 1.5s;
}

.phone-mockup .notif-3 {
    bottom: 15%;
    right: -60px;
    animation-delay: 3s;
}

/* AI Generated Callout */
.ai-callout {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 300px;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    color: #000;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 8px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 0, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4); }
}

.ai-callout p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

@keyframes notifFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Tech Hub Visual (keep for fallback) */
.tech-hub {
    position: relative;
    width: 400px;
    height: 400px;
    display: none; /* Hidden - using phone mockup instead */
}

/* Hexagonal Rings */
.hex-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringRotate 20s linear infinite;
}

.hex-ring-outer {
    width: 380px;
    height: 380px;
    border-color: rgba(0, 255, 255, 0.1);
    border-style: dashed;
}

.hex-ring-middle {
    width: 280px;
    height: 280px;
    border-color: rgba(255, 0, 255, 0.2);
    animation-direction: reverse;
    animation-duration: 15s;
}

.hex-ring-inner {
    width: 180px;
    height: 180px;
    border-color: rgba(0, 255, 255, 0.3);
    animation-duration: 10s;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Core Hub */
.hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
    animation: corePulse 2s ease-in-out infinite;
}

.hub-core span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

@keyframes corePulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 255, 255, 0.5),
            0 0 60px rgba(255, 0, 255, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 0 50px rgba(0, 255, 255, 0.7),
            0 0 80px rgba(255, 0, 255, 0.5),
            inset 0 0 40px rgba(0, 255, 255, 0.3);
    }
}

/* Orbit Track */
.orbit-track {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitSpin 30s linear infinite;
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Service Nodes */
.service-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: counterSpin 30s linear infinite;
}

@keyframes counterSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.node-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    bottom: 15%;
    right: 5%;
}

.node-3 {
    bottom: 15%;
    left: 5%;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--neon-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.node-icon svg {
    width: 24px;
    height: 24px;
    color: var(--neon-cyan);
}

.service-node:hover .node-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.node-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    white-space: nowrap;
}

/* Node Pulse Effect */
.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    animation: nodePulse 2s ease-out infinite;
    pointer-events: none;
}

.node-1 .node-pulse { animation-delay: 0s; }
.node-2 .node-pulse { animation-delay: 0.6s; }
.node-3 .node-pulse { animation-delay: 1.2s; }

@keyframes nodePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.conn-line {
    stroke: url(#lineGradient);
    stroke: var(--neon-cyan);
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 5 5;
    animation: dashMove 2s linear infinite;
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -20; }
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: particleFloat 8s ease-in-out infinite;
}

.p1 { top: 20%; left: 30%; animation-delay: 0s; }
.p2 { top: 40%; right: 20%; animation-delay: 1s; animation-duration: 6s; }
.p3 { bottom: 30%; left: 20%; animation-delay: 2s; animation-duration: 7s; }
.p4 { top: 60%; left: 40%; animation-delay: 3s; background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); }
.p5 { bottom: 20%; right: 30%; animation-delay: 4s; animation-duration: 9s; }
.p6 { top: 30%; right: 40%; animation-delay: 5s; background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); animation-duration: 5s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-10px, -50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(-30px, -20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--neon-pink), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Section Styling */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--neon-pink);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 15px auto 0;
}

/* Services */
.services {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 255, 0.3);
    background: var(--bg-card-hover);
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--neon-pink);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Portfolio */
.portfolio {
    background: var(--bg-darker);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.portfolio-placeholder span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.portfolio-placeholder small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Stats */
.stats {
    background: var(--bg-dark);
    padding: 80px 5%;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus, .stat-percent {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-cyan);
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Pricing */
.pricing {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--neon-pink);
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.1) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    background: var(--gradient-neon);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--bg-dark);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.pricing-amount {
    margin-bottom: 30px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.pricing-amount .price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-amount .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features .check {
    color: var(--neon-cyan);
    font-weight: bold;
}

/* Testimonial */
.testimonial {
    background: var(--bg-darker);
    padding: 100px 5%;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 0;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 20px 0 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    background: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.info-card h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.info-card a,
.info-card p {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
}

.info-card a:hover {
    color: var(--neon-cyan);
}

/* ============================================
   INACTIVITY WARNING TIMELINE
   ============================================ */

.inactivity-warning {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}

.inactivity-warning h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.warning-timeline {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.warning-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.warning-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 200, 0, 0.3);
}

.warning-item.warning-danger {
    border-color: rgba(255, 50, 50, 0.5);
    background: rgba(255, 50, 50, 0.1);
}

.warning-item.warning-danger:hover {
    border-color: rgba(255, 50, 50, 0.8);
}

.warning-time {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: #ffcc00;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.warning-danger .warning-time {
    color: #ff3232;
}

.warning-thought {
    display: block;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

.warning-danger .warning-thought {
    color: #ff6b6b;
}

/* ============================================
   SOCIAL MEDIA MAIN SECTION
   ============================================ */

.social-media-main {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.sm-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.value-prop {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-prop h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.value-prop p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Comparison Table */
.sm-comparison {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    overflow-x: auto;
}

.sm-comparison h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.comparison-table {
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row.header {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 0, 255, 0.3);
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.comparison-row span:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-row span:nth-child(2) {
    color: var(--text-muted);
}

.comparison-row span.highlight {
    color: var(--neon-cyan);
    font-weight: 500;
}

.comparison-row.header span.highlight {
    color: var(--neon-pink);
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .comparison-row.header {
        display: none;
    }

    .comparison-row span:first-child {
        background: rgba(255, 0, 255, 0.1);
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .warning-timeline {
        flex-direction: column;
        align-items: center;
    }

    .warning-item {
        max-width: 100%;
    }
}

/* ============================================
   PHOTOSHOOT VS AI CALLOUT
   ============================================ */

.photoshoot-callout {
    max-width: 1000px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.photoshoot-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.photoshoot-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.photoshoot-content > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.photoshoot-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.photoshoot-traditional,
.photoshoot-ai {
    padding: 20px;
    border-radius: 12px;
}

.photoshoot-traditional {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
}

.photoshoot-ai {
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid rgba(0, 255, 100, 0.3);
}

.photoshoot-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.photoshoot-traditional .photoshoot-label {
    color: #ff6b6b;
}

.photoshoot-ai .photoshoot-label {
    color: #00ff64;
}

.photoshoot-traditional ul,
.photoshoot-ai ul {
    list-style: none;
}

.photoshoot-traditional li,
.photoshoot-ai li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.photoshoot-traditional li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.photoshoot-ai li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff64;
    font-weight: bold;
}

.photoshoot-note {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-style: italic;
    padding: 15px 20px;
    background: rgba(255, 0, 255, 0.1);
    border-left: 3px solid var(--neon-pink);
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {
    .photoshoot-callout {
        flex-direction: column;
        padding: 25px;
    }

    .photoshoot-comparison {
        grid-template-columns: 1fr;
    }

    .photoshoot-icon {
        font-size: 2.5rem;
    }
}

/* ============================================
   LOCAL MATTERS SECTION
   ============================================ */

.local-matters {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a0a2e 100%);
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.local-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.local-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
}

.local-card.local-warning {
    border-color: rgba(255, 200, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.1) 0%, var(--bg-card) 100%);
    grid-column: span 2;
}

@media (max-width: 768px) {
    .local-card.local-warning {
        grid-column: span 1;
    }
}

.local-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.local-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.local-warning h3 {
    color: #ffcc00;
}

.local-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.local-rules {
    list-style: none;
    margin-bottom: 20px;
}

.local-rules li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.local-rules li:last-child {
    border-bottom: none;
}

.rule-no {
    color: #ff4444;
    font-weight: 700;
    font-family: var(--font-display);
}

.local-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 200, 0, 0.2);
}

.local-highlight {
    color: var(--neon-cyan) !important;
    font-weight: 600;
    font-style: italic;
}

/* Local CTA Box */
.local-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
}

.local-cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
}

.local-cta-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.local-cta-box .highlight-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Other Services Label */
.other-services .section-header .section-tag {
    background: rgba(100, 100, 100, 0.2);
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 5% 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-text-container {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
        width: 300px;
        height: 300px;
    }

    .sun-circle {
        width: 150px;
        height: 150px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .portfolio-item.large,
    .portfolio-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 50px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    blockquote {
        font-size: 1.2rem;
    }

    /* Fix phone mockup and notifications on mobile */
    .hero-visual {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .phone-mockup .notification {
        display: none;
    }

    .ai-callout {
        position: static;
        margin-top: 30px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Service Links */
.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--neon-pink);
}

/* Problem Stats Section */
.problem-stats {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 80px 5%;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.stat-negative {
    position: relative;
}

.stat-negative .stat-number {
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-negative .stat-percent,
.stat-negative .stat-currency {
    color: #ff6b6b;
}

.stat-source {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

/* AI Phone Section */
.ai-phone {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.roi-box {
    background: linear-gradient(135deg, rgba(0, 255, 100, 0.1) 0%, rgba(0, 200, 100, 0.05) 100%);
    border: 1px solid rgba(0, 255, 100, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto 60px;
    max-width: 1000px;
    text-align: center;
}

.roi-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #00ff64;
    margin-bottom: 30px;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.roi-stat {
    text-align: center;
}

.roi-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: #00ff64;
    display: block;
}

.roi-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.roi-source {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 20px;
    font-style: italic;
}

.phone-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.tier-ideal {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

/* Customization Box */
.customization-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.customization-box h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.custom-item {
    padding: 20px;
    background: rgba(255, 0, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--neon-pink);
}

.custom-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.custom-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Automation Section */
.automation {
    background: var(--bg-darker);
}

.featured-tool {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 60px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    align-items: center;
}

.tool-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.tool-subtitle {
    color: var(--neon-cyan);
    font-size: 1rem;
    margin-bottom: 20px;
}

.tool-content > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.tool-features {
    list-style: none;
    margin-bottom: 25px;
}

.tool-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tool-features li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

.counties-supported {
    background: rgba(0, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.counties-supported strong {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.county-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    margin: 3px;
}

.tool-video {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.tool-video iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 2px dashed rgba(255, 0, 255, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 255, 0.15);
}

.play-button {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 10px;
}

.video-placeholder p {
    color: var(--text-primary);
    font-weight: 600;
}

.video-placeholder small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.auto-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.auto-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
}

.auto-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.auto-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.auto-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.clients-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.clients-note p {
    color: var(--text-secondary);
}

.clients-note strong {
    color: var(--neon-cyan);
}

/* Portfolio Note */
.portfolio-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 0, 255, 0.05);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Select Dropdown Styling */
.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff00ff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.1);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .featured-tool {
        grid-template-columns: 1fr;
    }

    .tool-video {
        order: -1;
    }
}

@media (max-width: 768px) {
    .roi-stats {
        grid-template-columns: 1fr;
    }

    .phone-pricing-grid {
        grid-template-columns: 1fr;
    }

    .custom-grid {
        grid-template-columns: 1fr;
    }

    .automation-grid {
        grid-template-columns: 1fr;
    }

    .tool-video iframe {
        height: 200px;
    }

    .featured-tool {
        padding: 25px 15px;
        gap: 30px;
    }
}

/* ===================================================================
   WEBSITE AUDIT IMPROVEMENTS - UX/UI ENHANCEMENTS
   =================================================================== */

/* Service-Specific Accent Colors (Updated from Audit) */
:root {
    /* Social Media Service - Growth Green */
    --service-social: #5cb85c;
    --service-social-glow: 0 0 20px rgba(92, 184, 92, 0.4);

    /* AI Phone Service - Premium Purple */
    --service-phone: #8b5cf6;
    --service-phone-glow: 0 0 20px rgba(139, 92, 246, 0.4);

    /* Automation Service - Trust Blue */
    --service-automation: #4a90d9;
    --service-automation-glow: 0 0 20px rgba(74, 144, 217, 0.4);
}

/* Apply service colors to respective sections */
.social-media-main {
    border-top: 3px solid var(--service-social);
}

.social-media-main .section-tag {
    color: var(--service-social);
    border-color: var(--service-social);
}

.websites {
    border-top: 3px solid var(--gold-accent);
}

.websites .section-tag {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.automation {
    border-top: 3px solid var(--service-automation);
}

.automation .section-tag {
    color: var(--service-automation);
    border-color: var(--service-automation);
}

/* ===================================================================
   CLIENT LOGOS SECTION
   =================================================================== */
.client-logos {
    padding: 60px 5%;
    background: rgba(15, 15, 25, 0.5);
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logos-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 30px;
    opacity: 0.8;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.logo-placeholder span {
    font-size: 2rem;
}

.logo-placeholder small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ===================================================================
   FOUNDER SECTION
   =================================================================== */
.founder-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(25, 15, 35, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(191, 0, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image {
    position: relative;
}

.founder-photo-frame {
    position: relative;
    animation: founderFloat 6s ease-in-out infinite;
}

@keyframes founderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.founder-photo-inner {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 3px solid rgba(255, 0, 255, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 255, 0.2),
        inset 0 0 40px rgba(255, 0, 255, 0.1);
    position: relative;
}

.founder-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    text-align: center;
}

.avatar-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.avatar-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-neon);
    color: var(--bg-dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5); }
}

.founder-content {
    max-width: 650px;
}

.founder-story {
    margin-top: 30px;
}

.founder-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 25px;
}

.founder-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.founder-why {
    background: rgba(255, 0, 255, 0.05);
    border-left: 4px solid var(--neon-pink);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.founder-why h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.founder-why ul {
    list-style: none;
    padding: 0;
}

.founder-why li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    color: var(--text-secondary);
}

.founder-why li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-size: 1.2rem;
}

.founder-cta-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 25px;
}

.founder-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .founder-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .founder-content {
        max-width: 100%;
    }

    .founder-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .founder-section {
        padding: 80px 5%;
    }

    .founder-image {
        max-width: 280px;
    }

    .founder-lead {
        font-size: 1.1rem;
    }
}

/* ===================================================================
   STICKY MOBILE CTA
   =================================================================== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(0deg, var(--bg-darker) 0%, rgba(10, 10, 15, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--neon-pink);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideUpIn 0.5s ease-out;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-sticky {
    width: 100%;
    justify-content: center;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Show sticky button only on mobile after scrolling past hero */
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 80px; /* Prevent content from hiding behind sticky button */
    }
}

/* ===================================================================
   ENHANCED PRICING CARDS
   =================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Unique visual styling for each tier */
.pricing-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03) 0%, rgba(15, 15, 25, 0.9) 100%);
    border-color: rgba(0, 255, 255, 0.3);
}

.pricing-card:nth-child(2).featured {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08) 0%, rgba(15, 15, 25, 0.95) 100%);
    border: 3px solid var(--neon-pink);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.3);
}

.pricing-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(15, 15, 25, 0.9) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
    box-shadow: 0 25px 70px rgba(255, 0, 255, 0.5);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-neon);
    color: var(--bg-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Distinct pricing amounts */
.pricing-amount {
    display: flex;
    align-items: flex-start;
    margin: 20px 0 30px;
}

.pricing-card:nth-child(1) .pricing-amount {
    color: var(--service-phone);
}

.pricing-card:nth-child(2).featured .pricing-amount {
    color: var(--neon-pink);
    font-size: 1.2em;
}

.pricing-card:nth-child(3) .pricing-amount {
    color: var(--service-automation);
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
    margin-top: 8px;
}

.price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    align-self: flex-end;
    margin-left: 5px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }
}

/* ===================================================================
   INCREASED WHITESPACE & BREATHING ROOM
   =================================================================== */
section {
    padding: 120px 5%; /* Increased from 100px */
}

.section-header {
    margin-bottom: 70px; /* Increased from 50px */
}

.section-title {
    margin: 20px 0; /* More vertical spacing */
}

.section-subtitle {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Add breathing room between major sections */
.problem-stats,
.raleigh-drive,
.local-matters,
.social-media-main,
.ai-phone,
.automation,
.portfolio,
.pricing {
    margin-top: 60px;
}

/* ===================================================================
   IMPROVED CONTACT FORM HIERARCHY
   =================================================================== */
.contact-form {
    background: rgba(15, 15, 25, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 30px; /* Increased spacing */
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin-bottom: 12px; /* Increased from 8px */
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px; /* Increased padding */
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1.05rem; /* Slightly larger text */
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 0, 255, 0.15);
}

.btn-full {
    margin-top: 20px;
    padding: 20px 50px;
    font-size: 1.15rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 35px 25px;
    }
}

/* ===================================================================
   SCROLL ANIMATIONS & MICRO-INTERACTIONS
   =================================================================== */
/* Fade-in-up animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply scroll animation to major sections */
.problem-stats,
.local-matters,
.social-media-main,
.ai-phone,
.automation,
.portfolio,
.pricing,
.contact,
.founder-section,
.client-logos {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-play-state: paused;
}

/* Trigger animations when sections are in view (handled by JS) */
.animate-in {
    animation-play-state: running;
}

/* Hover micro-interactions */
.value-prop,
.local-card,
.auto-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-prop:hover,
.local-card:hover,
.auto-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.2);
}

/* Button hover improvements */
.btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Portfolio item hover effects */
.portfolio-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Stats counter animation */
.stat-number {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--neon-cyan);
}

/* ===================================================================
   WEBSITE BUILDS SECTION
   =================================================================== */
.websites {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.website-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
}

.website-pricing {
    margin: 60px auto;
    max-width: 1400px;
}

.website-pricing h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.website-note {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    padding: 25px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.website-note p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.website-note strong {
    color: var(--gold-accent);
}

.website-includes {
    margin: 60px auto 0;
    max-width: 1200px;
}

.website-includes h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .website-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .website-value-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
   GUARANTEE SECTION
   =================================================================== */
.guarantee {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05) 0%, transparent 100%);
    border-top: 2px solid rgba(212, 168, 83, 0.2);
    border-bottom: 2px solid rgba(212, 168, 83, 0.2);
}

.guarantee-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.guarantee-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.guarantee-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.guarantee-icon {
    font-size: 2rem;
    color: var(--gold-accent);
    font-weight: bold;
}

.guarantee-item span:last-child {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guarantee-title {
        font-size: 2rem;
    }
}

/* ===================================================================
   FAQ SECTION
   =================================================================== */
.faq {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 25px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 5px 20px rgba(212, 168, 83, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================================================
   END OF AUDIT IMPROVEMENTS
   =================================================================== */

.raleigh-drive {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg,
        #0a0a14 0%,
        #1a0a2e 30%,
        #2d1b4e 60%,
        #ff6b35 85%,
        #ff00ff 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drive-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Synthwave Sun */
.synth-sun {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: linear-gradient(180deg, #ff6b35 0%, #ff00ff 100%);
    border-radius: 300px 300px 0 0;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(255, 107, 53, 0.5),
        0 0 120px rgba(255, 0, 255, 0.3);
    animation: sunPulse 4s ease-in-out infinite;
}

.sun-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sun-lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 8px;
    background: #0a0a14;
}

.sun-lines span:nth-child(1) { bottom: 20%; }
.sun-lines span:nth-child(2) { bottom: 35%; height: 10px; }
.sun-lines span:nth-child(3) { bottom: 50%; height: 12px; }
.sun-lines span:nth-child(4) { bottom: 65%; height: 14px; }
.sun-lines span:nth-child(5) { bottom: 80%; height: 16px; }

@keyframes sunPulse {
    0%, 100% {
        box-shadow:
            0 0 60px rgba(255, 107, 53, 0.5),
            0 0 120px rgba(255, 0, 255, 0.3);
    }
    50% {
        box-shadow:
            0 0 80px rgba(255, 107, 53, 0.7),
            0 0 160px rgba(255, 0, 255, 0.5);
    }
}

/* Grid Road */
.grid-road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg, transparent 0%, #0a0a14 20%);
    perspective: 400px;
    overflow: hidden;
}

.road-lines {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 48px,
            rgba(255, 0, 255, 0.4) 48px,
            rgba(255, 0, 255, 0.4) 50px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 48px,
            rgba(0, 255, 255, 0.3) 48px,
            rgba(0, 255, 255, 0.3) 50px
        );
    transform: rotateX(60deg);
    transform-origin: center bottom;
    animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 50px, 0 50px;
    }
}

/* Synthwave Chrome Text Effect */
.synthwave-text {
    text-align: center;
    margin-top: -10px;
    position: relative;
    z-index: 5;
}

.chrome-text {
    display: block;
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 20%,
        #87ceeb 25%,
        #00d4ff 35%,
        #ff00ff 50%,
        #ff6b00 55%,
        #ff00ff 65%,
        #00d4ff 75%,
        #87ceeb 85%,
        #fff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 0 rgba(0,0,0,0.8)) drop-shadow(0 0 15px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 30px rgba(255, 0, 255, 0.4));
    animation: chromeShine 3s ease-in-out infinite;
}

@keyframes chromeShine {
    0%, 100% {
        filter: drop-shadow(0 2px 0 rgba(0,0,0,0.8)) drop-shadow(0 0 15px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 30px rgba(255, 0, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 2px 0 rgba(0,0,0,0.8)) drop-shadow(0 0 25px rgba(0, 212, 255, 0.9)) drop-shadow(0 0 50px rgba(255, 0, 255, 0.6));
    }
}

.script-text {
    display: block;
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: #ff00ff;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff,
        0 0 40px #ff00ff;
    margin-top: 0;
    letter-spacing: 2px;
}

/* Raleigh Skyline */
.skyline-container {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    z-index: 10;
    animation: skylineAppear 1s ease-out forwards, skylineFloat 6s ease-in-out infinite 1s;
}

.raleigh-skyline {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5));
}

.skyline-path {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawSkyline 4s ease-out forwards;
}

@keyframes drawSkyline {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes skylineAppear {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes skylineFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Building accent animations */
.building-accent {
    opacity: 0;
    animation: accentPulse 2s ease-in-out infinite;
}

.building-accent:nth-child(1) { animation-delay: 0s; }
.building-accent:nth-child(2) { animation-delay: 0.5s; }
.building-accent:nth-child(3) { animation-delay: 1s; }
.building-accent:nth-child(4) { animation-delay: 1.5s; }

@keyframes accentPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Window lights twinkle */
.window-lights rect {
    animation: windowTwinkle 3s ease-in-out infinite;
}

.window-lights rect:nth-child(1) { animation-delay: 0s; }
.window-lights rect:nth-child(2) { animation-delay: 0.4s; }
.window-lights rect:nth-child(3) { animation-delay: 0.8s; }
.window-lights rect:nth-child(4) { animation-delay: 1.2s; }
.window-lights rect:nth-child(5) { animation-delay: 1.6s; }
.window-lights rect:nth-child(6) { animation-delay: 2s; }
.window-lights rect:nth-child(7) { animation-delay: 2.4s; }

@keyframes windowTwinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Drive Stats */
.drive-stats {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 20;
}

.drive-stat {
    position: absolute;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 10px;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: statReveal 0.8s ease-out forwards;
}

.stat-left {
    left: 5%;
}

.stat-right {
    right: 5%;
}

.drive-stat[data-delay="0"] { animation-delay: 0.5s; top: 5%; }
.drive-stat[data-delay="1"] { animation-delay: 1.5s; top: 25%; }
.drive-stat[data-delay="2"] { animation-delay: 2.5s; top: 45%; }
.drive-stat[data-delay="3"] { animation-delay: 3.5s; top: 65%; }

@keyframes statReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.drive-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.drive-stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
    max-width: 200px;
}

/* Drive CTA */
.drive-cta {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 25;
    opacity: 0;
    animation: ctaReveal 1s ease-out forwards 4s;
}

@keyframes ctaReveal {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.drive-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.drive-cta .highlight {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drive-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

/* Responsive */
@media (max-width: 992px) {
    .synth-sun {
        width: 200px;
        height: 100px;
        bottom: 30%;
    }

    .skyline-container {
        width: 95%;
        bottom: 25%;
    }

    .drive-stat {
        padding: 15px 20px;
    }

    .drive-stat-number {
        font-size: 1.8rem;
    }

    .drive-stat-label {
        font-size: 0.75rem;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .drive-stats {
        display: none;
    }

    .drive-cta {
        bottom: 55%;
        padding: 0 20px;
    }

    .drive-cta h2 {
        font-size: 1.5rem;
    }

    .drive-cta p {
        font-size: 0.9rem;
    }

    .synth-sun {
        width: 150px;
        height: 75px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
