/* Modern Color Palette */
:root {
    --color-primary: #00F0FF;
    --color-primary-dark: #06B6D4;
    --color-secondary: #A855F7;
    --color-secondary-dark: #8B5CF6;
    --color-accent: #EC4899;
    --color-accent-light: #F43F5E;
    --color-background: #0F172A;
    --color-background-light: #1E293B;
    --color-background-lighter: #334155;
    --color-text: #F8FAFC;
    --color-text-muted: #CBD5E1;
    --color-text-dim: #94A3B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Account for fixed header + language selector */
}

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

/* Language Dropdown */
.language-dropdown {
    position: relative;
    margin-left: 16px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-text {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.lang-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.lang-current.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.lang-option {
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
}

.lang-option.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-weight: 600;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .header {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-dropdown {
    margin-left: 0;
    margin-right: 16px;
}

[dir="rtl"] .lang-menu {
    left: 0;
    right: auto;
}

[dir="rtl"] .contact-feature {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

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

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: floatSpectacular 12s infinite ease-in-out;
    box-shadow: 0 0 10px var(--color-primary);
}

.particle:nth-child(even) {
    background: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary);
    animation-duration: 15s;
}

@keyframes floatSpectacular {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) translateX(50px) rotate(180deg) scale(1.5);
        opacity: 1;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20px) translateX(-50px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-full {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-full svg {
    height: 100%;
    width: auto;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.footer .logo-img {
    height: 65px;
    max-width: none;
}

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

.logo-one {
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    font-weight: 900;
}

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

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

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

.nav a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
}

.nav a:not(.cta-button):hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 10px 24px;
    border-radius: 20px;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 240, 255, 0.5);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
    animation: pulse 6s ease-in-out infinite;
}

.glow-cyan {
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

.glow-purple {
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    animation-delay: 3s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 50px;
    padding-bottom: 10px;
    background: linear-gradient(
        90deg,
        var(--color-text) 0%,
        var(--color-primary) 25%,
        var(--color-secondary) 50%,
        var(--color-accent) 75%,
        var(--color-text) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.25;
    animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 16px 40px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 30px rgba(0, 240, 255, 0.4),
        0 0 0 0 rgba(0, 240, 255, 0.4);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: pulse-border 2s ease infinite;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.primary-btn:hover::before {
    width: 300px;
    height: 300px;
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 50px rgba(0, 240, 255, 0.6),
        0 0 0 8px rgba(0, 240, 255, 0.1);
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow:
            0 8px 30px rgba(0, 240, 255, 0.4),
            0 0 0 0 rgba(0, 240, 255, 0.4);
    }
    50% {
        box-shadow:
            0 8px 30px rgba(0, 240, 255, 0.4),
            0 0 0 8px rgba(0, 240, 255, 0);
    }
}

.secondary-btn {
    border: 2px solid var(--color-primary);
    padding: 14px 38px;
    border-radius: 30px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    background: rgba(0, 240, 255, 0.05);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.secondary-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.secondary-btn:hover::after {
    opacity: 1;
}

.secondary-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 12px 40px rgba(0, 240, 255, 0.4),
        0 0 0 4px rgba(0, 240, 255, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.stat {
    text-align: center;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 10;
}

.stat:hover {
    transform: scale(1.1);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    animation: glow-text 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
    }
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.stat:hover .stat-label {
    color: var(--color-primary);
}

/* Section Styling */
section {
    position: relative;
    padding: 120px 5% 100px; /* Extra top padding for fixed header */
    z-index: 5;
    scroll-margin-top: 120px; /* Ensure proper scroll positioning */
}

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

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.trueproof-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: var(--color-text);
    max-width: 850px;
    margin: 35px auto 0;
    line-height: 1.7;
    text-align: center;
    padding: 25px 30px;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: 8px;
}

/* Game Changed Section */
.game-changed {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-light) 50%, var(--color-background) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-changed .section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.timeline-before {
    --accent-color: rgba(100, 100, 100, 0.5);
}

.timeline-today {
    --accent-color: rgba(255, 50, 50, 0.7);
}

.timeline-fasttrack {
    --accent-color: var(--color-primary);
}

.timeline-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
}

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

.timeline-items li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.timeline-items li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.game-changed-text {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.game-changed-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Responsive for Game Changed Section */
@media (max-width: 968px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .timeline-card {
        padding: 30px 25px;
    }

    .game-changed {
        padding: 60px 0;
    }

    .game-changed .section-title {
        margin-bottom: 40px;
    }
}

/* True Proof AI Section */
.true-proof {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-light) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.true-proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.true-proof-visual {
    position: relative;
}

.visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.scan-animation {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.scan-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.detection-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.detection-badge {
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 2s ease-in-out infinite;
}

.detection-badge.verified {
    background: rgba(0, 240, 255, 0.2);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

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

.true-proof-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tp-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tp-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.tp-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.tp-content p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* Industries Section */
.industries {
    background: var(--color-background);
}

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

@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(168, 85, 247, 0.08));
    border-color: var(--color-primary);
    box-shadow:
        0 25px 80px rgba(0, 240, 255, 0.3),
        0 0 0 1px rgba(0, 240, 255, 0.2),
        inset 0 0 60px rgba(0, 240, 255, 0.05);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.industry-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.industry-card:hover .industry-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.5);
}

.industry-card:hover .industry-icon::before {
    opacity: 1;
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-icon svg {
    transform: scale(1.2);
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.industry-card > p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-features {
    list-style: none;
    padding: 0;
}

.industry-features li {
    padding: 8px 0;
    padding-left: 24px;
    color: var(--color-text-dim);
    position: relative;
    font-size: 14px;
}

.industry-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Solutions Section */
.solutions {
    background: linear-gradient(180deg, var(--color-background-light) 0%, var(--color-background) 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.3);
}

.solution-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.8;
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.solution-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* Featured Solution Card */
.solution-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 2px solid rgba(0, 240, 255, 0.3);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.solution-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    background-size: 200% auto;
    animation: gradient-flow 3s ease infinite;
}

.solution-card-featured:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(168, 85, 247, 0.15));
    border-color: rgba(0, 240, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.featured-badge {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--color-primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.solution-card-featured h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.solution-card-featured p {
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .solution-card-featured {
        padding: 35px 25px;
    }

    .solution-card-featured h3 {
        font-size: 1.4rem;
    }
}

/* Pricing Section */
.pricing {
    background: var(--color-background);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(168, 85, 247, 0.05));
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2);
}

.pricing-card-featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(168, 85, 247, 0.05));
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.4);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--color-text), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    text-align: center;
}

