/* ===================================
   CSS VARIABLES & ROOT STYLES
   =================================== */
:root {
    /* Colors */
    --color-primary: #f97316;
    --color-primary-dark: #ea580c;
    --color-secondary: #000000;
    --color-accent: #f97316;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-secondary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);

    /* Neutral Colors - Dark Theme */
    --color-bg: #000000;
    --color-bg-secondary: rgba(0, 0, 0, 0.6);
    --color-bg-tertiary: rgba(255, 255, 255, 0.1);
    --color-text: #f1f5f9;
    --color-text-secondary: #cbd5e1;
    --color-text-tertiary: #94a3b8;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: #020024;
    background-image:
        radial-gradient(circle at 20% 15%, rgba(236, 72, 153, 0.06) 0%, transparent 24%),
        radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.05) 0%, transparent 22%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 30s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 100% 18px;
    opacity: 0.14;
    mix-blend-mode: screen;
    z-index: 0;
}

@keyframes gradientShift {

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

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul,
ol {
    list-style: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   ANNOUNCEMENT BANNER
   =================================== */
.announcement-banner {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-sm) 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.announcement-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.announcement-banner .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(1, 4, 22, 0.7);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 80px rgba(0, 0, 0, 0.45);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    gap: var(--spacing-xl);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-sm);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(249, 115, 22, 0.24);
    border-radius: var(--radius-full);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.15), rgba(249, 115, 22, 0.2));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(249, 115, 22, 0.32);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: var(--spacing-3xl) 0;
    background: radial-gradient(circle at top, rgba(56, 14, 120, 0.16), transparent 35%),
                radial-gradient(circle at bottom right, rgba(248, 113, 20, 0.08), transparent 28%),
                linear-gradient(180deg, rgba(1, 1, 8, 1) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, rgba(234, 88, 12, 0.12) 35%, transparent 60%);
    pointer-events: none;
    filter: blur(34px);
    transform: scale(1.12);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
    pointer-events: none;
    filter: blur(22px);
    transform: scale(1.05);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: var(--spacing-4xl) 0;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.05;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.05em;
    text-shadow: 0 20px 80px rgba(0, 0, 0, 0.25), 0 0 18px rgba(249, 115, 22, 0.08);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.9;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.04);
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.25);
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--spacing-3xl) 0;
    background: transparent;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.value-prop {
    padding: var(--spacing-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.value-card {
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.service-card {
    padding: var(--spacing-xl);
    background: rgba(8, 10, 20, 0.78);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.28);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.08) 0%, transparent 65%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
    border-color: rgba(249, 115, 22, 0.22);
}

.service-stat {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Team Showcase */
.team-showcase {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-bold);
    border: 3px solid white;
    margin-left: -12px;
    transition: transform var(--transition-base);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-4px);
    z-index: 1;
}

