@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES - Brand Colors
   ========================================== */
:root {
    /* Brand Colors - Pink/Purple Gradient */
    --brand-pink: #ff0055;
    --brand-purple: #9d00ff;
    --brand-blue: #00d4ff;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255, 0, 85, 0.4) 0%, rgba(157, 0, 255, 0.4) 100%);

    /* Neutrals */
    --black: #000000;
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --white: #ffffff;

    /* Grays */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Borders */
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    --border-medium: 1px solid rgba(255, 255, 255, 0.15);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(157, 0, 255, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

::selection {
    background: var(--brand-purple);
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==========================================
   CURSOR GLOW
   ========================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ==========================================
   GRADIENT TEXT
   ========================================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--transition-base);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(157, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(157, 0, 255, 0.4);
}

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

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
    border: var(--border-light);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: var(--border-subtle);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: opacity var(--transition-base);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.nav-logo:hover .logo-img {
    transform: translateX(2px);
}

.logo-text {
    color: var(--white);
}

.logo-dot {
    width: 4px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    font-size: 0.875rem;
    color: var(--white);
    border: var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-cta svg {
    transition: transform var(--transition-base);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.nav-cta:hover svg {
    transform: translate(2px, -2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 140px var(--space-lg) 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(157, 0, 255, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    animation: heroFloat 12s ease-in-out infinite alternate;
}

@keyframes heroFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }

    100% {
        transform: translate(-30px, 20px) scale(1.1);
        opacity: 0.25;
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-purple);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-headline {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: var(--space-lg);
}

.hero-headline .line {
    display: block;
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--gray-400);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.6;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: var(--space-4xl) 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    background: var(--black);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gray-700), transparent);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 24px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    line-height: 1.8;
}

.section-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.section-body .section-desc {
    margin-bottom: 0;
}

/* ==========================================
   APPROACH SECTION
   ========================================== */
.approach-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.approach-glow {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(157, 0, 255, 0.12) 0%, transparent 60%);
    filter: blur(80px);
    transform: translateY(-50%);
    animation: approachFloat 8s ease-in-out infinite alternate;
}

@keyframes approachFloat {
    0% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1.1) translateX(-20px);
    }
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.approach-wrapper>.section-label {
    display: block;
    margin-bottom: var(--space-xl);
}

.approach-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}



.approach-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.approach-intro {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 400px;
}

.approach-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.approach-point {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.approach-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.approach-point:hover {
    border-color: rgba(157, 0, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(157, 0, 255, 0.15);
}

.approach-point:hover::before {
    opacity: 1;
}

.point-accent {
    width: 3px;
    height: 100%;
    min-height: 60px;
    background: var(--gradient-primary);
    border-radius: 2px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all var(--transition-base);
}

.approach-point:hover .point-accent {
    opacity: 1;
    box-shadow: 0 0 12px rgba(157, 0, 255, 0.5);
}

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

.point-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--white);
    transition: color var(--transition-base);
}

.approach-point:hover .point-content h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.point-content p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.section-header {
    max-width: 700px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--bg-dark);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-4xl);
}

.services-sticky {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.services-headline {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.services-desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.service-card {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.card-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    font-family: 'Space Mono', monospace;
}

.card-icon {
    width: 48px;
    height: 48px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    color: var(--brand-purple);
    opacity: 0.6;
    transition: all var(--transition-base);
}

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

.service-card[data-service="consultancy"] .card-icon svg {
    color: var(--brand-blue);
}

.service-card[data-service="development"] .card-icon svg {
    color: var(--brand-purple);
}

.service-card[data-service="education"] .card-icon svg {
    color: var(--brand-pink);
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.card-tagline {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.card-desc {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--gray-400);
}

.card-features svg {
    width: 16px;
    height: 16px;
    color: var(--brand-purple);
    flex-shrink: 0;
}

.service-card[data-service="consultancy"] .card-features svg {
    color: var(--brand-blue);
}

.service-card[data-service="development"] .card-features svg {
    color: var(--brand-purple);
}

.service-card[data-service="education"] .card-features svg {
    color: var(--brand-pink);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    transition: all var(--transition-base);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

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

.card-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   STATEMENT SECTION
   ========================================== */
.statement-section {
    padding: var(--space-4xl) 0;
    background: var(--black);
}

.statement {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: var(--gray-400);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 1.5em;
    opacity: 0.3;
    vertical-align: top;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 0, 85, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(157, 0, 255, 0.08) 0%, transparent 50%);
}

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

.cta-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: var(--space-2xl);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 420px;
    margin: 0 auto;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-light);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition-base);
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: all var(--transition-base);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.75rem;
    background: var(--bg-dark);
    padding: 0 8px;
    color: var(--gray-400);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: var(--space-lg);
}

.cta-note svg {
    color: var(--gray-500);
}

/* ========================================
   NEWSLETTER SECTION
======================================== */
.newsletter-section {
    position: relative;
    padding: var(--space-5xl) 0;
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-4xl);
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.newsletter-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.newsletter-desc {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-300);
    font-size: 0.9rem;
}

.newsletter-feature svg {
    color: var(--brand-purple);
    flex-shrink: 0;
}

.newsletter-right {
    display: flex;
    flex-direction: column;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: 0 var(--space-lg);
    transition: all var(--transition-base);
}

.newsletter-input-group:focus-within {
    border-color: var(--brand-purple);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.newsletter-icon {
    color: var(--gray-500);
    flex-shrink: 0;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 0;
    font-size: 1rem;
    color: var(--white);
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--gray-500);
}

.newsletter-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
}

.newsletter-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    font-size: 0.95rem;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
}

/* Ensure proper alignment on all screen sizes */
.newsletter-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 768px) {
    .newsletter-section {
        padding: var(--space-4xl) var(--space-lg);
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        padding: var(--space-3xl) var(--space-xl);
    }

    .newsletter-left {
        text-align: center;
    }

    .newsletter-headline {
        font-size: 1.75rem;
    }

    .newsletter-desc {
        font-size: 0.95rem;
    }

    .newsletter-features {
        align-items: center;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--black);
    border-top: var(--border-subtle);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: var(--space-4xl);
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: var(--border-subtle);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

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

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .services-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-2xl);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        /* Override display: none from earlier */
        transform: translateY(-20px);
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--white);
    }

    /* Animate Hamburguer to X */
    .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-headline {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .stats-grid {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        gap: var(--space-2xl);
    }

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

    .approach-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .approach-left {
        position: static;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 20px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

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

    .btn {
        width: 100%;
    }

    .service-card {
        padding: var(--space-lg);
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
======================================== */

/* Focus visible styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--brand-purple);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Enhanced focus for interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--brand-purple);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gray-400: #b0b0b0;
        --gray-500: #909090;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================
   NOTIFICATION SYSTEM (TOASTS)
   ========================================== */
.notification-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 200, 83, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 200, 83, 0.05);
    border-radius: 12px;
    padding: 16px 24px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 450px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(50px);
    opacity: 0;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #00c853;
}

.toast-content {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.toast-success {
    border-color: rgba(0, 200, 83, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 200, 83, 0.1);
}

.toast-error {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 68, 68, 0.1);
}

.toast-error .toast-icon {
    color: #ef4444;
}

@media (max-width: 576px) {
    .notification-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .toast {
        min-width: 0;
        width: 100%;
    }
}