/* ============================================
   ESPLORES - UNIFIED STYLESHEET
   Generated: 2026-05-17
   ============================================ */

/* ============================================
   1. CSS VARIABLES & THEME
   ============================================ */
:root {
    --c-primary: #0891b2;
    --c-secondary: #7c3aed;
    --c-accent: #d97706;
    --c-bg: #f8fafc;
    --c-surface: #ffffff;
    --c-card: rgba(255, 255, 255, 0.7);
    --c-text: #1e293b;
    --c-text-muted: #64748b;
    --c-border: rgba(0, 0, 0, 0.08);
    --c-border-hover: rgba(8, 145, 178, 0.3);
    --c-nav-bg: rgba(255, 255, 255, 0.9);
    --c-policy: #0891b2;
    --c-shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --c-primary: #00d4ff;
    --c-secondary: #7c3aed;
    --c-accent: #f59e0b;
    --c-bg: #050508;
    --c-surface: #0a0a0f;
    --c-card: rgba(255, 255, 255, 0.03);
    --c-text: #e2e8f0;
    --c-text-muted: #94a3b8;
    --c-border: rgba(128, 128, 128, 0.1);
    --c-border-hover: rgba(0, 212, 255, 0.2);
    --c-nav-bg: rgba(10, 10, 15, 0.9);
    --c-policy: #0891b2;
    --c-shadow: rgba(0, 0, 0, 0.3);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ============================================
   3. BACKGROUND & PARTICLES
   ============================================ */
.bg-orb {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}
[data-theme="light"] .bg-orb { opacity: 0.4; }

.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--c-primary);
    border-radius: 50%;
    animation: float 20s infinite linear;
}
@keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* ============================================
   4. NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: var(--c-nav-bg);
    border-bottom: 1px solid var(--c-border);
    transition: all 0.3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-links li { position: relative; list-style: none; }
.nav-links a {
    color: var(--c-text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: block;
}
.nav-links a:hover, .nav-links a.active { color: var(--c-primary); }

/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    background: var(--c-nav-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-links .dropdown-menu li { list-style: none; }
.nav-links .dropdown-menu a {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}
.nav-links .dropdown-menu a:hover {
    color: var(--c-primary);
    background: var(--c-card);
}
.nav-links .dropdown > a i.fa-chevron-down,
.nav-links .dropdown > a i.fa-angle-down { display: none; }

/* Active highlighting */
.nav-links a.active, .dropdown-menu a.active {
    color: var(--c-primary);
    font-weight: 600;
}
.nav-links .dropdown > a.active { color: var(--c-primary); }
.nav-links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: var(--c-primary);
    border-radius: 2px;
}
.nav-links .dropdown > a.active::after { display: none; }
.dropdown-menu a.active {
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid var(--c-primary);
}

/* Nav Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.lang-switcher {
    display: flex;
    background: var(--c-card);
    border-radius: 50px;
    padding: 0.25rem;
    border: 1px solid var(--c-border);
}
.lang-btn {
    padding: 0.35rem 0.9rem;
    border: none;
    background: transparent;
    color: var(--c-text-muted);
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s;
}
.lang-btn.active { background: var(--c-primary); color: white; }

.theme-toggle {
    width: 48px; height: 26px;
    background: var(--c-card);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--c-border);
}
.theme-toggle::after {
    content: '☀️';
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
[data-theme="dark"] .theme-toggle::after {
    content: '🌙';
    transform: translateX(22px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--c-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   5. LAYOUT & SECTIONS
   ============================================ */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-header p {
    color: var(--c-text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   6. HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 5rem;
}
.hero-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.hero-content .badge,
.hero-content h1,
.hero-content p { text-align: center; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--c-card);
    border: 1px solid var(--c-border-hover);
    border-radius: 50px;
    color: var(--c-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.badge i { font-size: 0.9rem; }

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero h1 .accent {
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
}
.hero-cta:hover { transform: translateY(-3px); }

.hero.second_section {
    min-height: 40vh;
    padding: 8rem 5% 2rem;
}

/* ============================================
   7. STATS
   ============================================ */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.stat-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-width: 160px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
    border-color: var(--c-border-hover);
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   8. TIMELINE
   ============================================ */
.timeline {
    position: relative;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--c-primary), var(--c-secondary));
    opacity: 0.3;
}
.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    margin-left: 2rem;
}
.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 2rem;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 20px;
    background: var(--c-bg);
    border: 3px solid var(--c-primary);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}
