/* ========================================
   Repazoo Marketing Website
   Modern, Animated, Conversion-Optimized
   ======================================== */

/* ========================================
   CSS Variables & Theme
   ======================================== */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;

    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Manrope', var(--font-primary);

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

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

    /* 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 cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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(--gray-700);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

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

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

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

.btn-block {
    width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

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

.brand-name {
    font-family: var(--font-heading);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width var(--transition-base);
}

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

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu-content a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mobile-menu-content a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    bottom: -200px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--info));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   Dashboard Preview
   ======================================== */
.dashboard-preview {
    padding: 0 0 var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.dashboard-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-frame {
    position: relative;
    background: var(--gray-900);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.frame-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

.frame-dots {
    display: flex;
    gap: 0.5rem;
}

.frame-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.frame-dots span:nth-child(1) {
    background: #ff5f57;
}

.frame-dots span:nth-child(2) {
    background: #febc2e;
}

.frame-dots span:nth-child(3) {
    background: #28c840;
}

.frame-title {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    color: white;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: var(--spacing-3xl) 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
}

.step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    margin: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    color: var(--primary);
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

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

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-600);
    align-self: flex-end;
    margin-bottom: 0.75rem;
}

.pricing-header p {
    color: var(--gray-600);
    margin: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
}

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

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--spacing-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--warning);
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    padding: 0.5rem 0;
    transition: all var(--transition-base);
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* ========================================
   Animation Classes
   ======================================== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

/* ========================================
   Enterprise Homepage Styles
   ======================================== */
