/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;
    --bg-card: #111118;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e8;
    --text-muted: #b0b0c0;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-cyan: #22d3ee;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --gradient-start: #3b82f6;
    --gradient-mid: #8b5cf6;
    --gradient-end: #06b6d4;
    --border-color: rgba(255, 255, 255, 0.06);
    --glow-blue: rgba(59, 130, 246, 0.4);
    --glow-purple: rgba(139, 92, 246, 0.4);
    --glow-cyan: rgba(6, 182, 212, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ============================================
   ANIMATED BACKGROUND - Floating Orbs
   ============================================ */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    top: 30%;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 30s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 60%;
    left: -100px;
    animation-delay: -7s;
    animation-duration: 28s;
}

.orb-5 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
    top: 10%;
    right: 20%;
    animation-delay: -15s;
    animation-duration: 35s;
}

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

/* Noise texture overlay for depth */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
}

/* Grid pattern overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.02;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px;
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }
.fade-in-delay-5 { animation-delay: 0.5s; }
.fade-in-delay-6 { animation-delay: 0.6s; }

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

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* Scale in animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo img {
    height: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--glow-blue));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

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

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

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

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
    flex: 1;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

/* ============================================
   BIG BOLD 3D GRADIENT TEXT - Apple Keynote Style
   ============================================ */
.gradient-text {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
    padding-bottom: 0.1em;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #60a5fa 20%,
        #a855f7 40%,
        #ec4899 60%,
        #22d3ee 80%,
        #ffffff 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite, textGlow 4s ease-in-out infinite alternate;
    position: relative;
    margin-bottom: 1.5rem;
}

/* 3D shadow effect */
.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(139, 92, 246, 0.3) 50%,
        rgba(6, 182, 212, 0.3) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(30px);
    animation: gradientFlow 8s ease infinite;
}

.gradient-text-subtle {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #60a5fa 30%,
        #a855f7 70%,
        #ffffff 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease infinite;
}

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

@keyframes textGlow {
    from {
        filter: drop-shadow(0 0 60px rgba(59, 130, 246, 0.4))
                drop-shadow(0 0 120px rgba(139, 92, 246, 0.2));
    }
    to {
        filter: drop-shadow(0 0 80px rgba(139, 92, 246, 0.5))
                drop-shadow(0 0 160px rgba(6, 182, 212, 0.3));
    }
}

/* Floating animation for hero elements */
.float-animation {
    animation: gentleFloat 6s ease-in-out infinite;
}

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

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* Animated line under subtitle */
.subtitle-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    margin: 2rem auto 0;
    border-radius: 2px;
    animation: expandLine 1s ease 0.6s forwards, shimmer 3s ease-in-out infinite;
    transform: scaleX(0);
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 8rem 5%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 20%, var(--bg-secondary) 80%, transparent 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* ============================================
   SERVICE CARDS - Enhanced Interactions
   ============================================ */
.service-card {
    background: linear-gradient(135deg, rgba(17, 17, 24, 0.8) 0%, rgba(17, 17, 24, 0.4) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Animated gradient border */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, transparent 40%, var(--gradient-start) 50%, var(--gradient-mid) 60%, transparent 70%, transparent 100%);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderRotate 4s linear infinite paused;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}