.timeline-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.timeline-content:hover {
    transform: scale(1.02);
    border-color: var(--c-border-hover);
}
.timeline-icon {
    width: 50px; height: 50px;
    background: var(--c-card);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--c-primary);
    margin-bottom: 1rem;
    border: 1px solid var(--c-border-hover);
}
.timeline-item:nth-child(odd) .timeline-icon,
.timeline-item:nth-child(odd) .timeline-tag { margin-left: auto; }
.timeline-item:nth-child(even) .timeline-icon,
.timeline-item:nth-child(even) .timeline-tag { margin-right: auto; }

.timeline-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--c-card);
    border: 1px solid var(--c-border-hover);
    border-radius: 50px;
    color: var(--c-primary);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--c-primary);
}
.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--c-text);
}
.timeline-content p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.timeline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.8rem;
}
.timeline-link:hover { gap: 0.7rem; }

/* ============================================
   9. FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Use-cases: 2x2 grid */
#connect-explore .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

/* Banking case study: 2x2 grid */
.second_section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}
.features-grid.grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}
.features-grid.grid-3col {
    grid-template-columns: repeat(3, 1fr);
}
.feature-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-border-hover);
    box-shadow: 0 20px 40px var(--c-shadow);
}
.feature-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--c-primary);
    margin-bottom: 1.2rem;
    border: 1px solid var(--c-border-hover);
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--c-text);
}
.feature-card p {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.8rem;
}
.feature-link:hover { gap: 0.7rem; }

/* ============================================
   10. METRICS
   ============================================ */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}
.metric-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.metric-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.metric-content { position: relative; z-index: 1; }
.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 0.3rem;
}
.metric-label {
    color: var(--c-text-muted);
    font-size: 0.8rem;
}

/* ============================================
   11. TWO COLUMNS
   ============================================ */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}
.two-columns.reverse { direction: rtl; }
.two-columns.reverse .col { direction: ltr; }
.col h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--c-text);
}
.col h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--c-primary);
}
.col p {
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.col ul {
    list-style: none;
    padding: 0;
}
.col ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--c-text-muted);
}
.col ul li i {
    color: var(--c-primary);
    font-size: 1.2rem;
}
.features-image {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
/*    border: 1px solid var(--c-border);
    background: var(--c-card);
*/}
.features-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.features-image:hover img { transform: scale(1.03); }

/* ============================================
   12. TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.team-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--c-border-hover);
    box-shadow: 0 20px 40px var(--c-shadow);
}
.team-avatar {
    width: 140px; height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--c-text);
}
.team-role {
    color: var(--c-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    display: block;
}
.team-bio {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: justify;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    width: 100%;
}
.team-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--c-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    transition: all 0.3s;
    border: 1px solid var(--c-border);
}
.team-social a:hover {
    background: var(--c-primary);
    color: white;
    border-color: var(--c-primary);
    transform: translateY(-3px);
}

/* ============================================
   13. CTA
   ============================================ */
.cta {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 40px;
    margin: 2rem auto;
    max-width: 1200px;
    border: 1px solid var(--c-border);
}
.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cta p {
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}

/* ============================================
   14. FOOTER
   ============================================ */
footer {
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: 0.85rem;
}
footer a { color: var(--c-primary); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.footer-links a { color: var(--c-text-muted); }
.footer-links a:hover { color: var(--c-primary); }

/* ============================================
   15. COOKIE POPUP
   ============================================ */
.cookie-popup {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--c-nav-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--c-border);
    padding: 1rem;
    z-index: 1001;
    display: none;
    justify-content: center;
}
.cookie-popup-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.cookie-popup p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
}
.cookie-popup a { color: var(--c-primary); }
.cookie-btn {
    background: var(--c-primary);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}
.cookie-btn:hover { transform: translateY(-2px); }

/* ============================================
   16. REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   17. WORKFLOW
   ============================================ */
.workflow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--c-card);
    border-radius: 24px;
    border: 1px solid var(--c-border);
}
.workflow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 16px;
    border: 1px solid var(--c-border);
    transition: all 0.3s;
}
.workflow-step:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--c-border-hover);
    transform: translateY(-5px);
}
.workflow-step i {
    font-size: 2rem;
    color: var(--c-primary);
    margin-bottom: 1rem;
    display: block;
}
.workflow-step h4 {
    font-size: 0.9rem;
    color: var(--c-text);
    margin-bottom: 0.5rem;
}
.workflow-step p {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}
.workflow-arrow {
    color: var(--c-primary);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* ============================================
   18. TABLES
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--c-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--c-border);
}
.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.comparison-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--c-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.comparison-table tr:hover { background: rgba(128, 128, 128, 0.05); }
.comparison-table td { color: var(--c-text-muted); }
.comparison-table strong { color: var(--c-text); }

