/* ==================================
   GEO LABS - BRANDFLOW STYLE
   Enterprise-Grade Dark Theme
   ================================== */

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

:root {
    /* BrandFlow Color Palette */
    --navy-dark: #0B1628;
    --navy-medium: #0F1C3F;
    --navy-light: #1A2845;
    --neon-green: #C4F82A;
    --neon-green-hover: #D4FF3A;
    --white: #FFFFFF;
    --gray-light: rgba(255, 255, 255, 0.7);
    --gray-medium: rgba(255, 255, 255, 0.5);
    --gray-dark: rgba(255, 255, 255, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
    zoom: 0.825;
}

@supports not (zoom: 1) {
    html {
        transform: scale(0.825);
        transform-origin: top center;
    }

    body {
        width: calc(100% / 0.825);
        transform-origin: top center;
    }
}

body {
    font-family: var(--font-primary);
    background: var(--navy-dark);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Premium Animated Background Layer 1 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 1400px 1100px at 10% 15%, rgba(99, 102, 241, 0.35) 0%, rgba(99, 102, 241, 0.12) 35%, transparent 65%),
        radial-gradient(ellipse 1200px 900px at 90% 65%, rgba(196, 248, 42, 0.25) 0%, rgba(196, 248, 42, 0.08) 40%, transparent 65%),
        radial-gradient(circle 1000px at 50% 85%, rgba(139, 92, 246, 0.28) 0%, rgba(139, 92, 246, 0.08) 45%, transparent 65%);
    animation: backgroundMove1 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Premium Animated Background Layer 2 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 1100px 800px at 75% 25%, rgba(16, 185, 129, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 900px 700px at 25% 75%, rgba(236, 72, 153, 0.15) 0%, transparent 55%),
        radial-gradient(circle 800px at 60% 40%, rgba(59, 130, 246, 0.18) 0%, transparent 60%);
    animation: backgroundMove2 16s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundMove1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translate(8%, -6%) scale(1.15) rotate(2deg);
        opacity: 0.85;
    }
    50% {
        transform: translate(-5%, 7%) scale(0.9) rotate(-2deg);
        opacity: 1;
    }
    75% {
        transform: translate(-7%, -4%) scale(1.1) rotate(1deg);
        opacity: 0.9;
    }
}

@keyframes backgroundMove2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translate(-6%, 5%) scale(1.12) rotate(-3deg);
        opacity: 1;
    }
    66% {
        transform: translate(6%, -5%) scale(0.92) rotate(3deg);
        opacity: 0.85;
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* ==== NAVIGATION ==== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: rgba(11, 22, 40, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(196, 248, 42, 0.4));
}