.pricing-body {
    margin: 20px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-body .primary-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

/* Stripe Buy Button Styling */
stripe-buy-button {
    width: 100%;
    max-width: 100%;
    display: block;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

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

.pricing-feature svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--color-primary);
    stroke-width: 3;
}

/* Contact Section */
.contact {
    background: var(--color-background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text > p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
}

.contact-feature svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form select option {
    background: rgb(15, 23, 42);
    color: var(--color-text);
    padding: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

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

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--color-background-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 5% 30px;
}

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

.footer-col h4 {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-dim);
    font-size: 14px;
}

.footer-company-info {
    margin-bottom: 20px;
}

.footer-company-info p {
    margin: 4px 0;
    font-size: 13px;
    line-height: 1.6;
}

.footer-company-info a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company-info a:hover {
    color: var(--color-secondary);
}

.footer-copyright {
    margin-top: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .true-proof-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

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

    .nav.active {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        gap: 16px;
    }

    /* Show language dropdown in mobile menu */
    .nav.active .language-dropdown {
        order: 999;
        margin: 16px 0 0 0;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active a {
        padding: 12px 0;
        font-size: 16px;
    }

    .nav.active .cta-button {
        padding: 14px 24px;
        text-align: center;
        margin-top: 8px;
    }

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

    .hero {
        padding: 100px 5% 60px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-stats {
        gap: 30px;
    }

    section {
        padding: 60px 5%;
    }

    .industries-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }

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

    .hero-badge,
    .section-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 700px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.cookie-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-muted);
}

.cookie-btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* About Section */
.about {
    background: var(--color-background);
}

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

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 16px 0;
    color: var(--color-text);
}

.about-text h3:first-child {
    margin-top: 0;
}

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

.about-values {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-values li {
    padding: 12px 0;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.about-values li strong {
    color: var(--color-primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: block;
}

.modal-content {
    background: var(--color-background-light);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    color: var(--color-text-muted);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-content h2 {
    color: var(--color-text);
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--color-text), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--color-text);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-body strong {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10% auto;
    }

    .modal-close {
        right: 20px;
        font-size: 28px;
    }

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

/* Image Fraud Detection Section */
.image-fraud {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.image-fraud::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
    animation: rotateGlow 30s linear infinite;
}

.imagefraud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.imagefraud-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.imagefraud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff, #a855f7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.imagefraud-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2);
}

.imagefraud-card.highlight {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.05);
}

.imagefraud-card.highlight:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.if-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.imagefraud-card:hover .if-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(168, 85, 247, 0.2));
}

.if-icon svg {
    width: 32px;
    height: 32px;
    stroke: #00f0ff;
    transition: all 0.3s ease;
}

.imagefraud-card.highlight .if-icon svg {
    stroke: #a855f7;
}

.imagefraud-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.imagefraud-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