/* ============================================
   19. CHARTS
   ============================================ */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.chart-container {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 24px;
    padding: 1.5rem;
}
.chart-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--c-text);
}
.chart-wrapper {
    position: relative;
    height: 280px;
}

/* ============================================
   20. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}
.btn-apply, .btn-download, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-apply:hover, .btn-download:hover, .btn-submit:hover { transform: translateY(-3px); }

/* ============================================
   21. FORMS
   ============================================ */
.form-group { margin-bottom: 1.2rem; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 16px;
    color: var(--c-text);
    font-family: inherit;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.2rem 0;
}
.checkbox-group input {
    width: 18px; height: 18px;
    margin-top: 3px;
    cursor: pointer;
}
.checkbox-group label {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
}
.checkbox-group a { color: var(--c-primary); }

/* ============================================
   22. ABOUT PAGE
   ============================================ */
.hiring-banner {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--c-card);
    border-radius: 20px;
    border: 1px solid var(--c-border-hover);
}
.hiring-banner a {
    color: var(--c-primary);
    font-weight: 600;
}
.hiring-banner a:hover { text-decoration: underline; }

/* ============================================
   23. CAREERS PAGE
   ============================================ */
.careers-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 3rem;
}
.careers-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.careers-hero p {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.job-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}
.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-border-hover);
}
.job-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--c-primary);
}
.job-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.job-section { margin: 1.5rem 0; }
.job-section h4 {
    color: var(--c-primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.job-section ul { padding-left: 1.5rem; }
.job-section li {
    margin-bottom: 0.5rem;
    color: var(--c-text-muted);
}

/* ============================================
   24. CERTIFICATIONS PAGE
   ============================================ */
.certs-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 3rem;
}
.certs-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.certs-hero p {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.cert-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}
.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-border-hover);
}
.cert-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.cert-icon i { font-size: 2.5rem; color: white; }
.cert-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--c-primary);
}
.cert-number {
    font-family: monospace;
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}
.cert-validity {
    display: inline-block;
    background: var(--c-card);
    border: 1px solid var(--c-border-hover);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    margin: 1rem 0;
}
.cert-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--c-text-muted);
    line-height: 1.8;
}
.cert-logo {
    margin: 1.5rem auto;
    text-align: center;
}
.cert-logo img { max-width: 200px; height: auto; }

/* ============================================
   25. COMPANY POLICY PAGE
   ============================================ */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 3rem;
    background: var(--c-bg);
}
.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--c-card);
    border-radius: 16px;
    overflow: hidden;
}
.policy-table th,
.policy-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.policy-table th {
    background: var(--c-policy);
    color: white;
    font-weight: 600;
}
.policy-table tr:last-child td { border-bottom: none; }
.policy-section { margin-bottom: 2rem; }
.policy-section h3 {
    color: var(--c-policy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.policy-section ul { padding-left: 1.5rem; }
.policy-section li {
    margin-bottom: 0.5rem;
    color: var(--c-text-muted);
}
.version-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--c-card);
    border-radius: 16px;
    overflow: hidden;
}
.version-table th,
.version-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.version-table th {
    background: var(--c-card);
    color: var(--c-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--c-border-hover);
}

/* Policy text justified */
.policy-section p {
    color: var(--c-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
    font-weight: 500;
}

/* ============================================
   26. CONTACT PAGE
   ============================================ */
.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 3rem;
}
.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-hero p {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}
.contact-info {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 28px;
    padding: 2rem;
}
.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--c-primary);
}
.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-icon {
    width: 45px; height: 45px;
    background: var(--c-card);
    border: 1px solid var(--c-border-hover);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    font-size: 1.2rem;
}
.info-content h4 {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 0.2rem;
}
.info-content p,
.info-content a {
    color: var(--c-text);
    text-decoration: none;
    font-weight: 500;
}
.info-content a:hover { color: var(--c-primary); }
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
}
.social-links a {
    width: 40px; height: 40px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all 0.3s;
}
.social-links a:hover {
    background: var(--c-primary);
    color: white;
    transform: translateY(-3px);
}
.contact-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 28px;
    padding: 2rem;
}
.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--c-primary);
}