.hero-enterprise {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: var(--spacing-3xl);
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.hero-title-enterprise {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.gradient-text-enterprise {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description-enterprise {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
    color: #3b82f6;
}

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

.stat-value-inline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-label-inline {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-actions-enterprise {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-lg,
.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-primary-lg {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-outline-lg {
    background: white;
    color: #0f172a;
    border: 2px solid var(--gray-300);
}

.btn-outline-lg:hover {
    background: var(--gray-50);
    border-color: #3b82f6;
    color: #3b82f6;
}

.btn-primary-xl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: var(--radius-xl);
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    transition: all var(--transition-base);
}

.btn-primary-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.6);
}

.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-note svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Use Cases Preview */
.use-cases-preview {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title-enterprise {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-description-enterprise {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.use-case-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.use-case-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #3b82f6;
}

.use-case-icon-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.use-case-icon-large svg {
    width: 32px;
    height: 32px;
}

.use-case-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.use-case-card-large p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.use-case-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.use-case-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.use-case-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.link-arrow {
    color: #3b82f6;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.link-arrow:hover {
    gap: 0.75rem;
}

/* How It Works Preview */
.how-it-works-preview {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.process-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.process-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.process-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    color: #3b82f6;
}

.process-icon svg {
    width: 40px;
    height: 40px;
}

.cta-inline {
    text-align: center;
    margin-top: 2rem;
}

/* Trust Section */
.trust-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #3b82f6;
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    color: #3b82f6;
}

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

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.trust-item p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Social Proof */
.social-proof {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.testimonials-grid-enterprise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card-enterprise {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.testimonial-card-enterprise:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author-name {
    font-weight: 700;
    color: #0f172a;
}

.testimonial-author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonial-text-enterprise {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
}

.testimonial-verified svg {
    width: 16px;
    height: 16px;
}

/* CTA Enterprise */
.cta-enterprise {
    padding: var(--spacing-3xl) 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

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

.cta-content-enterprise h2 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content-enterprise p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-subtext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-subtext svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Footer Enterprise */
.footer-enterprise {
    background: #0f172a;
    color: #94a3b8;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content-enterprise {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-section .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-certifications span {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: white;
}

.footer-links-grid {
    display: contents;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    padding: 0.5rem 0;
    transition: all var(--transition-base);
}

.footer-column a:hover {
    color: #3b82f6;
    padding-left: 0.5rem;
}

.footer-bottom-enterprise {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
}

.footer-bottom-enterprise p {
    margin: 0;
    color: #94a3b8;
}

.footer-social-enterprise {
    display: flex;
    gap: 1rem;
}

.footer-social-enterprise a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border-radius: var(--radius-md);
    color: #94a3b8;
    transition: all var(--transition-base);
}

.footer-social-enterprise a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.footer-social-enterprise svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Page Header (for all internal pages)
   ======================================== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Use Cases Detail Page
   ======================================== */
.use-case-detail {
    padding: var(--spacing-3xl) 0;
}

.use-case-detail.alternate {
    background: var(--gray-50);
}

.use-case-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.use-case-badge-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.use-case-badge-large.visa {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    color: #3b82f6;
}

.use-case-badge-large.university {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: #8b5cf6;
}

.use-case-badge-large.professional {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    color: #10b981;
}

.use-case-badge-large svg {
    width: 40px;
    height: 40px;
}

.use-case-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.stat-highlight-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-highlight {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.stat-highlight-value {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-highlight-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.use-case-detail-content h3 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.risk-category-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.risk-category-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border-left: 4px solid;
}

.risk-category-item.high {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.risk-category-item.medium {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.risk-category-item.low {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.risk-indicator {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.risk-category-item.high .risk-indicator {
    background: #ef4444;
    color: white;
}

.risk-category-item.medium .risk-indicator {
    background: #f59e0b;
    color: white;
}

.risk-category-item.low .risk-indicator {
    background: #10b981;
    color: white;
}

.risk-category-item h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.risk-category-item p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.case-study-box {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-xl);
    border: 2px solid #3b82f6;
    margin: 2rem 0;
}

.case-study-box h4 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.case-study-box p {
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.case-study-result {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-top: 1rem;
}

.case-study-result.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.case-study-result svg {
    width: 20px;
    height: 20px;
}

/* Sidebar */
.use-case-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border-color: #3b82f6;
}

.sidebar-card h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.timeline-list strong {
    color: #0f172a;
}

/* Comparison Table */
.comparison-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: #0f172a;
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
}

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

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

/* ========================================
   How It Works Detail Page
   ======================================== */
.process-detail-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.process-detail-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.process-detail-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: var(--radius-xl);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-lg);
}

.process-detail-content {
    padding: 3rem;
    position: relative;
}

.process-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.process-detail-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    color: #3b82f6;
}

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

.process-detail-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0f172a;
    margin: 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.detail-item h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cross-list {
    list-style: none;
    padding: 0;
}

.cross-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.cross-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.security-highlight {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: var(--radius-xl);
    border: 2px solid #10b981;
    margin: 2rem 0;
}

.security-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    border-radius: var(--radius-lg);
    color: white;
    flex-shrink: 0;
}

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

.security-highlight h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.security-highlight p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.time-estimate {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.time-estimate svg {
    width: 20px;
    height: 20px;
    color: #3b82f6;
}

.time-estimate span {
    color: var(--gray-700);
}

.time-estimate strong {
    color: #0f172a;
}

.analysis-categories {
    margin: 2rem 0;
}

.analysis-categories h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.category-card {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.category-icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.category-icon.orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.category-icon.yellow {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.category-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

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

.category-card h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li {
    padding: 0.375rem 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.tech-details {
    margin: 2rem 0;
}

.tech-details h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-item h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.tech-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.report-preview {
    margin: 2rem 0;
}

.report-preview h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.report-section-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-section-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.section-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.section-content h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.section-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.report-formats h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.format-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.format-item svg {
    width: 40px;
    height: 40px;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.format-item h4 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.format-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.privacy-security-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.security-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #10b981;
}

.security-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-xl);
    color: #10b981;
}

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

.security-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.security-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

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

.faq-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.faq-item h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Pricing Page
   ======================================== */
.pricing-tiers-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-tier-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 2px solid var(--gray-200);
    position: relative;
}

.pricing-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-tier-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-tier-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.tier-header h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.tier-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-top: 0.75rem;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-600);
    align-self: flex-end;
    margin-bottom: 1rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
}

.tier-features svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.btn-block {
    width: 100%;
}

.discount-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    border: 2px solid #3b82f6;
}

.discount-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-xl);
    color: #3b82f6;
    flex-shrink: 0;
}

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

.discount-content h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.discount-content p {
    color: var(--gray-700);
    margin: 0;
}

.feature-comparison-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.enterprise-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.enterprise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.enterprise-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.enterprise-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
}

.enterprise-features svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.enterprise-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enterprise-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.enterprise-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.enterprise-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.guarantee-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: var(--radius-2xl);
    border: 3px solid #10b981;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    border-radius: var(--radius-xl);
    color: white;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
}

.guarantee-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   About Page
   ======================================== */
.mission-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.mission-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
    color: #3b82f6;
    margin-bottom: 1rem;
}

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

.value-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.story-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.stats-banner {
    padding: var(--spacing-3xl) 0;
    background: #0f172a;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-banner-item {
    text-align: center;
    padding: 2rem;
}

.stat-banner-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-banner-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.team-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.team-member-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-bio {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.certifications-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.certification-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.certification-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #10b981;
}

.certification-badge {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-xl);
    color: #10b981;
}

.certification-badge svg {
    width: 32px;
    height: 32px;
}

.certification-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.certification-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.certification-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.press-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.press-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.press-logo-item {
    text-align: center;
    font-weight: 700;
    color: var(--gray-400);
    font-size: 1.125rem;
}

