/* ============================================
   JOUTRIX STUDIO - NEON GRADIENT STYLESHEET
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --neon-purple: #A030FF;
    --neon-purple-bright: #D350FF;
    --deep-ultraviolet: #4A008F;
    --deep-ultraviolet-bright: #6A00C8;
    --gradient-blue-start: #1A6BFF;
    --gradient-blue-end: #0098FF;
    
    /* Secondary Colors */
    --pastel-purple: #C9A9FF;
    --light-lavender: #E0B7FF;
    --gradient-lilac-start: #B58DFF;
    --gradient-lilac-end: #8FD1FF;
    
    /* Neutral Colors */
    --dark-graphite: #181A1F;
    --dark-bg: #111216;
    --white: #FFFFFF;
    --text-gray: rgba(255, 255, 255, 0.8);
    --text-gray-light: rgba(255, 255, 255, 0.6);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--gradient-blue-start) 0%, var(--neon-purple) 50%, var(--neon-purple-bright) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--neon-purple) 0%, var(--gradient-blue-end) 100%);
    --gradient-background: linear-gradient(180deg, var(--deep-ultraviolet) 0%, var(--dark-bg) 50%, var(--deep-ultraviolet-bright) 100%);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 120px 0;
    --section-padding-mobile: 80px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 18, 22, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(160, 48, 255, 0.1);
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.logo-img {
    height: 36px;
    width: auto;
}

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: var(--white) !important;
    font-weight: 600;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 48, 255, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: var(--dark-bg);
}

.hero-gradient-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 48, 255, 0.3) 0%, transparent 70%);
    filter: blur(100px);
    top: -300px;
    left: -300px;
    animation: gradientMove1 20s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 107, 255, 0.3) 0%, transparent 70%);
    filter: blur(100px);
    bottom: -250px;
    right: -250px;
    animation: gradientMove2 25s ease-in-out infinite;
}

.hero-gradient-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 80, 255, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    top: 50%;
    right: 10%;
    animation: gradientMove3 30s ease-in-out infinite;
}

@keyframes gradientMove1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

@keyframes gradientMove2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-80px, -80px) scale(1.1);
    }
}

@keyframes gradientMove3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.15);
    }
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(160, 48, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(160, 48, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
    animation: meshMove 30s linear infinite;
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(160, 48, 255, 0.1);
    border: 1px solid rgba(160, 48, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-purple);
    animation: pulseDot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.title-word {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: wordFadeIn 0.8s ease forwards;
}

.title-word-1 {
    animation-delay: 0.1s;
}

.title-word-2 {
    animation-delay: 0.2s;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.title-word-3 {
    animation-delay: 0.3s;
}

.title-word-4 {
    animation-delay: 0.4s;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.title-word-5 {
    animation-delay: 0.5s;
}

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

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* General Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(160, 48, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(160, 48, 255, 0.6);
}

.btn-secondary {
    background: rgba(160, 48, 255, 0.1);
    border: 2px solid rgba(160, 48, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(160, 48, 255, 0.2);
    border-color: var(--neon-purple);
    box-shadow: 0 0 24px rgba(160, 48, 255, 0.3);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(160, 48, 255, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(160, 48, 255, 0.6);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: rgba(160, 48, 255, 0.1);
    border: 2px solid rgba(160, 48, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(160, 48, 255, 0.2);
    border-color: var(--neon-purple);
    box-shadow: 0 0 24px rgba(160, 48, 255, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.stat-box {
    text-align: left;
}

.stat-box .stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-box .stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Right - Visual */
.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Central Rings */
.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
}

.center-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid;
}

.ring-1 {
    width: 280px;
    height: 280px;
    border-color: rgba(160, 48, 255, 0.3);
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 200px;
    height: 200px;
    border-color: rgba(26, 107, 255, 0.4);
    animation: ringPulse 4s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 120px;
    height: 120px;
    border-color: rgba(211, 80, 255, 0.5);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(160, 48, 255, 0.6);
    animation: corePulse 3s ease-in-out infinite;
}

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

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 60px rgba(160, 48, 255, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 80px rgba(160, 48, 255, 0.8);
    }
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(17, 18, 22, 0.8);
    border: 1px solid rgba(160, 48, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    animation: cardFloat 6s ease-in-out infinite;
}

.float-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 8px 32px rgba(160, 48, 255, 0.3);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

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

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.15);
    border-radius: 12px;
    color: var(--neon-purple);
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

/* Decorative Elements */
.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(160, 48, 255, 0.3), transparent);
}

.line-h {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.line-v {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: linear-gradient(180deg, transparent, rgba(160, 48, 255, 0.3), transparent);
}

.deco-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-purple);
    animation: dotPulse 3s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.dot-2 {
    bottom: 30%;
    right: 30%;
    animation-delay: 0.75s;
}

.dot-3 {
    top: 35%;
    left: 15%;
    animation-delay: 1.5s;
}

.dot-4 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2.25s;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--neon-purple), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(160, 48, 255, 0.1);
    border: 1px solid rgba(160, 48, 255, 0.3);
    border-radius: 20px;
    color: var(--neon-purple);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160, 48, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    transform: translateY(-50%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-statement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-headline {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.about-headline .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.about-card {
    padding: 28px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(160, 48, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(160, 48, 255, 0.3);
    box-shadow: 0 20px 40px rgba(160, 48, 255, 0.15);
}

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

.about-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    color: var(--neon-purple);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.about-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: linear-gradient(180deg, rgba(26, 0, 143, 0.05) 0%, var(--dark-bg) 100%);
}

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

.service-card {
    padding: 32px 28px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(160, 48, 255, 0.3);
    box-shadow: 0 20px 40px rgba(160, 48, 255, 0.15);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    color: var(--neon-purple);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(160, 48, 255, 0.2);
    box-shadow: 0 0 20px rgba(160, 48, 255, 0.3);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.service-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--neon-purple-bright);
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    background: linear-gradient(180deg, rgba(26, 0, 143, 0.1) 0%, var(--dark-bg) 100%);
}

.process-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 64px;
    align-items: start;
}

.process-left,
.process-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-divider {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--neon-purple) 50%, transparent 100%);
    opacity: 0.3;
    position: relative;
}

.process-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-purple);
}