.logo::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.15) 0%, rgba(196, 248, 42, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 12px 24px;
    background: var(--neon-green);
    color: var(--navy-dark);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.nav-cta:hover {
    background: var(--neon-green-hover);
    transform: translateY(-2px);
}

/* ==== HERO SECTION ==== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    width: 100%;
    gap: 80px;
}

.hero-content {
    position: relative;
    flex: 0 0 auto;
    max-width: 520px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rating-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 248, 42, 0.3);
    transform: translateY(-2px);
}

.rating-platform {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--neon-green);
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: var(--gray-medium);
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-title-line {
    display: block;
    color: var(--gray-light);
    font-weight: 600;
}

.hero-title-strike {
    position: relative;
    display: inline-block;
    color: inherit;
    padding: 0 8px;
}

.hero-title-strike::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgba(196, 248, 42, 0.2) 0%, rgba(196, 248, 42, 0.6) 50%, rgba(196, 248, 42, 0.2) 100%);
    transform: rotate(-3deg);
    border-radius: 999px;
}

.hero-title-geo {
    display: block;
    color: var(--neon-green);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 44px);
    letter-spacing: -0.04em;
    margin-top: 12px;
    text-shadow: 0 0 12px rgba(196, 248, 42, 0.45), 0 0 32px rgba(196, 248, 42, 0.2);
    animation: geoGlow 3s ease-in-out infinite;
}

.highlight {
    color: var(--neon-green);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    opacity: 0.5;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scaleX(1);
    }
}

@keyframes geoGlow {
    0%, 100% {
        text-shadow: 0 0 12px rgba(196, 248, 42, 0.35), 0 0 28px rgba(196, 248, 42, 0.18);
    }
    50% {
        text-shadow: 0 0 20px rgba(196, 248, 42, 0.6), 0 0 40px rgba(196, 248, 42, 0.35);
    }
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: var(--gray-light);
    margin-bottom: 28px;
    max-width: 100%;
}

.hero-subtitle strong {
    color: var(--neon-green);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, #C4F82A 0%, #D4FF3A 100%);
    color: var(--navy-dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    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::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D4FF3A 0%, #E5FF4A 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196, 248, 42, 0.4), 0 4px 12px rgba(196, 248, 42, 0.3);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.15) 0%, transparent 70%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: rgba(196, 248, 42, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 248, 42, 0.2);
    border-color: var(--neon-green-hover);
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-light);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Client Logos */
/* ==== CHATGPT DEMO MOCKUP ==== */
.chatgpt-demo {
    position: relative;
    animation: floatDemo 6s ease-in-out infinite;
    flex: 0 0 auto;
    width: 500px;
}

@keyframes floatDemo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.demo-window {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(196, 248, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-window:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(196, 248, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #FF5F57;
}

.dot-yellow {
    background: #FFBD2E;
}

.dot-green {
    background: #28C840;
}

.demo-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.demo-spacer {
    flex: 1;
}

.demo-content {
    padding: 20px;
    max-height: 480px;
    overflow-y: auto;
}

.demo-content::-webkit-scrollbar {
    width: 6px;
}

.demo-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.demo-content::-webkit-scrollbar-thumb {
    background: rgba(196, 248, 42, 0.3);
    border-radius: 3px;
}

.demo-message {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    animation: messageSlideIn 0.5s ease both;
}

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

.user-message {
    animation-delay: 0.3s;
}

.ai-message {
    animation-delay: 0.8s;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar {
    background: rgba(99, 102, 241, 0.2);
}

.ai-avatar {
    background: rgba(16, 163, 127, 0.2);
}

.message-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.ai-intro {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.citation-item {
    padding: 10px 14px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    transition: all 0.3s ease;
    animation: citationFadeIn 0.5s ease both;
}

@keyframes citationFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.citation-item:nth-child(2) { animation-delay: 1.2s; }
.citation-item:nth-child(3) { animation-delay: 1.4s; }
.citation-item:nth-child(4) { animation-delay: 1.6s; }
.citation-item:nth-child(5) { animation-delay: 1.8s; }
.citation-item:nth-child(6) { animation-delay: 2s; }

.citation-item.highlighted {
    background: rgba(196, 248, 42, 0.08);
    border: 1px solid rgba(196, 248, 42, 0.3);
    box-shadow:
        0 0 20px rgba(196, 248, 42, 0.15),
        inset 0 1px 0 rgba(196, 248, 42, 0.1);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(196, 248, 42, 0.15),
            inset 0 1px 0 rgba(196, 248, 42, 0.1);
    }
    50% {
        box-shadow:
            0 0 30px rgba(196, 248, 42, 0.3),
            inset 0 1px 0 rgba(196, 248, 42, 0.2);
    }
}

.citation-number {
    font-weight: 700;
    color: var(--neon-green);
    flex-shrink: 0;
}

.citation-content {
    flex: 1;
}

.citation-content strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.citation-content p {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.citation-source {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--neon-green);
    font-weight: 600;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 16px 24px;
    animation: typingFade 2s ease-in-out infinite;
}

@keyframes typingFade {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: rgba(196, 248, 42, 0.6);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.demo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.client-logos {
    margin-top: 100px;
    grid-column: 1 / -1;
}

.logos-label {
    font-size: 13px;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.logos-grid:hover {
    opacity: 0.8;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 1600px 1400px at 50% -15%, rgba(196, 248, 42, 0.28) 0%, rgba(196, 248, 42, 0.1) 25%, transparent 55%),
        radial-gradient(ellipse 1200px 1000px at -15% 35%, rgba(99, 102, 241, 0.25) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 60%),
        radial-gradient(ellipse 1400px 1100px at 115% 75%, rgba(139, 92, 246, 0.22) 0%, rgba(139, 92, 246, 0.06) 45%, transparent 60%),
        radial-gradient(ellipse 1000px 800px at 50% 110%, rgba(16, 185, 129, 0.18) 0%, transparent 55%),
        linear-gradient(180deg, #080F1C 0%, #0B1424 20%, #0D1A35 50%, var(--navy-medium) 80%, #131F3D 100%);
    animation: heroGradientMove 10s ease-in-out infinite alternate;
}

@keyframes heroGradientMove {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium grain texture overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: overlay;
}

/* Subtle vignette effect */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(180deg, transparent 0%, rgba(11, 22, 40, 0.6) 100%);
    pointer-events: none;
}


/* ==== SERVICES SECTION ==== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy-medium) 0%, #0E1B38 50%, var(--navy-medium) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 800px 600px at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at 20% 80%, rgba(196, 248, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(196, 248, 42, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 248, 42, 0.4);
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(196, 248, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 16px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.8;
}

/* ==== RESULTS SECTION ==== */
.results {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A1525 0%, var(--navy-dark) 50%, #0D1A35 100%);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 1000px 700px at 50% 50%, rgba(196, 248, 42, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: resultsGlow 8s ease-in-out infinite;
}

@keyframes resultsGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.result-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(196, 248, 42, 0.1) 0%, transparent 70%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
}

.result-card:hover::before {
    width: 300px;
    height: 300px;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 248, 42, 0.4);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(196, 248, 42, 0.1);
}

.result-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(196, 248, 42, 0.3);
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.result-detail {
    font-size: 13px;
    color: var(--gray-medium);
}

/* ==== CTA SECTION ==== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--navy-medium) 0%, #111D3A 50%, var(--navy-medium) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 1200px 800px at 50% 50%, rgba(196, 248, 42, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 800px 600px at 20% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.cta-subtitle strong {
    color: var(--neon-green);
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-medium);
}

/* ==== CASE STUDIES SECTION ==== */
.case-studies {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--navy-medium) 0%, #0A1525 50%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 1400px 900px at 20% 20%, rgba(196, 248, 42, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 1200px 800px at 80% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 1000px 700px at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: caseStudiesGlow 10s ease-in-out infinite;
}

@keyframes caseStudiesGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(196, 248, 42, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 248, 42, 0.3);
    transform: translateY(-8px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(196, 248, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Unique styling for each case study */

/* Barber Stories - Neon Green & Purple */
.case-study-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(196, 248, 42, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(196, 248, 42, 0.15);
}

.case-study-card:nth-child(1)::before {
    background: radial-gradient(circle at top left, rgba(196, 248, 42, 0.15) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
}

.case-study-card:nth-child(1):hover {
    border-color: rgba(196, 248, 42, 0.5);
    box-shadow:
        0 28px 56px rgba(196, 248, 42, 0.2),
        0 0 0 1px rgba(196, 248, 42, 0.3),
        inset 0 1px 0 rgba(196, 248, 42, 0.15);
}

.case-study-card:nth-child(1) .company-logo {
    filter: drop-shadow(0 0 20px rgba(196, 248, 42, 0.4));
}

.case-study-card:nth-child(1) .case-study-quote::before {
    color: #8B5CF6;
}

/* SmileLab - Cyan & Teal */
.case-study-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.15);
}

.case-study-card:nth-child(2)::before {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
}

.case-study-card:nth-child(2):hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow:
        0 28px 56px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(59, 130, 246, 0.15);
}

.case-study-card:nth-child(2) .company-logo {
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.case-study-card:nth-child(2) .case-study-author {
    color: #3B82F6;
}

.case-study-card:nth-child(2) .case-study-challenge h4,
.case-study-card:nth-child(2) .case-study-solution h4,
.case-study-card:nth-child(2) .case-study-results h4 {
    color: #10B981;
}

.case-study-card:nth-child(2) .case-study-solution li::before {
    color: #3B82F6;
}

.case-study-card:nth-child(2) .metric {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.case-study-card:nth-child(2) .metric:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.case-study-card:nth-child(2) .metric-value {
    color: #3B82F6;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.case-study-card:nth-child(2) .case-study-quote::before {
    color: #3B82F6;
}

/* Fusion Bistro - Pink & Orange */
.case-study-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-color: rgba(236, 72, 153, 0.15);
}

.case-study-card:nth-child(3)::before {
    background: radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.15) 0%, rgba(251, 146, 60, 0.08) 50%, transparent 70%);
}

.case-study-card:nth-child(3):hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow:
        0 28px 56px rgba(236, 72, 153, 0.25),
        0 0 0 1px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(236, 72, 153, 0.15);
}