.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
    color: #3b82f6;
    flex-shrink: 0;
}

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

.contact-method h4 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #3b82f6;
    font-weight: 600;
}

.contact-method p {
    color: var(--gray-600);
    margin: 0;
}

.contact-form-box {
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    .hero-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-icon {
        margin: 0 auto;
    }

    .use-case-detail-grid {
        grid-template-columns: 1fr;
    }

    .stat-highlight-group {
        grid-template-columns: 1fr;
    }

    .pricing-tiers-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tier-card.featured {
        transform: scale(1);
    }

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

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

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

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

    .enterprise-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

    .footer-content-enterprise {
        grid-template-columns: 1fr;
    }

    .footer-bottom-enterprise {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
    }

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

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

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

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

    .report-section-item {
        flex-direction: column;
    }
}

/* ============================================
   ENTERPRISE-GRADE FOOTER PAGES COMPONENTS
   ============================================ */

/* Premium Page Headers */
.page-header-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-premium .container {
    position: relative;
    z-index: 1;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.page-header-badge span {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 600;
}

.page-header-premium h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.page-header-premium .lead {
    font-size: 20px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Premium Content Cards */
.content-card-premium {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.content-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.content-card-premium h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.content-card-premium p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Premium Accordion (FAQ) */
.accordion-premium {
    background: #1e293b;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-premium:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.accordion-header-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.accordion-header-premium:hover {
    background: rgba(59, 130, 246, 0.05);
}

.accordion-header-premium h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-icon::after {
    content: '+';
    color: #3b82f6;
    font-size: 24px;
    font-weight: 300;
}

.accordion-premium.active .accordion-icon {
    background: #3b82f6;
    transform: rotate(45deg);
}

.accordion-premium.active .accordion-icon::after {
    color: #ffffff;
}

.accordion-content-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-premium .content-inner {
    padding: 0 28px 24px;
    color: #94a3b8;
    line-height: 1.7;
}

/* Article Cards (Blog) */
.article-card {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.article-featured-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

.article-card-content {
    padding: 28px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-category {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: #64748b;
    font-size: 14px;
}

.article-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.article-excerpt {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
}

.author-info .author-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.author-info .author-role {
    color: #64748b;
    font-size: 12px;
}

/* Contact Method Cards */
.contact-method-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.contact-method-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-method-card p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #60a5fa;
}

/* Premium Forms */
.form-premium {
    background: #1e293b;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control-premium {
    width: 100%;
    padding: 14px 16px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control-premium::placeholder {
    color: #64748b;
}

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

/* Job Cards (Careers) */
.job-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.job-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.job-type-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-meta-item {
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-requirements {
    margin-bottom: 24px;
}

.job-requirements h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    color: #94a3b8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.benefit-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* Certification Badges (Compliance) */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.certification-badge {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certification-badge:hover::before {
    opacity: 1;
}

.certification-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.certification-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
}

.certification-badge h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.certification-status {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.certification-badge p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Security Feature Cards */
.security-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.security-feature-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.security-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.security-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.security-feature-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.security-feature-card p {
    color: #94a3b8;
    line-height: 1.7;
}

/* Search Bar Premium */
.search-bar-premium {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.search-input-premium {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input-premium:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 20px;
}

/* Category Tags */
.category-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.category-tag {
    background: #1e293b;
    color: #94a3b8;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.category-tag:hover,
.category-tag.active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

/* Press Release Cards */
.press-release-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.press-release-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.press-date {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.press-release-card h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.press-release-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Partnership Type Cards */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.partnership-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.partnership-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.partnership-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.partnership-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
}

.partnership-benefits li {
    color: #94a3b8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.partnership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Sidebar Navigation (Legal Pages) */
.sidebar-nav {
    background: #1e293b;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
}

.sidebar-nav h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* Highlighted Callout Boxes */
.callout-box {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout-box.warning {
    background: rgba(251, 191, 36, 0.05);
    border-left-color: #fbbf24;
}

.callout-box.success {
    background: rgba(34, 197, 94, 0.05);
    border-left-color: #22c55e;
}

.callout-box h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.callout-box p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 48px;
    margin: 48px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-item h3 {
    color: #3b82f6;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    color: #94a3b8;
    font-size: 16px;
}

/* Responsive Design for Footer Pages */
@media (max-width: 768px) {
    .page-header-premium {
        padding: 80px 0 60px;
    }
    
    .page-header-premium h1 {
        font-size: 36px;
    }
    
    .page-header-premium .lead {
        font-size: 18px;
    }
    
    .content-card-premium,
    .accordion-premium,
    .form-premium {
        padding: 24px;
    }
    
    .article-featured-image {
        height: 180px;
    }
    
    .benefits-grid,
    .certifications-grid,
    .security-features-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* Support Search Section */
.support-search {
    background: #0f172a;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-box {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background: #1e293b;
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
    color: #94a3b8;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 0;
    outline: none;
}

.search-input::placeholder {
    color: #64748b;
}

.search-btn {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.popular-searches {
    text-align: center;
    margin-top: 20px;
    color: #94a3b8;
    font-size: 14px;
}

.popular-searches a {
    color: #3b82f6;
    margin-left: 12px;
    transition: color 0.2s ease;
}

.popular-searches a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Support Options Section */
.support-options {
    background: #0f172a;
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.support-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.support-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.support-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.support-card p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.availability {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.availability.available {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Response Time Guarantee */
.response-guarantee {
    background: #1e293b;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.response-guarantee h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 32px;
    font-weight: 700;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

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

.guarantee-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}

.guarantee-time {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.guarantee-label {
    color: #94a3b8;
    font-size: 14px;
}

/* Help Section */
.help-section {
    background: #0f172a;
    padding: 80px 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.help-article {
    background: #1e293b;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.help-article:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.help-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-icon svg {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}

.help-article h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.help-article p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

/* Troubleshooting Section */
.troubleshooting-section {
    background: #0f172a;
    padding: 80px 0;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.troubleshooting-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.troubleshooting-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.troubleshooting-card p {
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.6;
}

.troubleshooting-card strong {
    color: #ffffff;
    font-weight: 600;
}

.troubleshooting-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.troubleshooting-card li {
    color: #94a3b8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.5;
}

.troubleshooting-card li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Ticket Section */
.ticket-section {
    background: #0f172a;
    padding: 80px 0;
}

.ticket-container {
    max-width: 700px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-container h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
}

.ticket-container > p {
    color: #94a3b8;
    text-align: center;
    margin-bottom: 32px;
}

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-form small {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Methods Section */
.contact-methods-section {
    background: #0f172a;
    padding: 80px 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-method-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.contact-method-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-method-card p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact-link:hover {
    color: #60a5fa;
}

.response-time {
    color: #10b981;
    font-size: 14px;
    margin-top: 12px;
    font-weight: 500;
}

/* Departments Section */
.departments-section {
    background: #0f172a;
    padding: 80px 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.department-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.department-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.department-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.department-card p {
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.department-card strong {
    color: #ffffff;
    font-weight: 600;
}

.department-card a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.department-card a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    background: #0f172a;
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 12px;
}

.form-header p {
    color: #94a3b8;
}

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

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

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

.form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    color: #94a3b8;
}

.form-disclaimer {
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
    margin-top: 16px;
}

.form-disclaimer a {
    color: #3b82f6;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Office Section */
.office-section {
    background: #0f172a;
    padding: 80px 0;
}

.office-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.office-details {
    color: #94a3b8;
    line-height: 1.8;
}

.office-details h3,
.office-details h4 {
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 12px;
}

.office-details h3 {
    font-size: 24px;
    margin-top: 0;
}

.office-details h4 {
    font-size: 18px;
}

.office-details strong {
    color: #ffffff;
}

.office-details a {
    color: #3b82f6;
    text-decoration: none;
}

.office-details a:hover {
    text-decoration: underline;
}

.office-map {
    background: #1e293b;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #0f172a;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    color: #3b82f6;
    margin-bottom: 12px;
}

.map-placeholder p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.map-note {
    color: #94a3b8;
    font-size: 14px;
}

/* Social Section */
.social-section {
    background: #0f172a;
    padding: 80px 0;
}

.social-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #1e293b;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-box h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 12px;
}

.social-box > p {
    color: #94a3b8;
    margin-bottom: 32px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
}

.social-link span {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   BLOG & ARTICLE STYLES
   ============================================ */

.article-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: #94a3b8;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.article-featured-image {
    width: 100%;
    height: 200px;
    background: #0f172a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.article-featured-image svg {
    width: 64px;
    height: 64px;
    color: #3b82f6;
}

.article-card-content h2,
.article-card-content h3 {
    color: #ffffff;
    font-weight: 600;
}

.article-card-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.article-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.article-card-content p {
    color: #94a3b8;
    line-height: 1.6;
}

/* ============================================
   SHARED UTILITY CLASSES
   ============================================ */

.btn-primary-lg {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-primary-lg:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.section-title-enterprise {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .support-grid,
    .contact-methods-grid,
    .departments-grid,
    .troubleshooting-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .office-info {
        grid-template-columns: 1fr;
    }

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

    .page-header-premium h1 {
        font-size: 36px;
    }

    .section-title-enterprise {
        font-size: 28px;
    }

    .ticket-container,
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}