/* Glow effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.service-card:hover::after {
    opacity: 0.1;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.service-card:hover .service-icon::before {
    filter: blur(25px);
    opacity: 0.8;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-card:hover h3 {
    background: linear-gradient(90deg, var(--text-primary), var(--accent-blue-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 10rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content > p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* ============================================
   CTA BUTTON - Spectacular Effect
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border: none;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 25px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.4s forwards, buttonPulse 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow:
            0 4px 25px rgba(59, 130, 246, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 4px 40px rgba(59, 130, 246, 0.6),
            0 0 60px rgba(139, 92, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* Shine effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 10px 50px rgba(59, 130, 246, 0.5),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.01);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.contact-content {
    text-align: center;
    max-width: 650px;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(17, 17, 24, 0.9) 0%, rgba(17, 17, 24, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3.5rem;
    margin-bottom: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--gradient-start), transparent 30%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(135deg, rgba(17, 17, 24, 0.95) 0%, rgba(17, 17, 24, 0.8) 100%);
    border-radius: 27px;
    z-index: 0;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.contact-card:hover::before {
    opacity: 0.3;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(59, 130, 246, 0.1);
}

.email-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.contact-card:hover .email-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.email-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.contact-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--accent-blue-light), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue-light), var(--accent-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.email-link:hover::after {
    transform: scaleX(1);
}

.response-time {
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-info {
    text-align: left;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(10, 10, 16, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    color: var(--text-secondary);
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.contact-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--glow-blue);
}

.contact-info li:hover {
    color: var(--text-primary);
    padding-left: 2rem;
}

.contact-info li:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 20px var(--glow-blue);
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-section {
    padding: 4rem 5%;
}

.privacy-content {
    max-width: 850px;
    margin: 0 auto;
}

.privacy-content h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 0.95rem;
}

.policy-article {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.policy-article:nth-child(1) { animation-delay: 0.1s; }
.policy-article:nth-child(2) { animation-delay: 0.15s; }
.policy-article:nth-child(3) { animation-delay: 0.2s; }
.policy-article:nth-child(4) { animation-delay: 0.25s; }
.policy-article:nth-child(5) { animation-delay: 0.3s; }
.policy-article:nth-child(6) { animation-delay: 0.35s; }
.policy-article:nth-child(7) { animation-delay: 0.4s; }
.policy-article:nth-child(8) { animation-delay: 0.45s; }
.policy-article:nth-child(9) { animation-delay: 0.5s; }
.policy-article:nth-child(10) { animation-delay: 0.55s; }

.policy-article:last-child {
    border-bottom: none;
}

.policy-article h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, var(--accent-blue-light), var(--accent-cyan), var(--text-primary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease infinite;
}

.policy-article h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.75rem 0 0.85rem;
}

.policy-article p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.85;
}

.policy-article ul {
    list-style: none;
    margin: 1rem 0;
}

.policy-article li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.75;
}

.policy-article li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    box-shadow: 0 0 8px var(--glow-blue);
}

.policy-article a {
    color: var(--accent-blue-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.policy-article a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.policy-article a:hover {
    color: var(--accent-cyan);
}

.policy-article a:hover::after {
    transform: scaleX(1);
}

.disclaimer {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, transparent 0%, var(--bg-secondary) 30%);
    border-top: 1px solid var(--border-color);
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.footer-content > img {
    transition: all 0.4s ease;
}

.footer-content > img:hover {
    filter: drop-shadow(0 0 20px var(--glow-blue));
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::after {
    transform: scaleX(1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero {
        min-height: auto;
        padding: 5rem 5% 4rem;
    }

    .orb {
        filter: blur(60px);
        opacity: 0.3;
    }

    .orb-1, .orb-2, .orb-5 {
        width: 300px;
        height: 300px;
    }

    .orb-3, .orb-4 {
        width: 250px;
        height: 250px;
    }

    .services {
        padding: 5rem 5%;
    }

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

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card:hover {
        transform: translateY(-8px);
    }

    .cta {
        padding: 6rem 5%;
    }

    .contact-card {
        padding: 2.5rem;
    }

    .privacy-section {
        padding: 3rem 5%;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .gradient-text {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    .gradient-text-subtle {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.05rem;
    }

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

    .service-card h3 {
        font-size: 1.25rem;
    }

    .email-link {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .email-icon {
        width: 70px;
        height: 70px;
    }
}


/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 1s forwards, bounceDown 2s ease-in-out infinite 1.5s;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator .chevron {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: chevronPulse 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(10px);
    }
    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

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


/* Custom cursor removed */

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .orb,
    .particle {
        animation: none;
    }

    .gradient-text,
    .gradient-text-subtle {
        animation: none;
    }

    .cursor-dot {
        display: none;
    }
}