.case-study-card:nth-child(3) .company-logo {
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
}

.case-study-card:nth-child(3) .case-study-author {
    color: #EC4899;
}

.case-study-card:nth-child(3) .case-study-challenge h4,
.case-study-card:nth-child(3) .case-study-solution h4,
.case-study-card:nth-child(3) .case-study-results h4 {
    color: #FB923C;
}

.case-study-card:nth-child(3) .case-study-solution li::before {
    color: #EC4899;
}

.case-study-card:nth-child(3) .metric {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(251, 146, 60, 0.25);
}

.case-study-card:nth-child(3) .metric:hover {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(251, 146, 60, 0.5);
    box-shadow: 0 8px 16px rgba(236, 72, 153, 0.3);
}

.case-study-card:nth-child(3) .metric-value {
    color: #EC4899;
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.4);
}

.case-study-card:nth-child(3) .case-study-quote::before {
    color: #EC4899;
}

/* Kowalski & Nowak Legal - Gold & Amber */
.case-study-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.15);
}

.case-study-card:nth-child(4)::before {
    background: radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.08) 50%, transparent 70%);
}

.case-study-card:nth-child(4):hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow:
        0 28px 56px rgba(245, 158, 11, 0.25),
        0 0 0 1px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(245, 158, 11, 0.15);
}