/* ============================================
   27. NEWS PAGE
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    justify-items: center;
}
.news-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    width: 66%;
    max-width: 420px;
}
.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-border-hover);
    box-shadow: 0 20px 40px var(--c-shadow);
}
.news-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--c-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-image {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    padding: 1rem;
}
.news-card:hover .news-image { transform: scale(1.03); }
.news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.news-date {
    color: var(--c-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}
.news-card p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex-grow: 1;
    text-align: justify;
}
.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.news-link:hover { gap: 0.7rem; }

/* Partnership card */
.partner-description {
    text-align: justify;
}

.news-card.partner-card {
    grid-column: 1 / -1;
    width: 85%;
    max-width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.partner-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--c-surface);
    width: 280px;
    flex-shrink: 0;
    box-sizing: border-box;
}
.partner-logo-wide {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.partner-logo-wide:hover { opacity: 1; }
.partner-x {
    color: var(--c-primary);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}
.partner-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}
.partner-content .news-date { margin-bottom: 0.8rem; }
.partner-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.partner-content p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

/* ============================================
   28. PARTNERS PAGE
   ============================================ */
.partners-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 3rem;
}
.partners-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.partners-hero p {
    font-size: 1.2rem;
    color: var(--c-text-muted);
    max-width: 700px;
    margin: 0 auto;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}
.partner-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--c-border-hover);
    box-shadow: 0 20px 40px var(--c-shadow);
}
.partner-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--c-surface);
    padding: 1rem;
}
[data-theme="dark"] .partner-logo {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.partner-card:hover .partner-logo img { filter: grayscale(0%); }
.partner-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 0.5rem;
}
.partner-type {
    font-size: 0.8rem;
    color: var(--c-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.partner-description {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
    flex-grow: 1;
}
.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
}
.partner-card:hover .partner-link { gap: 0.7rem; }
.partners-cta {
    text-align: center;
    padding: 4rem;
    background: var(--c-card);
    border-radius: 40px;
    margin: 3rem auto;
    border: 1px solid var(--c-border);
}
.partners-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.partners-cta p {
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   29. PRIVACY POLICY PAGE
   ============================================ */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
}
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}
.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c-text), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.privacy-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 24px;
    padding: 3rem;
}
.privacy-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--c-primary);
}
.privacy-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--c-text);
}
.privacy-content h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: var(--c-text);
}
.privacy-content p {
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.privacy-content li {
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
}
.privacy-content a { color: var(--c-primary); }
.privacy-content a:hover { text-decoration: underline; }

/* ============================================
   30. USE CASES PAGE
   ============================================ */
.usecases-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
}
.usecases-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.usecases-hero h1 .accent {
    background: linear-gradient(135deg, var(--c-primary), #4a9eff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================
   31. CASE STUDY PAGES
   ============================================ */
.case-study-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    text-align: center;
}
.case-study-hero .hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.case-study-hero .badge { animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}
.case-study-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--c-text) 0%, var(--c-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.case-study-hero h1 span {
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   32. RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .features-grid.grid-3col { grid-template-columns: repeat(2, 1fr); }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .two-columns { grid-template-columns: 1fr; gap: 2rem; }
    .usecases-hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .hero.second_section {
        min-height: auto;
        padding: 6rem 5% 2rem;
    }
    .timeline::before { left: 20px; }
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        width: calc(100% - 50px);
        text-align: left;
    }
    .timeline-dot { left: 20px; }
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon,
    .timeline-item:nth-child(odd) .timeline-tag,
    .timeline-item:nth-child(even) .timeline-tag {
        margin-left: 0;
        margin-right: auto;
    }
    section { padding: 4rem 5%; }
    .metrics-row { grid-template-columns: repeat(2, 1fr); }
    .features-grid.grid-2x2,
    .features-grid.grid-3col { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card.partner-card { flex-direction: column; }
    .partner-logos { width: 100%; }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .partners-hero h1 { font-size: 2.2rem; }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .careers-hero h1,
    .certs-hero h1,
    .contact-hero h1,
    .page-hero h1 { font-size: 1.8rem; }
    .cert-card { padding: 1.5rem; }
    .cert-logo img { max-width: 150px; }
    .charts-grid { grid-template-columns: 1fr; }
    .workflow { flex-direction: column; }
    .workflow-arrow { transform: rotate(90deg); }
    .comparison-table th,
    .comparison-table td { padding: 1rem; }
    .case-study-hero {
        min-height: auto;
        padding: 6rem 5% 2rem;
    }
    .case-study-hero h1 { font-size: 2.5rem; }
    .privacy-content { padding: 1.5rem; }
    .nav-links .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding-left: 1rem;
    }
}