.team-text {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* ===================================
   HOW IT WORKS / TIMELINE
   =================================== */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.timeline-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===================================
   TOOLS SECTION
   =================================== */
.tools {
    padding: var(--spacing-3xl) 0;
    background: transparent;
    position: relative;
}

.tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 40%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(234, 88, 12, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.tool-card {
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    transition: all var(--transition-slow);
}

.tool-card:hover::before {
    top: -50%;
    left: -50%;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.tool-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
}

.tool-icon svg {
    width: 32px;
    height: 32px;
}

.tool-name {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.tool-description {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.cta-box {
    text-align: center;
    padding: var(--spacing-3xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    color: white;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

#spider-canvas-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-box h3,
.cta-box .btn {
    position: relative;
    z-index: 2;
}

.cta-box .btn {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-box .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    background: white;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-box .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: transparent;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto var(--spacing-3xl);
}

.pricing-card {
    height: 100%;
    transform: none;
    /* Reset transform for consistent grid height alignment if needed */
    display: flex;
    flex-direction: column;
    padding: var(--spacing-3xl);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
    position: relative;
    border: 2px solid rgba(99, 102, 241, 0.3);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

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

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.pricing-subtitle {
    color: var(--color-text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.price-currency {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    vertical-align: super;
}

.price-amount {
    font-size: 4rem;
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

.pricing-note {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.pricing-features {
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Comparison Table */
.comparison-section {
    margin-top: var(--spacing-3xl);
}

.comparison-title {
    text-align: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xl);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    background: transparent;
    border-collapse: collapse;
}

.comparison-table thead {
    background: rgba(0, 0, 0, 0.6);
}

.comparison-table th {
    padding: var(--spacing-lg);
    text-align: left;
    font-weight: var(--font-weight-bold);
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

.comparison-table td {
    padding: var(--spacing-lg);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.table-header-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-extrabold);
    font-size: 1.25rem;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(99, 102, 241, 0.03);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--spacing-3xl) 0;
    background: transparent;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.careers {
    padding: var(--spacing-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.careers-card {
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.careers-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.careers-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

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

.faq-item {
    margin-bottom: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleX(1);
}

.faq-item:hover {
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.18);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: left;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    background: transparent;
    color: white;
    transition: background var(--transition-base);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--spacing-3xl) 0;
    background: transparent;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(234, 88, 12, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

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

.avatar-group-large {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.avatar-large {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    border: 4px solid white;
    margin-left: -20px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.avatar-large:first-child {
    margin-left: 0;
}

.avatar-large:hover {
    transform: translateY(-8px) scale(1.1);
    z-index: 1;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--spacing-3xl) 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--color-dark-text);
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-dark-text-secondary);
    transition: color var(--transition-base);
}

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

.footer-copyright {
    color: var(--color-dark-text-secondary);
    font-size: 0.875rem;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out;
}

[data-aos="fade-down"] {
    animation: fadeInDown 0.6s ease-out;
}

[data-aos="fade-right"] {
    animation: fadeInUp 0.6s ease-out;
}

[data-aos="fade-left"] {
    animation: fadeInUp 0.6s ease-out;
}

[data-aos="zoom-in"] {
    animation: scaleIn 0.5s ease-out;
}

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

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .timeline::before {
        left: 32px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }

    .timeline-number {
        position: absolute;
        left: 0;
    }

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

/* Tablets */
@media (max-width: 768px) {
    .announcement-banner {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .announcement-banner .badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }

    /* Navigation */
    .nav-container {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(2, 0, 36, 0.95);
        backdrop-filter: blur(20px);
        padding: var(--spacing-xl);
        gap: var(--spacing-md);
        box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
        border-bottom: 2px solid rgba(99, 102, 241, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-slow);
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.125rem;
        padding: var(--spacing-sm) 0;
        width: 100%;
        text-align: center;
    }

    .nav-link::after {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-container .btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Section */
    .hero {
        padding: var(--spacing-2xl) 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-badges {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .badge-item {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .services,
    .how-it-works,
    .tools,
    .pricing,
    .faq,
    .contact {
        padding: var(--spacing-2xl) 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: var(--spacing-xl);
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .service-stat {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.125rem;
    }

    /* Timeline */
    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        left: 0;
    }

    .timeline-content {
        padding: var(--spacing-md);
    }

    .timeline-title {
        font-size: 1.25rem;
    }

    .timeline-description {
        font-size: 0.875rem;
    }

    /* Tools */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .tool-card {
        padding: var(--spacing-md);
    }

    .tool-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--spacing-sm);
    }

    .tool-icon svg {
        width: 24px;
        height: 24px;
    }

    .tool-name {
        font-size: 1rem;
    }

    .tool-description {
        font-size: 0.75rem;
    }

    .cta-box {
        padding: var(--spacing-xl);
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    /* Pricing */
    .pricing-card {
        padding: var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .price-currency {
        font-size: 1.5rem;
    }

    .price-period {
        font-size: 1rem;
    }

    .pricing-features li {
        padding: var(--spacing-sm) 0;
        font-size: 0.875rem;
    }

    /* Comparison Table */
    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
    }

    .comparison-table th {
        font-size: 0.75rem;
    }

    .company-logo {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-question {
        padding: var(--spacing-md);
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: 0.875rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    /* Contact */
    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .avatar-large {
        width: 64px;
        height: 64px;
        font-size: 1.25rem;
        margin-left: -16px;
    }

    /* Avatar Groups */
    .avatar {
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
        margin-left: -10px;
    }

    /* Buttons */
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer-links {
        gap: var(--spacing-md);
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.375rem;
        --spacing-sm: 0.5rem;
        --spacing-md: 0.75rem;
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
        --spacing-3xl: 2.5rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    /* Announcement Banner */
    .announcement-banner {
        font-size: 0.7rem;
    }

    .announcement-banner .container {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    /* Navigation */
    .logo-text {
        font-size: 1.25rem;
    }

    /* Hero */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-badges {
        gap: var(--spacing-sm);
    }

    .badge-item {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }

    .badge-icon {
        width: 16px;
        height: 16px;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    /* Sections */
    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.875rem;
    }

    /* Services */
    .service-card {
        padding: var(--spacing-md);
    }

    .service-stat {
        font-size: 2rem;
    }

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

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.875rem;
    }

    /* Timeline */
    .timeline::before {
        left: 16px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 52px;
        margin-bottom: var(--spacing-xl);
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-title {
        font-size: 1.125rem;
    }

    /* Tools */
    .tools-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .tool-card {
        padding: var(--spacing-lg);
    }

    .cta-box {
        padding: var(--spacing-lg);
    }

    .cta-box h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-md);
    }

    /* Pricing */
    .pricing-card {
        padding: var(--spacing-lg);
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.375rem var(--spacing-md);
    }

    .pricing-title {
        font-size: 1.25rem;
    }

    .pricing-subtitle {
        font-size: 0.875rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .pricing-features {
        margin-bottom: var(--spacing-lg);
    }

    .pricing-features li {
        font-size: 0.8rem;
        gap: var(--spacing-sm);
    }

    .pricing-features svg {
        width: 16px;
        height: 16px;
    }

    /* Comparison Table */
    .comparison-title {
        font-size: 1.5rem;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px;
        font-size: 0.7rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
        white-space: nowrap;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .faq-answer p {
        font-size: 0.8rem;
        padding: 0 var(--spacing-md) var(--spacing-md);
    }

    /* Contact */
    .contact-title {
        font-size: 1.5rem;
    }

    .contact-description {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-lg);
    }

    .avatar-large {
        width: 56px;
        height: 56px;
        font-size: 1rem;
        margin-left: -12px;
        border-width: 3px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
        border-width: 2px;
    }

    .team-text {
        font-size: 0.875rem;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-xl) 0;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    /* Buttons */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 1.25rem;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 48px;
    }

    .avatar-large {
        width: 48px;
        height: 48px;
        font-size: 0.875rem;
        margin-left: -10px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: var(--spacing-xl) 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .services,
    .how-it-works,
    .tools,
    .pricing,
    .faq,
    .contact {
        padding: var(--spacing-xl) 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   SCROLL REVEAL
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* ===================================
   MOBILE OPTIMIZATIONS
   =================================== */

/* Touch-friendly tap targets */
@media (max-width: 768px) {

    button,
    a {
        min-height: 44px;
        min-width: 44px;
    }

    .faq-question {
        min-height: 60px;
    }

    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
}

/* Prevent text selection on interactive elements */
.btn,
.faq-question,
.mobile-menu-toggle,
.nav-link {
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.1);
    user-select: none;
    -webkit-user-select: none;
}

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {

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

/* Improve scrollbar on mobile */
@media (max-width: 768px) {
    .comparison-table-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .comparison-table-wrapper::-webkit-scrollbar-track {
        background: rgba(99, 102, 241, 0.1);
        border-radius: 3px;
    }

    .comparison-table-wrapper::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 3px;
    }
}

/* Mobile menu overlay */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }
}

/* Safe area padding for notched devices */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(var(--spacing-lg), env(safe-area-inset-left));
        padding-right: max(var(--spacing-lg), env(safe-area-inset-right));
    }

    .announcement-banner .container,
    .nav-container,
    .footer-content {
        padding-left: max(var(--spacing-lg), env(safe-area-inset-left));
        padding-right: max(var(--spacing-lg), env(safe-area-inset-right));
    }
}

/* Improve focus states for accessibility */
@media (max-width: 768px) {

    button:focus,
    a:focus {
        outline: 2px solid var(--color-primary);
        outline-offset: 2px;
    }

    button:focus:not(:focus-visible),
    a:focus:not(:focus-visible) {
        outline: none;
    }
}

/* ===================================
   CTA / SPIDER CANVAS STYLES
   =================================== */
.contact-content {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 900px !important;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3);
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    color: white;
}

#spider-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-content .contact-title,
.contact-content .contact-description,
.contact-content p {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-content .avatar-large {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       C A R E E R S   S E C T I O N 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 . c a r e e r s   { 
 
         p a d d i n g :   v a r ( - - s p a c i n g - 3 x l )   0 ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . c a r e e r s : : b e f o r e   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         r i g h t :   0 ; 
 
         b o t t o m :   0 ; 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   3 0 %   2 0 % ,   r g b a ( 2 4 9 ,   1 1 5 ,   2 2 ,   0 . 0 5 )   0 % ,   t r a n s p a r e n t   6 0 % ) , 
 
                 r a d i a l - g r a d i e n t ( c i r c l e   a t   7 0 %   8 0 % ,   r g b a ( 1 2 4 ,   5 8 ,   2 3 7 ,   0 . 0 5 )   0 % ,   t r a n s p a r e n t   6 0 % ) ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . c a r e e r s - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ; 
 
         g a p :   v a r ( - - s p a c i n g - x l ) ; 
 
 } 
 
 
 
 . c a r e e r - c a r d   { 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - x l ) ; 
 
         p a d d i n g :   v a r ( - - s p a c i n g - x l ) ; 
 
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - b a s e ) ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         h e i g h t :   1 0 0 % ; 
 
 } 
 
 
 
 . c a r e e r - c a r d : h o v e r   { 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 
         b o r d e r - c o l o r :   r g b a ( 2 4 9 ,   1 1 5 ,   2 2 ,   0 . 3 ) ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 
 } 
 
 
 
 . c a r e e r - b a d g e   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         p a d d i n g :   0 . 2 5 r e m   0 . 7 5 r e m ; 
 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - f u l l ) ; 
 
         f o n t - s i z e :   0 . 7 5 r e m ; 
 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   0 . 0 5 e m ; 
 
         b a c k g r o u n d :   r g b a ( 2 4 9 ,   1 1 5 ,   2 2 ,   0 . 1 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - m d ) ; 
 
         a l i g n - s e l f :   f l e x - s t a r t ; 
 
 } 
 
 
 
 . c a r e e r - b a d g e . i n t e r n s h i p   { 
 
         b a c k g r o u n d :   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 1 5 ) ; 
 
         c o l o r :   v a r ( - - c o l o r - s u c c e s s ) ; 
 
 } 
 
 
 
 . c a r e e r - t i t l e   { 
 
         f o n t - s i z e :   1 . 5 r e m ; 
 
         f o n t - w e i g h t :   v a r ( - - f o n t - w e i g h t - b o l d ) ; 
 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - s m ) ; 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
 
 . c a r e e r - d e s c r i p t i o n   { 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - s e c o n d a r y ) ; 
 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - l g ) ; 
 
         f o n t - s i z e :   0 . 9 5 r e m ; 
 
         f l e x - g r o w :   1 ; 
 
 } 
 
 
 
 . c a r e e r - r e q u i r e m e n t s   { 
 
         l i s t - s t y l e :   n o n e ; 
 
         p a d d i n g :   0 ; 
 
         m a r g i n - b o t t o m :   v a r ( - - s p a c i n g - x l ) ; 
 
 } 
 
 
 
 . c a r e e r - r e q u i r e m e n t s   l i   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         p a d d i n g - l e f t :   1 . 5 r e m ; 
 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
         c o l o r :   v a r ( - - c o l o r - t e x t - t e r t i a r y ) ; 
 
         f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
 } 
 
 
 
 . c a r e e r - r e q u i r e m e n t s   l i : : b e f o r e   { 
 
         c o n t e n t :   ' � � � ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         l e f t :   0 ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         f o n t - w e i g h t :   b o l d ; 
 
 } 
 
 
 
 . b t n - o u t l i n e   { 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         m a r g i n - t o p :   a u t o ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . b t n - o u t l i n e : h o v e r   { 
 
         b a c k g r o u n d :   v a r ( - - c o l o r - p r i m a r y ) ; 
 
         c o l o r :   w h i t e ; 
 
 } 
 
 
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--spacing-md);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