.process-item {
    display: flex;
    gap: 24px;
    align-items: start;
}

.process-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.process-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.process-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.approach {
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 0, 143, 0.08) 100%);
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.approach-gradient {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 48, 255, 0.12) 0%, transparent 60%);
    filter: blur(80px);
}

.approach-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.approach-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.approach-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 28px;
}

.approach-title span {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-text {
    margin-bottom: 32px;
}

.approach-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.approach-text p:last-child {
    margin-bottom: 0;
}

.approach-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.philosophy-card {
    padding: 24px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    border-color: rgba(160, 48, 255, 0.25);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(160, 48, 255, 0.1);
}

.philosophy-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.1);
    border-radius: 12px;
    color: var(--neon-purple);
    margin-bottom: 16px;
}

.philosophy-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.philosophy-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.approach-metrics {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: rgba(160, 48, 255, 0.05);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   WORK SECTION
   ============================================ */

.work {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 0, 143, 0.08) 100%);
}

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

.work-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(160, 48, 255, 0.25);
    box-shadow: 0 24px 48px rgba(160, 48, 255, 0.15);
}

.work-image {
    height: 100%;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.work-img-1 {
    background: linear-gradient(135deg, #A030FF 0%, #1A6BFF 100%);
}

.work-img-2 {
    background: linear-gradient(135deg, #1A6BFF 0%, #0098FF 100%);
}

.work-img-3 {
    background: linear-gradient(135deg, #D350FF 0%, #A030FF 100%);
}

.work-img-4 {
    background: linear-gradient(135deg, #6A00C8 0%, #1A6BFF 100%);
}

.work-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.work-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.work-category {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    background: rgba(160, 48, 255, 0.15);
    border: 1px solid rgba(160, 48, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--neon-purple);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.work-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.work-results {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(160, 48, 255, 0.1);
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-value {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    position: relative;
    background: var(--dark-bg);
    overflow: hidden;
}

.contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.orb-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gradient-blue-start) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--neon-purple-bright) 0%, transparent 70%);
    bottom: 10%;
    right: -10%;
    animation-delay: 5s;
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(160, 48, 255, 0.25);
    transform: translateX(8px);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.1);
    border-radius: 12px;
    color: var(--neon-purple);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-content p,
.info-content a {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--neon-purple);
}

.contact-form-wrapper {
    padding: 40px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    background: rgba(160, 48, 255, 0.05);
    border: 1px solid rgba(160, 48, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    background: rgba(160, 48, 255, 0.1);
    box-shadow: 0 0 20px rgba(160, 48, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.btn-submit:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-submit span {
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-graphite);
    border-top: 1px solid rgba(160, 48, 255, 0.1);
    padding: 80px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.1);
    border: 1px solid rgba(160, 48, 255, 0.2);
    border-radius: 8px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(160, 48, 255, 0.2);
    border-color: var(--neon-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(160, 48, 255, 0.3);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-purple);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(160, 48, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-right {
        height: 400px;
        order: -1;
    }
    
    .hero-title {
        font-size: clamp(32px, 5vw, 48px);
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-card {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .approach-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .approach-metrics {
        gap: 16px;
    }
    
    .metric-value {
        font-size: 28px;
    }
    
    .process-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-divider {
        width: 100%;
        height: 2px;
        transform: rotate(0deg);
    }
    
    .process-divider::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .hero-right {
        height: 350px;
    }
    
    .float-card {
        padding: 12px 16px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
    }
    
    .card-value {
        font-size: 16px;
    }
    
    .visual-center {
        width: 200px;
        height: 200px;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 {
        width: 140px;
        height: 140px;
    }
    
    .ring-3 {
        width: 80px;
        height: 80px;
    }
    
    .center-core {
        width: 40px;
        height: 40px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .stat-box .stat-value {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-metrics {
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .philosophy-card:hover {
        transform: none;
    }
    
    .work-card {
        grid-template-columns: 1fr;
    }
    
    .work-image {
        min-height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .info-card:hover {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    section {
        padding: var(--section-padding-mobile);
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .hero-right {
        height: 300px;
    }
    
    .float-card {
        padding: 10px 12px;
    }
    
    .card-title {
        font-size: 10px;
    }
    
    .card-value {
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-box .stat-value {
        font-size: 20px;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.effective-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(160, 48, 255, 0.1);
    border: 1px solid rgba(160, 48, 255, 0.2);
    border-radius: 30px;
    color: var(--neon-purple);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   LEGAL PAGES (Terms, Privacy)
   ============================================ */

.legal-content {
    padding: 80px 0;
}

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

.legal-nav {
    position: sticky;
    top: 100px;
    padding: 24px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
}

.legal-nav h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.legal-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-nav a {
    display: block;
    padding: 8px 12px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-nav a:hover {
    color: var(--white);
    background: rgba(160, 48, 255, 0.1);
}

.legal-text {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

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

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-details {
    padding: 24px;
    background: rgba(160, 48, 255, 0.05);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 12px;
    margin-top: 16px;
}

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

.contact-details a {
    color: var(--neon-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--white);
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-section {
    padding: 80px 0;
}

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

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(160, 48, 255, 0.25);
    transform: translateY(-8px);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(160, 48, 255, 0.08) 0%, rgba(160, 48, 255, 0.02) 100%);
    border-color: rgba(160, 48, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(160, 48, 255, 0.1);
}

.pricing-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-from {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-gray);
}

.pricing-features svg {
    color: var(--neon-purple);
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(26, 0, 143, 0.05) 0%, transparent 100%);
}

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

.addon-card {
    padding: 32px 24px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: rgba(160, 48, 255, 0.25);
    transform: translateY(-4px);
}

.addon-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    color: var(--neon-purple);
    margin: 0 auto 20px;
}

.addon-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.addon-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.addon-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--neon-purple);
}

/* ============================================
   SUPPORT PAGE
   ============================================ */

.support-options {
    padding: 80px 0;
}

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

.support-card {
    padding: 32px 24px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: rgba(160, 48, 255, 0.25);
    transform: translateY(-4px);
}

.support-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    color: var(--neon-purple);
    margin: 0 auto 20px;
}

.support-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.support-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.support-response {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(160, 48, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--neon-purple);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(26, 0, 143, 0.05) 0%, transparent 100%);
}

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

.faq-item {
    padding: 28px;
    background: rgba(160, 48, 255, 0.03);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(160, 48, 255, 0.2);
}

.faq-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.support-hours {
    padding: 24px;
    background: rgba(160, 48, 255, 0.05);
    border: 1px solid rgba(160, 48, 255, 0.1);
    border-radius: 16px;
    margin-top: 24px;
}

.support-hours h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.support-hours p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 4px;
}

/* ============================================
   RESPONSIVE - Internal Pages
   ============================================ */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-nav {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INSIGHTS PAGE - Full Articles
   ============================================ */

.article-full {
    padding: 80px 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-category {
    padding: 6px 16px;
    background: rgba(160, 48, 255, 0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date,
.article-read {
    font-size: 14px;
    color: var(--text-gray);
}

.article-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
}

.article-intro {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.article-body {
    max-width: 750px;
    margin: 0 auto;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 48px 0 20px;
    line-height: 1.3;
}

.article-body h3:first-child {
    margin-top: 0;
}

.article-body p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-body strong {
    color: var(--white);
    font-weight: 600;
}

.article-divider {
    padding: 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 48, 255, 0.3), transparent);
}

/* Newsletter Section */
.newsletter-section {
    padding: 0 0 80px;
}

.newsletter-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: 48px 56px;
    background: linear-gradient(135deg, rgba(160, 48, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(160, 48, 255, 0.2);
    border-radius: 24px;
}

.newsletter-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(160, 48, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    width: 280px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-gray);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-purple);
    background: rgba(255, 255, 255, 0.08);
}

/* Insights Responsive */
@media (max-width: 1024px) {
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content p {
        max-width: none;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }
    
    .newsletter-form input {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .article-full {
        padding: 60px 0;
    }
    
    .article-body h3 {
        font-size: 20px;
        margin: 36px 0 16px;
    }
    
    .article-body p {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-card {
        padding: 32px 24px;
    }
}