@media (max-width: 576px) {
    .metrics-row { grid-template-columns: 1fr; }
    .stat-card { min-width: 130px; }
    .hero h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.8rem; }
    .partners-grid { grid-template-columns: 1fr; }
    .usecases-hero h1 { font-size: 1.8rem; }
}

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

/* ============================================
   33. UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.rounded { border-radius: 12px; }
.rounded-lg { border-radius: 20px; }
.rounded-xl { border-radius: 28px; }

/* Visibility fixes */
.second_section {
    display: block;
    opacity: 1;
    visibility: visible;
}


/* ============================================
   DEBUG: FORZA VISIBILITA'
   ============================================ */
.hero,
.second_section,
#modules,
#features,
#core,
#connect-explore,
#branches,
#analyze-transform,
#documents,
#analytics,
#visualize-interact,
#analyst,
#gdpr-dm,
#subsetting,
#text-processing,
#nlp,
#ai-data-extraction,
#news,
#usecases,
#policy-hero,
#contact,
#moduli,
#timeline,
#workflow,
#results,
#banking-hero,
#banking-features,
#banking-process,
#banking-workflow,
#banking-results {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero .reveal,
#modules .reveal,
#features .reveal,
#core .reveal,
.second_section .reveal,
#connect-explore .reveal,
#branches .reveal,
#analyze-transform .reveal,
#documents .reveal,
#analytics .reveal,
#visualize-interact .reveal,
#analyst .reveal,
#gdpr-dm .reveal,
#subsetting .reveal,
#text-processing .reveal,
#nlp .reveal,
#ai-data-extraction .reveal,
#news .reveal,
#usecases .reveal,
#policy-hero .reveal,
#contact .reveal,
#moduli .reveal,
#timeline .reveal,
#workflow .reveal,
#results .reveal,
#banking-hero .reveal,
#banking-features .reveal,
#banking-process .reveal,
#banking-workflow .reveal,
#banking-results .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================
   USE CASES ROWS - Alternating Layout
   ============================================ */
.usecase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Card column */
.usecase-card-col {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.usecase-card-col::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.usecase-card-col:hover::before { transform: scaleX(1); }
.usecase-card-col:hover {
    transform: translateY(-3px);
    border-color: var(--c-border-hover);
    box-shadow: 0 20px 40px var(--c-shadow);
}
.usecase-card-col .feature-icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--c-primary);
    margin-bottom: 1.2rem;
    border: 1px solid var(--c-border-hover);
}
.usecase-card-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.usecase-card-col ul li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--c-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}
.usecase-card-col ul li i {
    color: var(--c-primary);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.usecase-card-col .row-points h4 {
    font-size: 0.95rem;
    color: var(--c-primary);
    margin-bottom: 0.3rem;
    margin-top: 0.8rem;
}
.usecase-card-col .row-points p {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Title column */
.usecase-title-col {
    padding: 1rem;
}
.usecase-title-col h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--c-text);
    line-height: 1.3;
}
.usecase-title-col p {
    color: var(--c-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Divider between cards */
.usecase-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 5%;
}
.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-primary), var(--c-secondary), transparent);
    opacity: 0.4;
    border-radius: 2px;
}
.divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    animation: dividerPulse 3s ease-in-out infinite;
}
.divider-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}
@keyframes dividerPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.4); }
}

@media (max-width: 768px) {
    .usecase-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .usecase-title-col {
        text-align: center;
    }
    .usecase-divider {
        margin: 2rem auto;
    }
    .divider-line {
        opacity: 0.2;
    }
}

/* ============================================
   LIBRO PAGE
   ============================================ */
.libro-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s;
}
.libro-card:hover {
    border-color: var(--c-border-hover);
    box-shadow: 0 20px 60px var(--c-shadow);
}
.libro-cover {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--c-border);
}
.libro-cover img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.libro-content {
    padding: 2.5rem;
}
.libro-content p {
    color: var(--c-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}
.libro-content p:last-child {
    margin-bottom: 0;
}
.libro-content strong {
    color: var(--c-primary);
}
.libro-content em {
    color: var(--c-text);
    font-style: italic;
}

@media (max-width: 768px) {
    .libro-cover {
        padding: 1rem;
    }
    .libro-content {
        padding: 1.5rem;
    }
    .libro-content p {
        font-size: 0.95rem;
    }
}