.case-study-card:nth-child(4) .company-logo {
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
}

.case-study-card:nth-child(4) .case-study-author {
    color: #F59E0B;
}

.case-study-card:nth-child(4) .case-study-challenge h4,
.case-study-card:nth-child(4) .case-study-solution h4,
.case-study-card:nth-child(4) .case-study-results h4 {
    color: #D97706;
}

.case-study-card:nth-child(4) .case-study-solution li::before {
    color: #F59E0B;
}

.case-study-card:nth-child(4) .metric {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(217, 119, 6, 0.25);
}

.case-study-card:nth-child(4) .metric:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.case-study-card:nth-child(4) .metric-value {
    color: #F59E0B;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.case-study-card:nth-child(4) .case-study-quote::before {
    color: #F59E0B;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-logo {
    flex-shrink: 0;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.company-location {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

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

.case-study-quote {
    font-size: 17px;
    line-height: 1.65;
    color: var(--white);
    font-style: italic;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.case-study-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    color: var(--neon-green);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.case-study-author {
    font-size: 14px;
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 28px;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
    margin-bottom: 24px;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-challenge p,
.case-study-solution p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-light);
}

.case-study-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-solution li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.case-study-solution li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.metric {
    background: rgba(196, 248, 42, 0.05);
    border: 1px solid rgba(196, 248, 42, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(196, 248, 42, 0.1);
    border-color: rgba(196, 248, 42, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(196, 248, 42, 0.2);
}

.metric-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 6px;
    line-height: 1;
    text-shadow: 0 0 12px rgba(196, 248, 42, 0.3);
}

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--gray-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Case Studies CTA */
.case-studies-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 248, 42, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.case-studies-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(196, 248, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.case-studies-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.case-studies-cta p {
    font-size: 17px;
    color: var(--gray-light);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.case-studies-cta .btn-primary {
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.contact-email {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(196, 248, 42, 0.5);
}

.contact-phone {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-light);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(196, 248, 42, 0.4);
}

/* ==== FOOTER ==== */
.footer {
    padding: 80px 0 40px;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-medium);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-medium);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-green);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
    }

    .chatgpt-demo {
        order: -1;
        width: 100%;
        max-width: 520px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .results-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .metric {
        padding: 16px 12px;
    }

    .metric-value {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .chatgpt-demo {
        display: none;
    }

    .client-logos {
        margin-top: 60px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-trust {
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .case-studies {
        padding: 80px 0;
    }

    .case-study-card {
        padding: 28px;
    }

    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .results-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-studies-cta {
        padding: 40px 24px;
    }

    .case-studies-cta h3 {
        font-size: 24px;
    }

    .case-studies-cta p {
        font-size: 15px;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease both;
}

.rating-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-ctas { animation-delay: 0.4s; }
.availability { animation-delay: 0.5s; }
.client-logos { animation-delay: 0.6s; }

/* ==== SUBPAGE STYLES ==== */
.subpage-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.subpage-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.subpage-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(196, 248, 42, 0.15);
    border: 1px solid rgba(196, 248, 42, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.subpage-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.subpage-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content blocks */
.subpage-content {
    padding: 80px 0;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-visual svg {
    max-width: 100%;
    height: auto;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.content-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--gray-light);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Process steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(196, 248, 42, 0.15);
    border: 1px solid rgba(196, 248, 42, 0.3);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.step strong {
    display: block;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.step p {
    font-size: 14px;
    color: var(--gray-medium);
    margin: 0;
}

/* Deliverables */
.deliverables {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deliverable {
    display: flex;
    align-items: center;
    gap: 14px;
}

.deliverable-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(196, 248, 42, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.deliverable span {
    font-size: 15px;
    color: var(--gray-light);
}

/* Tech grid */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tech-item {
    padding: 20px;
    background: rgba(196, 248, 42, 0.05);
    border: 1px solid rgba(196, 248, 42, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(196, 248, 42, 0.1);
    border-color: rgba(196, 248, 42, 0.3);
}

.tech-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.tech-desc {
    font-size: 13px;
    color: var(--gray-medium);
}

/* Notification types */
.notification-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notif-type {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notif-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(196, 248, 42, 0.15);
    border: 1px solid rgba(196, 248, 42, 0.3);
    border-radius: 10px;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.notif-type strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 2px;
}

.notif-type p {
    font-size: 13px;
    color: var(--gray-medium);
    margin: 0;
}

/* Analytics features */
.analytics-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.analytics-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(196, 248, 42, 0.05);
    border: 1px solid rgba(196, 248, 42, 0.15);
    border-radius: 10px;
}

.analytics-icon {
    flex-shrink: 0;
}

.analytics-item span {
    font-size: 14px;
    color: var(--gray-light);
}

/* Subpage CTA */
.subpage-cta {
    padding: 80px 0;
}

/* Responsive subpages */
@media (max-width: 900px) {
    .content-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-block.reverse {
        direction: ltr;
    }

    .subpage-title {
        font-size: 36px;
    }

    .subpage-subtitle {
        font-size: 17px;
    }

    .tech-grid,
    .analytics-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .subpage-hero {
        padding: 120px 0 60px;
    }

    .subpage-title {
        font-size: 28px;
    }

    .content-text h2 {
        font-size: 26px;
    }

    .contact-email {
        font-size: 22px;
    }

    .contact-phone {
        font-size: 18px;
    }
}

/* ==== PRIVACY NOTICE BAR ==== */
.privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(196, 248, 42, 0.2);
    padding: 20px;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-notice.hidden {
    transform: translateY(100%);
}

.privacy-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.privacy-notice-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.privacy-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.privacy-notice-text p {
    font-size: 14px;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.5;
}

.privacy-notice-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.privacy-notice-text a:hover {
    opacity: 0.8;
}

.privacy-notice-accept {
    padding: 12px 28px;
    background: var(--primary);
    color: var(--navy-dark);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.privacy-notice-accept:hover {
    background: #d4ff4a;
    transform: translateY(-1px);
}

.privacy-notice-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-light);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.privacy-notice-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .privacy-notice {
        padding: 16px;
    }

    .privacy-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .privacy-notice-text {
        flex-direction: column;
        gap: 12px;
    }

    .privacy-notice-close {
        position: absolute;
        top: 12px;
        right: 12px;
    }
}

/* ==== CONTACT WIDGET ==== */
.contact-widget {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9998;
}

.contact-widget-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C4F82A 0%, #9AE600 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(196, 248, 42, 0.4), 0 0 40px rgba(196, 248, 42, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--navy-dark);
}

.contact-widget-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(196, 248, 42, 0.5), 0 0 60px rgba(196, 248, 42, 0.3);
}

.contact-widget-toggle .widget-icon-close {
    display: none;
}

.contact-widget.open .contact-widget-toggle .widget-icon-chat {
    display: none;
}

.contact-widget.open .contact-widget-toggle .widget-icon-close {
    display: block;
}

.contact-widget-panel {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: rgba(11, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 248, 42, 0.2);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-widget.open .contact-widget-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-header {
    padding: 24px;
    background: linear-gradient(135deg, rgba(196, 248, 42, 0.15) 0%, rgba(196, 248, 42, 0.05) 100%);
    border-bottom: 1px solid rgba(196, 248, 42, 0.1);
}

.widget-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px 0;
}

.widget-header p {
    font-size: 13px;
    color: var(--gray-medium);
    margin: 0;
}

.widget-options {
    padding: 12px;
}

.widget-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.widget-option:last-child {
    margin-bottom: 0;
}

.widget-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.widget-option.whatsapp .widget-option-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.widget-option.email .widget-option-icon {
    background: rgba(196, 248, 42, 0.15);
    color: var(--primary);
}

.widget-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-option-text {
    flex: 1;
}

.widget-option-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.widget-option-subtitle {
    display: block;
    font-size: 13px;
    color: var(--gray-medium);
}

.widget-arrow {
    color: var(--gray-medium);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.widget-option:hover .widget-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

/* Widget responsive */
@media (max-width: 480px) {
    .contact-widget {
        bottom: 90px;
        right: 16px;
    }

    .contact-widget-toggle {
        width: 54px;
        height: 54px;
    }

    .contact-widget-panel {
        width: calc(100vw - 32px);
        right: -8px;
    }
}

/* Adjust widget position when privacy notice is visible */
.privacy-notice:not(.hidden) ~ .contact-widget {
    bottom: 180px;
}

@media (max-width: 768px) {
    .privacy-notice:not(.hidden) ~ .contact-widget {
        bottom: 220px;
    }
}

/* Footer privacy link */
.footer-privacy-link {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    margin-left: 24px;
}

.footer-privacy-link:hover {
    color: var(--primary);
}

/* ==== PRIVACY POLICY PAGE ==== */
.privacy-hero {
    padding-bottom: 60px;
}

.privacy-date {
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 20px;
}

.privacy-content {
    padding: 60px 0 100px;
}

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

.privacy-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.privacy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 28px 0 16px;
}

.privacy-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.privacy-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.privacy-section a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.privacy-section a:hover {
    opacity: 0.8;
}

.privacy-contact-box {
    background: rgba(196, 248, 42, 0.08);
    border: 1px solid rgba(196, 248, 42, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.privacy-contact-box p {
    margin-bottom: 8px;
}

.privacy-contact-box p:last-child {
    margin-bottom: 0;
}

.privacy-contact-box.final {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
}

.contact-method svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-method a {
    font-size: 16px;
    font-weight: 500;
}

/* Privacy purposes */
.privacy-purpose {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 12px;
}

.purpose-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 248, 42, 0.1);
    border-radius: 10px;
    color: var(--primary);
    flex-shrink: 0;
}

.privacy-purpose p {
    font-size: 14px;
    color: var(--gray-medium);
    margin: 0;
}

/* Cookie types */
.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cookie-type {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.cookie-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-badge.essential {
    background: rgba(196, 248, 42, 0.15);
    color: var(--primary);
}

.cookie-badge.analytics {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.cookie-badge.marketing {
    background: rgba(236, 72, 153, 0.15);
    color: #EC4899;
}

.cookie-type p {
    font-size: 14px;
    color: var(--gray-medium);
    margin: 0;
}

/* Rights grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.right-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.right-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 248, 42, 0.1);
    border-radius: 8px;
    color: var(--primary);
    flex-shrink: 0;
}

.right-item span {
    font-size: 14px;
    color: var(--gray-light);
}

.rights-note {
    font-size: 14px;
    color: var(--gray-medium);
    padding: 16px;
    background: rgba(196, 248, 42, 0.05);
    border-radius: 10px;
}

@media (max-width: 600px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .privacy-purpose {
        flex-direction: column;
        text-align: center;
    }

    .purpose-icon {
        margin: 0 auto;
    }
}
