/* ============================================
   GUARDIANGRID - Production CSS
   ============================================ */

/* ============ VARIABLES & RESET ============ */
:root {
    --primary-dark: #0B0F1A;
    --secondary-dark: #1a1f3a;
    --tertiary-dark: #252d45;
    --neon-cyan: #00E5FF;
    --neon-blue: #3B82F6;
    --neon-purple: #A78BFA;
    --accent-pink: #EC4899;
    --white: #FFFFFF;
    --gray-light: #E0E7FF;
    --gray-med: #A5B4FC;
    --text-dark: #1F2937;
    --border-color: rgba(255, 255, 255, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    overflow-x: hidden;
    background-attachment: fixed;
    padding-top: 70px;
}

/* ============ LOADING ANIMATION ============ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    animation: fadeOut 0.8s ease-in-out 2s forwards;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--neon-cyan);
    border-right: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader p {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ============ CURSOR GLOW ============ */
.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--neon-cyan), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
    filter: blur(10px);
    display: none;
}

@media (min-width: 1024px) {
    .cursor-glow {
        display: block;
    }
}

/* ============ CONTAINER & UTILITIES ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--white), var(--neon-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInDown 0.6s ease-out;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-med);
    animation: slideInUp 0.6s ease-out 0.2s both;
}

/* ============ GLASS MORPHISM CARDS ============ */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-outline:hover {
    background: var(--neon-cyan);
    color: var(--primary-dark);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ============ GRADIENT TEXT ============ */
.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ ANIMATIONS ============ */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(11, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 15, 26, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo-image {
    max-height: 70px;
    width: auto;
    transition: var(--transition);
    /* filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.3)); */
}

/* .logo:hover .logo-image {
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.6));
} */

.logo i {
    color: var(--neon-cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    transition: var(--transition);
}

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

.cta-btn-nav {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-btn-nav:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============ RESPONSIVE NAVBAR ============ */
@media (max-width: 768px) {
    .navbar {
        position: sticky;
        /* padding: 12px 0; */
    }

    .nav-wrapper {
        gap: 1rem;
    }

    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .logo i {
        display: inline-block;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

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

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

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

    .nav-links {
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        background: rgba(11, 15, 26, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow-y: auto;
        transition: max-height 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        max-height: calc(100vh - 54px);
    }

    .nav-links a {
        padding: 1rem 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.9rem;
    }

    .nav-links a::after {
        display: none;
    }

    .cta-btn-nav {
        display: none;
    }
}

/* ============ EXTRA SMALL SCREENS ============ */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-wrapper {
        gap: 0.5rem;
        padding: 0 8px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }

    .nav-links a {
        padding: 0.875rem 12px;
        font-size: 0.85rem;
    }
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-text {
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: var(--gray-med);
    margin-bottom: 40px;
    line-height: 1.6;
}

.highlight {
    color: var(--neon-cyan);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat p {
    color: var(--gray-med);
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: var(--gray-med);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============ PROBLEM SECTION ============ */
.problem-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.5), rgba(26, 31, 58, 0.5));
}

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

.problem-card {
    padding: 40px;
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 15px;
}

.stat-number {
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.stat-unit {
    margin-left: 5px;
}

.problem-stat-item p {
    color: var(--gray-med);
}

/* ============ SOLUTION SECTION ============ */
.solution-section {
    padding: 100px 20px;
}

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

.solution-card {
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
}

.solution-card:hover .card-glow {
    opacity: 0.1;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-card.active {
    border: 2px solid var(--neon-cyan);
    background: rgba(0, 229, 255, 0.05);
}

.features-list {
    list-style: none;
}

/* Persistent footer legal button */
.footer-legal-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: var(--primary-dark);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.footer-legal-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 229, 255, 0.18);
}

/* WhatsApp floating button styles */
.footer-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 80px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.footer-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 44px rgba(18, 140, 126, 0.25);
}

.footer-whatsapp i { font-size: 1.2rem; }

@media (max-width: 480px) {
    .footer-whatsapp { right: 12px; bottom: 80px; width: 48px; height: 48px; }
}

@media (max-width: 480px) {
    .footer-legal-button {
        right: 12px;
        bottom: 12px;
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}

/* ============================================
   Legal & Policy pages - reduced typography
   ============================================ */
.policy-content, .terms-content {
    color: var(--gray-med);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 80px;
}

.policy-header h1, .terms-header h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.policy-header .last-updated, .terms-header .last-updated {
    font-size: 0.9rem;
    color: var(--gray-med);
    margin-bottom: 1.25rem;
}

.policy-body h2, .terms-body h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.policy-body h3, .terms-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.policy-body p, .terms-body p,
.policy-body li, .terms-body li {
    font-size: 0.98rem;
    color: var(--gray-med);
}

@media (max-width: 768px) {
    .policy-content, .terms-content { padding: 20px 16px 60px; }
    .policy-header h1, .terms-header h1 { font-size: 1.6rem; }
    .policy-body h2, .terms-body h2 { font-size: 1.1rem; }
}

/* Compact legal page overrides for tighter layout */
#privacy .policy-content,
#terms .terms-content,
.policy-content.container,
.terms-content.container {
    padding: 12px 14px 36px !important;
    max-width: 980px;
}

#privacy .policy-header h1,
#terms .terms-header h1 {
    font-size: 1.6rem;
}

#privacy .policy-body h2,
#terms .terms-body h2 {
    margin-top: 1.2rem;
}

/* Compact paragraph/list spacing */
#privacy .policy-body p, #terms .terms-body p,
#privacy .policy-body li, #terms .terms-body li {
    margin-bottom: 8px !important;
}

/* Remove any remaining top padding on the main container */
#privacy.site-main.container, #terms.site-main.container {
    padding-top: 0 !important;
}

/* Reduce the top gap between navbar and legal pages */
#privacy.site-main.container,
#terms.site-main.container {
    padding-top: 8px !important;
}

#privacy .policy-content,
#terms .terms-content {
    padding-top: 8px !important;
    margin-top: 0 !important;
}
/* More aggressive tightening */
#privacy .policy-content, #terms .terms-content {
    padding-top: 0 !important;
    padding-bottom: 28px !important;
}

#privacy .policy-header, #terms .terms-header {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
}

#privacy .policy-header h1, #terms .terms-header h1 {
    margin: 0 0 4px 0 !important;
}

#privacy .policy-header .last-updated, #terms .terms-header .last-updated {
    margin: 0 0 8px 0 !important;
    font-size: 0.85rem;
}

#privacy .policy-body h2, #terms .terms-body h2 {
    margin-top: 0.8rem !important;
}

.features-list li {
    color: var(--gray-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* =============================
   Legal page link styling (theme-consistent)
   ============================= */
#privacy .policy-body a,
#terms .policy-body a,
#privacy .policy-toc a,
#terms .policy-toc a {
    color: var(--neon-cyan);
    text-decoration: none;
    background-image: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: 0 100%;
    padding-bottom: 2px;
    transition: background-size 0.22s ease, color 0.15s ease;
}

#privacy .policy-body a:hover,
#terms .policy-body a:hover,
#privacy .policy-toc a:hover,
#terms .policy-toc a:hover {
    color: var(--white);
    background-size: 100% 2px;
}

#privacy .policy-body a:visited,
#terms .policy-body a:visited,
#privacy .policy-toc a:visited,
#terms .policy-toc a:visited {
    color: var(--neon-purple);
}

#privacy .policy-body a:focus,
#terms .policy-body a:focus,
#privacy .policy-toc a:focus,
#terms .policy-toc a:focus {
    outline: 2px solid rgba(59,130,246,0.14);
    outline-offset: 3px;
}

/* Reduce default blue from imported/old HTML by forcing theme color inside legal sections */
#privacy a, #terms a { color: inherit; }

/* ============ COMPARISON SECTION ============ */
.comparison-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.5), rgba(26, 31, 58, 0.5));
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(0, 229, 255, 0.05);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th {
    padding: 25px;
    text-align: left;
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 1rem;
}

.comparison-table td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.02);
}

.highlight-col {
    background: rgba(0, 229, 255, 0.08);
}

.comparison-table i {
    font-size: 1.3rem;
}

.fa-check {
    color: var(--neon-cyan);
}

.fa-times {
    color: var(--accent-pink);
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: 100px 20px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat( 1fr);
    gap: 28px;
    position: relative;
}

.timeline-item {
    position: relative;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.timeline-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-media img {
    transform: scale(1.05);
}

.timeline-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.2rem;
    z-index: 10;
}

.timeline-content {
    padding-left: 0;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-content i {
    color: var(--neon-cyan);
}

.timeline-content p {
    color: var(--gray-med);
    line-height: 1.5;
    font-size: 0.95rem;
}

.timeline-connector {
    height: 20px;
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
    display: none;
}

@media (max-width: 767px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-item {
        grid-column: 1 / -1;
        padding: 16px;
    }

    .timeline-media {
        aspect-ratio: 16 / 9;
        min-height: 180px;
    }

    .timeline-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .timeline-number {
        width: 42px;
        height: 42px;
        top: 14px;
        left: 14px;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .timeline-connector {
        display: block;
        grid-column: 1 / -1;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, rgba(0,229,255,0), #00E5FF, rgba(0,229,255,0));
        box-shadow: 0 4px 16px rgba(0, 229, 255, 0.25);
        margin: 6px 0;
    }
}

@media (min-width: 1200px) {
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px;
        position: relative;
    }

    .timeline-connector {
        display: block;
        grid-column: 1 / -1;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, rgba(0,229,255,0), #00E5FF 20%, #00A6FF 80%, rgba(0,229,255,0));
        box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
        margin: 8px 0;
        transition: box-shadow 0.3s ease;
    }

    .timeline-connector:hover {
        box-shadow: 0 8px 28px rgba(0, 229, 255, 0.45);
    }
}

    /* ============ AI SURVEILLANCE SHOWCASE ============ */
    .ai-surveillance-showcase {
        position: relative;
        padding: 110px 20px;
        overflow: hidden;
        background:
            radial-gradient(circle at top left, rgba(0, 229, 255, 0.14), transparent 34%),
            radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.14), transparent 30%),
            linear-gradient(135deg, rgba(11, 15, 26, 0.95), rgba(26, 31, 58, 0.9));
    }

    .ai-surveillance-showcase::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 72px 72px;
        opacity: 0.14;
        pointer-events: none;
    }

    .showcase-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        gap: 36px;
        align-items: center;
    }

    .showcase-visual,
    .showcase-content {
        position: relative;
    }

    .showcase-visual {
        padding: 20px;
        overflow: hidden;
        border: 1px solid rgba(0, 229, 255, 0.12);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    }

    .showcase-main-frame {
        position: relative;
        min-height: 520px;
        border-radius: 24px;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(6, 14, 28, 0.85), rgba(11, 15, 26, 0.95));
        border: 1px solid rgba(0, 229, 255, 0.18);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 0 1px rgba(0, 229, 255, 0.12), 0 24px 60px rgba(0, 0, 0, 0.45);
    }

    .showcase-carousel {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .showcase-carousel-track {
        display: flex;
        width: 300%;
        height: 100%;
        animation: showcaseCarousel 18s infinite ease-in-out;
    }

    .showcase-carousel-slide {
        flex: 0 0 33.3333%;
        height: 100%;
    }

    .showcase-main-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    }

    .showcase-main-frame:hover .showcase-carousel-track {
        animation-play-state: paused;
    }

    .showcase-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(3, 8, 18, 0.55), rgba(11, 15, 26, 0.15) 50%, rgba(0, 229, 255, 0.12));
        pointer-events: none;
    }

    .showcase-radar {
        position: absolute;
        inset: auto auto 24px 24px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 1px solid rgba(0, 229, 255, 0.18);
        background: radial-gradient(circle, rgba(0, 229, 255, 0.14), transparent 68%);
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.08);
        opacity: 0.8;
        pointer-events: none;
    }

    .showcase-radar::before,
    .showcase-radar::after {
        content: '';
        position: absolute;
        inset: 16px;
        border-radius: 50%;
        border: 1px solid rgba(0, 229, 255, 0.12);
    }

    .showcase-radar::after {
        inset: 34px;
    }

    .showcase-chip {
        position: absolute;
        top: 18px;
        left: 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(11, 15, 26, 0.62);
        border: 1px solid rgba(0, 229, 255, 0.18);
        color: var(--white);
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 0 24px rgba(0, 229, 255, 0.08);
    }

    .showcase-chip i {
        color: var(--neon-cyan);
    }

    .showcase-mini-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    .showcase-mini-card {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px;
        border: 1px solid rgba(0, 229, 255, 0.1);
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .showcase-mini-card:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 229, 255, 0.28);
        box-shadow: 0 18px 40px rgba(0, 229, 255, 0.12);
    }

    .showcase-mini-image {
        width: 96px;
        height: 96px;
        flex-shrink: 0;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(0, 229, 255, 0.18);
        box-shadow: 0 0 22px rgba(0, 229, 255, 0.12);
    }

    .showcase-mini-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.45s ease;
    }

    .showcase-mini-card:hover .showcase-mini-image img {
        transform: scale(1.08);
    }

    .showcase-mini-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .showcase-mini-card p {
        color: var(--gray-med);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .showcase-content {
        padding: 10px 0;
    }

    .showcase-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(0, 229, 255, 0.08);
        border: 1px solid rgba(0, 229, 255, 0.16);
        color: var(--neon-cyan);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .showcase-content h2 {
        font-size: clamp(2rem, 4vw, 3.4rem);
        line-height: 1.05;
        margin-bottom: 16px;
        background: linear-gradient(135deg, var(--white), var(--neon-cyan));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .showcase-lead {
        color: var(--gray-light);
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 28px;
        max-width: 60ch;
    }

    .showcase-features {
        display: grid;
        gap: 18px;
        margin-bottom: 30px;
    }

    .showcase-feature-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .showcase-feature-item:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 229, 255, 0.24);
        box-shadow: 0 18px 36px rgba(0, 229, 255, 0.08);
    }

    .showcase-feature-icon {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(0, 229, 255, 0.16));
        color: var(--neon-cyan);
        box-shadow: 0 0 18px rgba(0, 229, 255, 0.1);
    }

    .showcase-feature-icon i {
        font-size: 1.2rem;
    }

    .showcase-feature-item h3 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .showcase-feature-item p {
        color: var(--gray-med);
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .showcase-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .showcase-actions .btn {
        min-width: 160px;
    }

    .showcase-actions .btn-secondary {
        background: rgba(255, 255, 255, 0.05);
    }

    .showcase-actions .btn-secondary:hover {
        background: rgba(0, 229, 255, 0.1);
    }

    @keyframes showcaseCarousel {
        0%, 28% {
            transform: translateX(0);
        }
        33%, 61% {
            transform: translateX(-33.3333%);
        }
        66%, 94% {
            transform: translateX(-66.6666%);
        }
        100% {
            transform: translateX(0);
        }
    }

    @media (max-width: 991px) {
        .ai-surveillance-showcase {
            padding: 90px 20px;
        }

        .showcase-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .showcase-main-frame,
        .showcase-main-image {
            min-height: 320px;
        }
    }

    @media (max-width: 767px) {
        .ai-surveillance-showcase {
            padding: 72px 16px;
        }

        .showcase-visual {
            padding: 12px;
        }

        .showcase-main-frame,
        .showcase-main-image {
            min-height: 330px;
        }

        .showcase-chip {
            top: 14px;
            left: 14px;
            padding: 8px 12px;
            font-size: 0.7rem;
        }

        .showcase-radar {
            width: 124px;
            height: 124px;
            inset: auto auto 12px 12px;
        }

        .showcase-mini-grid {
            display: none;
        }

        .showcase-content h2 {
            font-size: 2rem;
        }

        .showcase-lead {
            font-size: 0.98rem;
        }

        .showcase-feature-item {
            padding: 14px;
        }

        .showcase-actions {
            flex-direction: column;
        }

        .showcase-actions .btn {
            width: 100%;
        }
    }

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.5), rgba(26, 31, 58, 0.5));
}

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

.service-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    color: var(--neon-blue);
    gap: 10px;
}

/* ============ PRICING SECTION ============ */
.pricing-section {
    padding: 100px 20px;
}

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

.pricing-card {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.price-desc {
    color: var(--gray-med);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 30px 0;
    font-weight: 700;
}

.currency {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

.amount {
    font-size: 3rem;
    color: var(--white);
    margin: 0 5px;
}

.period {
    color: var(--gray-med);
    font-size: 1rem;
    font-weight: 400;
}

.price-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    color: var(--gray-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: var(--neon-cyan);
    font-weight: 700;
}

.premium-highlight {
    border: 2px solid var(--neon-cyan);
    background: rgba(0, 229, 255, 0.08);
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(59, 130, 246, 0.05));
    border: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideInDown 0.6s ease-out;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-med);
    margin-bottom: 40px;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: scaleIn 0.6s ease-out 0.4s both;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.5), rgba(26, 31, 58, 0.5));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.contact-form-container {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    position: relative;
    z-index: 3;
}

.form-group select {
    padding: 15px 48px 15px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    position: relative;
    z-index: 3;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gray-med) 50%), linear-gradient(135deg, var(--gray-med) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1.1em), calc(100% - 15px) calc(1.1em);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-group select option {
    background: var(--secondary-dark);
    color: var(--white);
}

.form-group select:focus {
    background-color: rgba(0, 229, 255, 0.05);
    border-color: var(--neon-cyan);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.form-group select,
.form-group input[type="checkbox"] {
    position: relative;
    z-index: 3;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-med);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--neon-cyan);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent-pink);
}

.form-error {
    color: var(--accent-pink);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group input.error ~ .form-error,
.form-group textarea.error ~ .form-error {
    display: block;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
    margin-top: 10px;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0 auto 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray-med);
}

/* ============ PAGE HEADERS ============ */
.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    animation: slideInDown 0.6s ease-out;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gray-med);
    margin-bottom: 40px;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

/* ============ ABOUT PAGE ============ */
.about-hero,
.services-hero,
.blog-hero,
.contact-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(59, 130, 246, 0.05));
    border-bottom: 1px solid var(--border-color);
}

.about-hero-content,
.services-hero-content,
.blog-hero-content,
.contact-hero-content {
    text-align: center;
    max-width: 800px;
}

.company-overview {
    padding: 100px 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--neon-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-content p {
    color: var(--gray-med);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

    padding: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray-med);
    font-size: 0.95rem;
}

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

    .about-hero {
        min-height: auto;
        padding: 72px 16px 56px;
    }

    .page-title {
        font-size: 2.4rem;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .page-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 28px;
    }

    .company-overview,
    .company-history,
    .team-section,
    .values-section,
    .achievements-section {
        padding: 72px 16px;
    }

    .overview-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 24px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 64px 14px 44px;
    }

    .page-title {
        font-size: 1.95rem;
        line-height: 1.08;
    }

    .page-subtitle {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 22px;
    }

    .overview-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .overview-content h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .overview-content p,
    .timeline-event p,
    .team-bio,
    .value-card p,
    .achievement-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .timeline-event {
        padding: 18px 18px 18px 64px;
    }

    .timeline-year {
        left: 18px;
        top: 18px;
        width: 46px;
        height: 46px;
        font-size: 0.95rem;
    }

    .team-card,
    .value-card,
    .achievement-card {
        padding: 28px 20px;
    }
}

/* ============ TIMELINE VERTICAL ============ */
.company-history {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.5), rgba(26, 31, 58, 0.5));
}

.timeline-vertical {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-event {
    position: relative;
    padding: 30px 30px 30px 100px;
}

.timeline-year {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.timeline-event h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.timeline-event p {
    color: var(--gray-med);
    line-height: 1.6;
}

/* ============ TEAM SECTION ============ */
.team-section {
    padding: 100px 20px;
}

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

.team-card {
    text-align: center;
    padding: 40px;
    transition: var(--transition);
}

/* Primary founder card styling */
.team-card.primary {
    grid-column: span 2;
    padding: 50px;
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Slight visual difference for demo placeholders */
.team-card.demo .team-bio {
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.team-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--neon-cyan);
    color: var(--primary-dark);
}

/* ============ VALUES SECTION ============ */
.values-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.5), rgba(26, 31, 58, 0.5));
}

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

.value-card {
    padding: 40px;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* ============ ACHIEVEMENTS SECTION ============ */
.achievements-section {
    padding: 100px 20px;
}

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

.achievement-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.achievement-card p {
    color: var(--gray-med);
}

/* ============ SERVICES PAGE STYLES ============ */
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.detailed-service-card {
    padding: 40px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-intro {
    color: var(--gray-med);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-features,
.service-benefits {
    margin-bottom: 25px;
}

.service-features h4,
.service-benefits h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i,
.service-benefits i {
    color: var(--neon-cyan);
}

.service-features ul,
.service-benefits ul {
    list-style: none;
}

.service-features li,
.service-benefits li {
    padding: 8px 0;
    color: var(--gray-light);
    padding-left: 25px;
    position: relative;
}

/* ============ COMPARISON / DIFFERENCE SECTION ============ */
.comparison-section {
    padding: 100px 20px;
}
.comparison-wrap {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 40px;
    align-items: center;
}
.comparison-visual {
    --card-radius: 22px;
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(11,15,26,0.6), rgba(26,31,58,0.6));
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.04);
}
.comparison-split {
    display: flex;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.split-half {
    flex: 1 1 50%;
    position: relative;
}
.comparison-shot {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.split-left {
    background: linear-gradient(180deg, rgba(3,6,12,0.95), rgba(11,12,20,0.95));
}
.split-left .comparison-shot {
    filter: grayscale(0.45) brightness(0.68) contrast(0.92);
}
.split-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 6px 6px;
    mix-blend-mode: overlay;
    opacity: 0.25;
    pointer-events: none;
}
.split-right {
    background: linear-gradient(180deg, rgba(6,14,40,0.95), rgba(12,24,56,0.95));
}
.split-right .comparison-shot {
    filter: brightness(1.03) saturate(1.05) contrast(1.02);
}
.split-divider {
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,229,255,0.08));
    position: absolute;
    left: 50%;
    top: 12px;
    bottom: 12px;
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 6;
}
.overlay-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.split-label {
    position: absolute;
    top: 18px;
    z-index: 7;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(11,15,26,0.45);
    color: rgba(255,255,255,0.85);
}
.split-label-left { left: 18px; }
.split-label-right { right: 18px; }
.split-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(0,229,255,0.18), transparent 36%);
    mix-blend-mode: screen;
    opacity: 0.65;
    pointer-events: none;
}
.detection-box {
    position: absolute;
    width: 110px;
    height: 160px;
    border: 3px solid rgba(0,229,255,0.9);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,229,255,0.12);
    right: 24%;
    top: 45%;
    transform: translateY(-50%);
    animation: pulseBox 2.2s ease-in-out infinite;
    opacity: 0;
}
.detection-box.active { opacity: 1; }

@keyframes pulseBox {
    0% { transform: translateY(-50%) scale(0.95); box-shadow: 0 0 6px rgba(0,229,255,0.06); }
    50% { transform: translateY(-50%) scale(1.02); box-shadow: 0 0 40px rgba(0,229,255,0.16); }
    100% { transform: translateY(-50%) scale(0.98); box-shadow: 0 0 10px rgba(0,229,255,0.08); }
}

.visual-caption {
    position: absolute;
    left: 24px;
    bottom: 18px;
    color: var(--gray-med);
    font-size: 0.95rem;
}

.comparison-content h2 {
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    margin-bottom: 12px;
    line-height: 1.03;
    font-weight: 800;
}
.comparison-content p.lead {
    color: var(--gray-med);
    margin-bottom: 22px;
    font-size: 1.05rem;
}
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-problem, .card-solution {
    border-radius: 20px;
    padding: 22px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}
.card-problem {
    border-color: rgba(220,60,60,0.12);
    background: linear-gradient(180deg, rgba(11,12,20,0.6), rgba(11,12,20,0.45));
}
.card-problem .card-icon {
    color: #F87171; /* subtle red */
}
.card-solution {
    border-color: rgba(34,197,94,0.14);
    background: linear-gradient(180deg, rgba(6,18,28,0.6), rgba(8,22,38,0.45));
    box-shadow: 0 20px 40px rgba(0,229,255,0.06);
}
.card-solution .card-icon {
    color: var(--neon-cyan);
}
.card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(59,130,246,0.12);
    flex-shrink: 0;
    font-size: 1.4rem;
}
.card-problem .card-icon { background: linear-gradient(135deg, rgba(248,113,113,0.12), rgba(248,113,113,0.18)); color: #F87171; box-shadow: none; }
.card-solution .card-icon { background: linear-gradient(135deg, rgba(0,229,255,0.16), rgba(59,130,246,0.12)); color: var(--neon-cyan); }
.card-title h3 { margin: 0; }
.card-bullets { list-style: none; padding-left: 0; margin: 0; color: var(--gray-light); }
.card-bullets li { margin-bottom: 10px; padding-left: 26px; position: relative; font-size: 1rem; }
.card-bullets li::before { content: ''; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--neon-cyan); box-shadow: 0 4px 12px rgba(0,229,255,0.12); }

.comparison-tagline {
    margin-top: 18px;
    color: var(--gray-med);
    font-weight: 600;
}

/* Ensure content column appears on right on large screens and stacks properly on small */
.comparison-visual { order: 0; }
.comparison-content { order: 1; }

/* Hover/entrance */
.card-problem:hover, .card-solution:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.45); }
.comparison-section .fade-up { opacity: 0; transform: translateY(14px); transition: var(--transition); }
.comparison-section .fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
    .comparison-wrap { grid-template-columns: 1fr; }
    .comparison-visual { order: -1; }
    .comparison-split { height: 320px; }
    .detection-box { right: 20%; width: 90px; height: 140px; }
    .split-label { top: 14px; font-size: 0.66rem; }
}

/* Mobile improvements for comparison section */
@media (max-width: 600px) {
    .comparison-section { padding: 48px 16px; position: relative; z-index: 5; }
    .comparison-wrap { gap: 18px; }
    .comparison-visual { padding: 14px; border-radius: 14px; }
    .comparison-split { display: block; height: auto; border-radius: 12px; }
    .split-half { width: 100%; height: auto; }
    .comparison-shot { width: 100%; height: auto; max-height: 420px; object-fit: cover; border-radius: 10px; }
    .split-divider { display: none; }
    .visual-caption { position: static; margin-top: 8px; color: var(--gray-med); font-size: 0.95rem; }
    .cards-stack { gap: 14px; }
    .card-problem, .card-solution { padding: 18px; }

    /* Hide heavy decorative elements on small screens to reduce overlap and improve clarity */
    .comparison-particles, .ai-cube, .scan-line, .split-glow, .showcase-radar { display: none !important; }
    .detection-box { display: none !important; }

    /* Ensure labels remain readable and don't overlap */
    .split-label { position: relative; top: 0; left: 0; right: 0; display: inline-block; margin: 6px 0; }
    .split-label-left, .split-label-right { transform: none; }

    /* Reduce visual noise from shadows that can cause banding on low-end devices */
    .comparison-visual { box-shadow: none; border: 1px solid rgba(255,255,255,0.03); }

    /* If a floating widget (chat/recaptcha) overlaps content, push action buttons up slightly */
    .comparison-actions { margin-bottom: 14px; }
}

@media (max-width: 420px) {
    .comparison-section { padding-bottom: 110px; }
    .comparison-actions .btn { display: inline-block; width: 100%; }
}


.service-features li::before,
.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

.service-pricing {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: var(--neon-cyan);
    font-weight: 600;
}

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

.addon-card {
    padding: 30px;
    text-align: center;
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin: 0 auto 15px;
}

.addon-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.addon-card p {
    color: var(--gray-med);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ============ SERVICE COMPARISON TABLE ============ */
.service-comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
}

.service-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.service-comparison-table thead {
    background: rgba(0, 229, 255, 0.05);
    border-bottom: 2px solid var(--border-color);
}

.service-comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--neon-cyan);
}

.service-comparison-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.service-comparison-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.02);
}

.service-comparison-table .highlight-col {
    background: rgba(0, 229, 255, 0.08);
}

/* ============ IMPLEMENTATION STEPS ============ */
.implementation-section {
    padding: 100px 20px;
}

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

.impl-step {
    padding: 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.impl-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.impl-step p {
    color: var(--gray-med);
    line-height: 1.6;
}

/* ============ BLOG PAGE STYLES ============ */
.featured-blog-section {
    padding: 80px 20px;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-dark);
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.featured-image i {
    opacity: 0.3;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-cyan);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ============ BLOG CARD IMAGE ENHANCEMENTS ============ */
.blog-card-image {
    overflow: hidden !important;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    opacity: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    display: block;
}

.blog-card-image img:not([src]),
.blog-card-image img[src=""] {
    opacity: 0;
    height: 0;
}

.blog-card-image i {
    opacity: 0.4;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

/* Fallback for broken images */
.blog-card-image img[alt] {
    color: var(--neon-cyan);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-date,
.meta-author,
.meta-read {
    color: var(--gray-med);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-categories-section {
    padding: 40px 20px;
    text-align: center;
}

.category-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.blog-articles-section {
    padding: 50px 20px;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-dark);
    position: relative;
    opacity: 0.4;
}

.read-time {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-cyan);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.blog-category {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-cyan);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.blog-date {
    color: var(--gray-med);
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.blog-card p {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-med);
}

.blog-author i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

.read-more {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--neon-blue);
}

/* ============ NEWSLETTER SECTION ============ */
.newsletter-section {
    padding: 80px 20px;
}

.newsletter-card {
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
}

.newsletter-note {
    font-size: 0.85rem;
    color: var(--gray-med);
}

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

.related-card {
    padding: 30px;
    text-align: center;
}

.related-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

/* ============ CONTACT PAGE STYLES ============ */
.quick-contact-section {
    padding: 60px 20px;
}

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

.quick-contact-card {
    padding: 30px;
    text-align: center;
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0 auto 15px;
}

.quick-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ============ COMPARISON 3D UPGRADES ============ */
.comparison-3d-card {
    perspective: 1200px;
    -webkit-perspective: 1200px;
    position: relative;
}
.comparison-3d-card .comparison-frame {
    transform-style: preserve-3d;
    transition: transform 420ms cubic-bezier(.16,.84,.24,1);
    will-change: transform;
    border-radius: 22px;
    overflow: visible;
}
.comparison-3d-card .comparison-split { /* keep previous layout but make layerable */
    transform-style: preserve-3d;
    transition: transform 360ms ease-out;
}
.comparison-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.comparison-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(0,229,255,0.9), rgba(59,130,246,0.8));
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(4px);
    transform: translate3d(0,0,0);
}
.comparison-particles .p1 { left: 10%; top: 12%; }
.comparison-particles .p2 { left: 78%; top: 8%; width:10px; height:10px; }
.comparison-particles .p3 { left: 46%; top: 48%; width:6px; height:6px; }
.comparison-particles .p4 { left: 30%; top: 70%; width:12px; height:12px; }
.comparison-particles .p5 { left: 82%; top: 68%; width:7px; height:7px; }

/* AI cube */
.ai-cube { position: absolute; right: 18%; top: 20%; width: 66px; height: 66px; transform-style: preserve-3d; z-index: 8; }
.ai-cube .cube-inner { width:100%; height:100%; position: relative; transform-style: preserve-3d; transition: transform 320ms ease-out; }
.ai-cube .face { position: absolute; width:100%; height:100%; border-radius:8px; background: linear-gradient(135deg, rgba(0,229,255,0.14), rgba(59,130,246,0.12)); box-shadow: 0 8px 28px rgba(0,229,255,0.06); border:1px solid rgba(0,229,255,0.18); }
.ai-cube .face-front  { transform: translateZ(33px); }
.ai-cube .face-back   { transform: rotateY(180deg) translateZ(33px); }
.ai-cube .face-right  { transform: rotateY(90deg) translateZ(33px); }
.ai-cube .face-left   { transform: rotateY(-90deg) translateZ(33px); }
.ai-cube .face-top    { transform: rotateX(90deg) translateZ(33px); }
.ai-cube .face-bottom { transform: rotateX(-90deg) translateZ(33px); }

/* Scan line */
.scan-line { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(0,229,255,0.18), transparent); mix-blend-mode: screen; animation: scan 2.6s linear infinite; opacity: 0.9; z-index: 7; }
@keyframes scan { 0% { transform: translateY(-6%); } 100% { transform: translateY(106%); } }

/* Split overlays for depth */
.split-overlay { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; opacity: 0.6; }
.split-overlay-left { background: linear-gradient(180deg, rgba(11,12,20,0.6), rgba(11,12,20,0.2)); }
.split-overlay-right { background: linear-gradient(180deg, rgba(2,8,18,0.2), rgba(6,24,56,0.12)); }

.comparison-3d-card .split-label { transform: translateZ(40px); }
.comparison-3d-card .detection-box { transform: translateZ(24px); }

/* Subtle hover lift for solution card */
.card-solution:hover { transform: translateY(-10px) translateZ(12px); box-shadow: 0 34px 80px rgba(0,0,0,0.6); }

/* Motion and accessibility fallbacks */
@media (prefers-reduced-motion: reduce) {
    .comparison-3d-card .comparison-frame,
    .ai-cube .cube-inner,
    .scan-line { animation: none; transition: none; }
}

@media (max-width: 900px) {
    .ai-cube { display: none; }
    .comparison-particles { display: none; }
    .comparison-split { height: auto; }
    .comparison-visual { padding: 12px; }
}


.main-info {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 5px;
}

.sub-info {
    color: var(--gray-med);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--neon-blue);
}

/* ============ MAIN CONTACT SECTION ============ */
.main-contact-section {
    padding: 80px 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-med);
}

.contact-form {
    padding: 40px;
}

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

.form-group select {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
}

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

.form-group.checkbox input {
    width: auto;
    padding: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-med);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.demo-benefits,
.faq-links {
    list-style: none;
    margin-bottom: 20px;
}

.demo-benefits li,
.faq-links li {
    padding: 8px 0;
    color: var(--gray-light);
}

.demo-benefits i {
    color: var(--neon-cyan);
    margin-right: 10px;
    font-weight: 700;
}

.faq-links a {
    color: var(--gray-med);
    text-decoration: none;
    transition: var(--transition);
}

.faq-links a:hover {
    color: var(--neon-cyan);
}

.response-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

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

.response-item .time {
    display: block;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    font-weight: 700;
    margin-bottom: 5px;
}

.response-item span:last-child {
    color: var(--gray-med);
    font-size: 0.9rem;
}

/* ============ OFFICES SECTION ============ */
.offices-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.5), rgba(26, 31, 58, 0.5));
}

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

.office-card {
    padding: 40px;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.office-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.office-address {
    color: var(--gray-med);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.office-phone,
.office-email {
    color: var(--white);
    margin-bottom: 10px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ============ SUPPORT OPTIONS ============ */
.support-options-section {
    padding: 80px 20px;
}

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

.support-option {
    padding: 40px;
    text-align: center;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

.support-option h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.support-option p {
    color: var(--gray-med);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============ RESPONSIVE ADJUSTMENTS ============ */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .featured-article {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .featured-image {
        height: 250px;
    }

    .featured-content h2 {
        font-size: 1.8rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .response-times {
        grid-template-columns: 1fr;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============ FOOTER ============ */
.footer {
    background: rgba(11, 15, 26, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--gray-med);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray-med);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--neon-cyan);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--neon-cyan);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-med);
}

.footer-credit {
    color: var(--gray-med);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-credit .heart {
    color: var(--accent-pink);
    margin: 0 6px;
    font-size: 1.05rem;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.25s ease, text-shadow 0.25s ease;
}

.footer-credit-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    margin-left: 6px;
    transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.footer-credit-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.25);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--gray-med);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.15rem;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding-inline: 0.25rem;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 1.25rem;
    }

    .logo span {
        display: none;
    }

    .nav-links {
        gap: 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .problem-grid,
    .solution-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* ======= Merge fix: ensure hero keeps intended spacing ======= */
.hero {
    margin-top: 0 !important;
    padding: 100px 20px 50px !important;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0 !important;
        padding: 80px 16px 40px !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Ensure hero content is horizontally centered even with side stats */
.hero-content {
    margin: 0 auto !important;
}

@media (min-width: 992px) {
    /* .hero-stats {
        position: absolute !important;
        right: 60px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        display: flex !important;
        gap: 20px !important;
    } */
   

    /* Center the hero content absolutely on desktop to avoid layout shifts */
    .hero-content {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -10%) !important;
        max-width: 900px !important;
        text-align: center !important;
        z-index: 10 !important;
    }
}

@media (max-width: 991px) {
    .hero {
        padding-right: 16px !important;
    }

    .hero-content {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-stats {
        position: static !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.15 !important;
        overflow-wrap: anywhere;
    }

    .hero-subtitle {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
    }

    .page-title {
        font-size: 1.9rem !important;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }
}

/* ============================================
   S&N GUARDIANGRID - Premium Apple-Level Design
   ============================================ */

/* ============ PREMIUM CSS VARIABLES ============ */
:root {
    /* Color Palette - Premium & Refined */
    --primary-dark: #0F1419;
    --secondary-dark: #1A202C;
    --tertiary-dark: #242F3E;
    --neon-cyan: #00F0FF;
    --neon-blue: #0EA5E9;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-amber: #F59E0B;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-light: #F3F4F6;
    --gray-med: #9CA3AF;
    --gray-dark: #4B5563;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-color-light: rgba(255, 255, 255, 0.08);
    
    /* Transitions - Refined & Smooth */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows - Depth & Premium Feel */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15), 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Glass Effect - Sophisticated */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-hover: rgba(255, 255, 255, 0.06);
    
    /* Border Radius - Refined */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Spacing */
    --spacing: 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    overflow-x: hidden;
    background-attachment: fixed;
    letter-spacing: -0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
}

/* ============ PREMIUM TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 700;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-med);
}

/* ============ PREMIUM GRADIENT TEXT ============ */
.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(10deg);
    }
}

/* ============ PREMIUM CONTAINER ============ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

/* ============ PREMIUM GLASS CARD ============ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.glass-card:hover {
    background: var(--glass-hover);
    border-color: var(--border-color-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

/* ============ PREMIUM BUTTONS ============ */
.btn {
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid var(--border-color-light);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--neon-cyan);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 1.5px solid var(--neon-cyan);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* ============ PREMIUM ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes mouseScroll {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(8px);
    }
}

/* ============ PREMIUM LOADING ============ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: var(--transition-slow);
}

.loader::before {
    content: '';
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color-light);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loader-text {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

/* ============ PREMIUM NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.6s ease-out;
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    transition: width 0.3s ease;
}

.nav-link:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
}

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

.cta-btn-nav {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    animation: slideInRight 0.6s ease-out;
}

.cta-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    position: relative;
    width: 32px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.35rem;
}

.menu-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateX(-50%) translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

/* ============ MOBILE NAVBAR ============ */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .nav-wrapper {
        padding: 0.50rem 1rem;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }

    .menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        padding: 0;
        margin: 0;
    }

    .menu-toggle span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-toggle span:nth-child(1) {
        top: 6px;
    }

    .menu-toggle span:nth-child(2) {
        top: 12px;
    }

    .menu-toggle span:nth-child(3) {
        top: 18px;
    }

    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hero {
        margin-top: 56px;
        padding: 80px 16px 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-text {
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }

    .hero-stats {
        width: 100%;
        margin-top: 1.5rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 16px;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        z-index: 1001;
    }
/* top:56px */
    .nav-links {
        position: fixed;
        top: 0;                     
        left: 0;                
        right: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        gap: 0;
        max-height: 0;
        overflow-y: auto;
        transition: max-height 0.3s ease;
        z-index: 999;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-links.active {
        max-height: calc(100vh - 56px);
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.9rem;
        color: var(--white) !important;
        text-decoration: none !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .cta-btn-nav {
        display: none !important;
    }
}

/* ============ EXTRA SMALL SCREENS ============ */
@media (max-width: 480px) {
    .hero {
        padding: 72px 14px 32px;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        margin-top: 1rem;
        gap: 0.85rem;
    }

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

    .stat p {
        font-size: 0.8rem;
    }

    .nav-wrapper {
        padding: 0rem 0.50rem;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo span {
        display: none;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }
    .scroll-indicator {
        bottom: -70px !important;
    }
}

/* ============ PREMIUM FOOTER ============ */
.footer {
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 60px 2rem 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--gray-med);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--neon-cyan);
    padding-left: 0.5rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--neon-cyan);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-med);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-med);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

/* ============ PREMIUM HERO SECTION ============ */
#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--gray-med);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--neon-cyan);
    fill: none;
    stroke-width: 1.5;
}

/* ============ PREMIUM STATS SECTION ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    animation: scaleIn 0.6s ease-out both;
}

.stat-card h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    color: var(--gray-med);
    font-size: 1rem;
}

/* ============ PREMIUM SECTION ============ */
section {
    padding: 20px 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-med);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ PREMIUM FORM STYLING ============ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-error {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group input.error ~ .form-error,
.form-group textarea.error ~ .form-error {
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
    text-align: center;
    display: none;
    animation: slideInUp 0.3s ease-out;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #EF4444;
}

/* ============ CURSOR GLOW (Desktop Only) ============ */
#cursorGlow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3), rgba(0, 240, 255, 0));
    border: 1px solid var(--border-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    display: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

@media (min-width: 1024px) {
    #cursorGlow {
        display: block;
    }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

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

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

    .industry-card {
        padding: 30px 20px;
        min-height: 380px;
    }

    .industry-icon {
        font-size: 40px;
    }

    .industry-title {
        font-size: 16px;
    }

    .industry-threat,
    .industry-benefits {
        font-size: 12px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============ PREMIUM UTILITY CLASSES ============ */
.text-center {
    text-align: center;
}

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

.blur-bg {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.premium-shadow {
    box-shadow: var(--shadow-xl);
}

.premium-glow {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.no-scroll {
    overflow: hidden;
}

/* ============ PAGE HEADERS ============ */
.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    animation: slideInDown 0.6s ease-out;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gray-med);
    margin-bottom: 40px;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

/* ============ REUSABLE CARD & TEXT UTILITIES ============ */
.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.card-icon {
    font-size: 40px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.card-title {
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ============ COMPETITIVE ADVANTAGE SECTION ============ */
.competitive-advantage {
    padding: 80px 0;
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.competitor-card {
    padding: 35px;
    text-align: center;
    border-top: 4px solid var(--neon-cyan);
    transition: var(--transition);
}

.competitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.competitor-card i {
    font-size: 40px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: block;
}

.competitor-card h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
}

.competitor-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.value-proposition-section {
    margin-top: 80px;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* ============ VALUE PROPOSITION CARDS (Homepage) ============ */
.value-proposition-section .value-card {
    padding: 40px;
    border-left: 5px solid var(--neon-cyan);
    text-align: center;
    transition: var(--transition);
}

.value-proposition-section .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.value-proposition-section .value-card i {
    font-size: 36px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: block;
}

.value-proposition-section .value-card h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.value-proposition-section .value-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* ============ CORE VALUES CARDS (About Page) ============ */
.values-section {
    padding: 80px 0;
}

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

.values-section .value-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--neon-cyan);
    border-left: none;
}

.values-section .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
}

.value-icon {
    font-size: 48px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.values-section .value-card:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(0, 234, 255, 0.3));
}

.values-section .value-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.values-section .value-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ============ RESPONSIVE VALUES SECTIONS ============ */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        gap: 20px;
    }

    .values-section .value-card {
        padding: 30px;
    }

    .value-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .values-section .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .values-section .value-card p {
        font-size: 0.9rem;
    }

    .value-cards-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .value-proposition-section .value-card {
        padding: 30px;
    }

    .value-proposition-section .value-card h4 {
        font-size: 0.95rem;
    }

    .value-proposition-section .value-card p {
        font-size: 0.9rem;
    }
}

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

    .values-section .value-card {
        padding: 25px;
    }

    .value-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .values-section .value-card h3 {
        font-size: 1rem;
    }

    .values-section .value-card p {
        font-size: 0.85rem;
    }

    .value-cards-grid {
        grid-template-columns: 1fr;
    }

    .value-proposition-section .value-card {
        padding: 20px;
    }

    .value-proposition-section .value-card i {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .value-proposition-section .value-card h4 {
        font-size: 0.9rem;
    }

    .value-proposition-section .value-card p {
        font-size: 0.85rem;
    }
}

/* ============ AI DETECTION SECTION ============ */
.ai-detection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.detection-item {
    padding: 35px;
    border-left: 4px solid var(--neon-cyan);
}

.detection-item-icon {
    font-size: 40px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

.detection-item-title {
    color: var(--white);
    margin-bottom: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.detection-item-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* ============ TRUST SECTION ============ */
.trust-section {
    padding: 80px 0;
}

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

.trust-card {
    padding: 40px;
    border-left: 5px solid var(--neon-cyan);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.trust-title {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.trust-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    font-size: 14px;
}

.about-hero,
.services-hero,
.blog-hero,
.contact-hero,
.industries-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(14, 165, 233, 0.05));
    border-bottom: 1px solid var(--border-color);
}

.industries-hero .section-label {
    text-transform: uppercase;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* ============ INDUSTRIES SECTION ============ */
.industries-section {
    padding: 80px 0;
}

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

.industry-card {
    padding: 40px;
    text-align: center;
    border-top: 4px solid var(--neon-cyan);
    transition: var(--transition);
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.85), rgba(0, 240, 255, 0.08));
    z-index: 1;
    transition: var(--transition);
}

.industry-content {
    position: relative;
    z-index: 2;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.25);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.75), rgba(0, 240, 255, 0.12));
}

.industry-icon {
    font-size: 50px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    display: block;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(-5deg);
}

.industry-title {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.industry-threat {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    margin: 12px 0 8px 0;
}

.industry-threat strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.industry-benefits {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
    margin: 8px 0 0 0;
}

/* ============ INDUSTRIES CTA SECTION ============ */
.industries-cta {
    padding: 80px 2rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(14, 165, 233, 0.08));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-med);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ PREMIUM CARDS ============ */
.info-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.problem-card,
.solution-card,
.service-card,
.pricing-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.problem-card {
    animation: fadeInUp 0.6s ease-out;
}

.solution-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Import additional page styles */
@import url('./pages.css');
/* ============================================
   Page-Specific Premium Styles
   ============================================ */

/* ============ TIMELINE PREMIUM ============ */
.timeline-vertical {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.5) 0%, rgba(14, 165, 233, 0) 100%);
}

.timeline-event {
    position: relative;
    padding: 30px 30px 30px 100px;
    animation: slideInLeft 0.6s ease-out;
}

.timeline-year {
    position: absolute;
    left: -6px;
    top: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.3rem;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    border: 3px solid var(--primary-dark);
}

.timeline-event h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.timeline-event p {
    color: var(--gray-med);
    line-height: 1.6;
}

.timeline-event:hover .timeline-year {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
    transform: scale(1.1);
}

/* ============ TEAM PREMIUM ============ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

    .team-card {
    text-align: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    }

    /* On small screens the primary card should not span columns */
    .team-card.primary {
        grid-column: auto;
        padding: 36px;
        transform: none;
        box-shadow: none;
    }


.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card > * {
    position: relative;
    z-index: 1;
}

.team-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    transition: var(--transition-smooth);
}

.team-card:hover .team-image {
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--white);
}

/* ============ FRAMEWORK SECTION ============ */
.framework-intro h3 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.framework-intro p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.framework-layers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.framework-layer {
    padding: 40px;
    text-align: center;
    border-left: 5px solid;
    transition: var(--transition);
}

.framework-layer:hover {
    transform: translateY(-5px);
}

.framework-layer.detection {
    border-left-color: var(--neon-cyan);
}

.framework-layer.validation {
    border-left-color: #ffd700;
}

.framework-layer.response {
    border-left-color: var(--neon-cyan);
}

.framework-layer .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.framework-layer.detection .icon {
    color: var(--neon-cyan);
}

.framework-layer.validation .icon {
    color: #ffd700;
}

.framework-layer.response .icon {
    color: var(--neon-cyan);
}

.framework-layer h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.framework-layer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
}

.framework-benefits {
    padding: 40px;
    margin-top: 40px;
    border-left: 4px solid var(--neon-cyan);
}

.framework-benefits h3 {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.framework-benefit-item {
    padding: 20px;
    background: rgba(0, 234, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.framework-benefit-item:hover {
    background: rgba(0, 234, 255, 0.1);
    transform: translateY(-3px);
}

.framework-benefit-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.framework-benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ PRESENTER SECTION ============ */
.presenter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 234, 255, 0.03));
}

.presenter-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.presenter-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.presenter-card {
    padding: 40px;
    border: 2px solid var(--neon-cyan);
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.presenter-icon {
    font-size: 120px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.presenter-name {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.presenter-position {
    color: var(--neon-cyan);
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.95rem;
}

.presenter-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}

.presenter-content h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.presenter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.expertise-box {
    background: rgba(0, 234, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--neon-cyan);
    margin-bottom: 25px;
}

.expertise-box h4 {
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.expertise-box ul {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 2;
    margin: 0;
    padding-left: 25px;
    list-style: disc;
}

.expertise-box li {
    margin-bottom: 5px;
}

.philosophy-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.philosophy-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.philosophy-icon {
    color: #ffd700;
    margin-right: 10px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 234, 255, 0.15);
    color: var(--neon-cyan);
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 234, 255, 0.3);
    font-size: 0.95rem;
}

.social-link:hover {
    background: rgba(0, 234, 255, 0.25);
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.2);
}

/* ============ RESPONSIVE FRAMEWORK & PRESENTER ============ */
@media (max-width: 768px) {
    .presenter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .presenter-card {
        max-width: 100%;
        padding: 30px;
    }

    .presenter-icon {
        font-size: 80px;
        margin-bottom: 15px;
    }

    .presenter-name {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .presenter-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .presenter-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .framework-layers {
        gap: 20px;
        margin: 30px 0;
    }

    .framework-layer {
        padding: 30px 20px;
    }

    .framework-layer .icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .framework-layer h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .framework-layer p {
        font-size: 0.9rem;
    }

    .framework-benefits {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .framework-benefits h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .framework-benefits-grid {
        gap: 15px;
    }

    .framework-benefit-item {
        padding: 15px;
    }

    .framework-benefit-item h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .framework-benefit-item p {
        font-size: 0.85rem;
    }

    .expertise-box {
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 20px;
    }

    .expertise-box h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .expertise-box ul {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .philosophy-box {
        margin-top: 20px;
        padding: 15px;
    }

    .philosophy-box p {
        font-size: 0.85rem;
    }

    .social-links {
        margin-top: 20px;
        gap: 10px;
    }

    .social-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .presenter-grid {
        gap: 20px;
    }

    .presenter-card {
        padding: 25px;
    }

    .presenter-icon {
        font-size: 60px;
    }

    .presenter-name {
        font-size: 1.1rem;
    }

    .presenter-position {
        font-size: 0.85rem;
    }

    .presenter-tagline {
        font-size: 0.8rem;
    }

    .presenter-content h3 {
        font-size: 1.1rem;
    }

    .presenter-content p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .framework-layer .icon {
        font-size: 32px;
    }

    .framework-layer h3 {
        font-size: 1rem;
    }

    .framework-layer p {
        font-size: 0.85rem;
    }

    .expertise-box ul {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* ============ TECHNOLOGY ROADMAP SECTION ============ */
.technology-roadmap {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.05), rgba(0, 234, 255, 0.02));
}

.roadmap-label {
    color: var(--neon-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.roadmap-container {
    max-width: 900px;
    margin: 60px auto;
}

.roadmap-phase {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.roadmap-phase:last-of-type {
    margin-bottom: 0;
}

.roadmap-icon-box {
    flex-shrink: 0;
}

.roadmap-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, rgba(0, 234, 255, 0.6) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-cyan);
    transition: var(--transition);
}

.roadmap-icon i {
    font-size: 36px;
    color: var(--white);
}

.roadmap-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.2);
}

.roadmap-content {
    flex: 1;
}

.roadmap-phase h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.roadmap-phase ul {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 2;
    margin: 0;
    padding-left: 25px;
    list-style: disc;
}

.roadmap-phase li {
    margin-bottom: 5px;
}

.roadmap-vision {
    margin-top: 60px;
    padding: 35px;
    background: rgba(0, 234, 255, 0.08);
    border-left: 5px solid var(--neon-cyan);
    border-radius: 8px;
    text-align: center;
}

.roadmap-vision p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* ============ RESPONSIVE TECHNOLOGY ROADMAP ============ */
@media (max-width: 768px) {
    .technology-roadmap {
        padding: 60px 0;
    }

    .roadmap-container {
        margin: 40px auto;
    }

    .roadmap-phase {
        gap: 20px;
        margin-bottom: 40px;
    }

    .roadmap-icon {
        width: 70px;
        height: 70px;
    }

    .roadmap-icon i {
        font-size: 30px;
    }

    .roadmap-phase h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .roadmap-phase ul {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .roadmap-vision {
        margin-top: 40px;
        padding: 25px;
    }

    .roadmap-vision p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .technology-roadmap {
        padding: 40px 0;
    }

    .roadmap-container {
        margin: 30px auto;
    }

    .roadmap-phase {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .roadmap-icon-box {
        display: flex;
        justify-content: center;
    }

    .roadmap-icon {
        width: 60px;
        height: 60px;
    }

    .roadmap-icon i {
        font-size: 26px;
    }

    .roadmap-phase h3 {
        font-size: 1rem;
    }

    .roadmap-phase ul {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .roadmap-vision {
        margin-top: 30px;
        padding: 20px;
    }

    .roadmap-vision p {
        font-size: 0.9rem;
    }
}

/* ============ AI DETECTION SECTION ============ */
.ai-detection-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.05), rgba(255, 215, 0, 0.03));
}

.ai-capabilities-label {
    color: var(--neon-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

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

.detection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.detection-item:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    background: rgba(0, 234, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 234, 255, 0.15);
}

.detection-item-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    transition: var(--transition);
}

.detection-item:hover .detection-item-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(0, 234, 255, 0.3));
}

.detection-item-title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.detection-item-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============ RESPONSIVE AI DETECTION ============ */
@media (max-width: 768px) {
    .ai-detection-section {
        padding: 60px 0;
    }

    .ai-detection-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .detection-item {
        padding: 25px;
    }

    .detection-item-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .detection-item-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .detection-item-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ai-detection-section {
        padding: 40px 0;
    }

    .ai-detection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detection-item {
        padding: 20px;
    }

    .detection-item-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .detection-item-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .detection-item-text {
        font-size: 0.85rem;
    }

    .ai-capabilities-label {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
}

.team-position {
    color: var(--neon-cyan);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--neon-cyan);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============ VALUES PREMIUM ============ */
.value-card {
    padding: 40px;
    text-align: center;
    position: relative;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

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

.value-card:hover .value-icon {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: rotate(5deg) scale(1.05);
}

/* ============ ACHIEVEMENTS PREMIUM ============ */
.achievement-card {
    padding: 40px;
    text-align: center;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    transition: var(--transition-smooth);
}

.achievement-card:hover .achievement-icon {
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
    transform: translateY(-10px);
}

.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.achievement-card p {
    color: var(--gray-med);
    font-size: 0.95rem;
}

/* ============ SERVICES PREMIUM ============ */
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.detailed-service-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.detailed-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

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

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transition: var(--transition-smooth);
}

.detailed-service-card:hover .service-icon-large {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: scale(1.1);
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-features,
.service-benefits {
    margin-bottom: 25px;
}

.service-features h4,
.service-benefits h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i,
.service-benefits i {
    color: var(--neon-cyan);
}

.service-features ul,
.service-benefits ul {
    list-style: none;
}

.service-features li,
.service-benefits li {
    padding: 10px 0;
    color: var(--gray-light);
    padding-left: 25px;
    position: relative;
    transition: var(--transition-fast);
}

.service-features li::before,
.service-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

.service-features li:hover,
.service-benefits li:hover {
    color: var(--white);
    padding-left: 30px;
}

/* ============ PRICING PREMIUM ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.pricing-card {
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.pricing-card.premium-highlight {
    border: 2px solid var(--neon-cyan);
    transform: scale(1.05);
    z-index: 10;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    margin: 1rem 0;
    line-height: 1;
}

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

.price-amount .period {
    font-size: 1rem;
    color: var(--gray-med);
    font-weight: 400;
}

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

.price-features li {
    padding: 0.75rem 0;
    color: var(--gray-light);
    border-bottom: 1px solid var(--border-color);
}

.price-features li i {
    color: var(--neon-cyan);
    margin-right: 0.5rem;
}

.price-features li i.fa-times {
    color: var(--gray-dark);
}

/* ============ BLOG PREMIUM ============ */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
    margin-bottom: 50px;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-dark);
    opacity: 0.3;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-cyan);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.category-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
    position: relative;
}

.category-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-dark);
    position: relative;
    opacity: 0.4;
}

.read-time {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-cyan);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.blog-category {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.blog-date {
    color: var(--gray-med);
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.blog-card p {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-med);
}

.blog-author i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

.read-more {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--neon-blue);
    transform: translateX(3px);
}

/* ============ CONTACT PREMIUM ============ */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.quick-contact-card {
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-contact-card:hover::before {
    opacity: 1;
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transition: var(--transition-smooth);
}

.quick-contact-card:hover .quick-icon {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    transform: scale(1.1);
}

/* ============ OFFICE CARDS ============ */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.office-card {
    padding: 40px;
    position: relative;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.office-address {
    color: var(--gray-med);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ============ RESPONSIVE ADJUSTMENTS ============ */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-image {
        height: 300px;
    }

    .pricing-card.premium-highlight {
        transform: scale(1);
    }

    .detailed-services-grid {
        grid-template-columns: 1fr;
    }
}

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

    .timeline-vertical::before {
        left: 14px;
    }

    .timeline-event {
        padding: 20px 20px 20px 70px;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .category-filter {
        flex-wrap: wrap;
        gap: 10px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* ============================================
   INCIDENT EXAMPLES SECTION STYLES
   ============================================ */
        .industry-solutions-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(0, 234, 255, .02), rgba(255, 255, 255, .01));
        }
    
        .framework-intro {
            padding: 30px;
            margin-bottom: 50px;
            border-left: 4px solid #00eaff;
        }
    
        .framework-intro h3 {
            color: #00eaff;
            margin-bottom: 15px;
        }
    
        .industry-solution-card {
            padding: 40px;
            margin-bottom: 30px;
            border-left: 5px solid #00eaff;
            transition: all 0.3s ease;
        }
    
        .industry-solution-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 234, 255, .15);
        }
    
        .industry-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
    
        .industry-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 234, 255, .2), rgba(255, 215, 0, .1));
            border: 2px solid #00eaff;
            border-radius: 12px;
            font-size: 28px;
            color: #00eaff;
        }
    
        .industry-header h3 {
            font-size: 24px;
            color: #fff;
            margin: 0;
            flex-grow: 1;
        }
    
        .industry-subtitle {
            color: #00eaff;
            font-weight: 600;
            margin: 0;
        }
    
        .industry-content p {
            margin-bottom: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .85);
        }
    
        .industry-content h4 {
            color: #ffd700;
            margin: 20px 0 12px 0;
            font-weight: 700;
        }
    
        .industry-content ul {
            margin-bottom: 20px;
            margin-left: 20px;
        }
    
        .industry-content ul li {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, .8);
            list-style-type: disc;
        }
    
        .industry-content strong {
            color: #00eaff;
        }
    
        @media (max-width: 768px) {
            .industry-header {
                flex-direction: column;
                align-items: flex-start;
            }
    
            .industry-icon {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
    
            .industry-header h3 {
                font-size: 20px;
            }
        }
    
.incident-examples-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.03), rgba(255, 215, 0, 0.02));
    border-top: 1px solid rgba(0, 234, 255, 0.1);
}

.general-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.incident-card {
    padding: 30px;
    border-left: 5px solid #00eaff;
    transition: all 0.3s ease;
}

.incident-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 234, 255, 0.15);
    border-left-color: #ffd700;
}

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

.incident-time {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.incident-header h3 {
    font-size: 18px;
    color: #fff;
    margin: 8px 0 0 0;
}

.incident-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 12px;
}

.incident-outcome {
    background: rgba(0, 234, 255, 0.05);
    border-left: 3px solid #00eaff;
    padding: 12px;
    margin: 15px 0;
    border-radius: 4px;
}

.incident-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
    font-size: 13px;
}

.incident-comparison .without,
.incident-comparison .with {
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.industry-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.industry-incident-card {
    padding: 25px;
    border-left: 4px solid #00eaff;
    transition: all 0.3s ease;
}

.industry-incident-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 234, 255, 0.1);
}

.incident-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid #00eaff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00eaff;
    flex-shrink: 0;
}

.incident-result {
    background: rgba(0, 234, 255, 0.05);
    border-left: 3px solid #00eaff;
    padding: 10px;
    margin-top: 12px;
    border-radius: 4px;
    font-size: 13px;
}

/* ============ INCIDENT EXAMPLES MOBILE ============ */
@media (max-width: 768px) {
    .incident-examples-section {
        padding: 50px 0;
    }

    .general-examples-grid {
        grid-template-columns: 1fr;
    }

    .industry-examples-grid {
        grid-template-columns: 1fr;
    }

    .incident-comparison {
        grid-template-columns: 1fr;
    }

    .incident-card,
    .industry-incident-card {
        padding: 20px;
    }

    .incident-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .incident-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ============ INCIDENT EXAMPLES UTILITY CLASSES ============ */
.incident-h4 {
    color: #00eaff;
    margin: 15px 0 10px 0;
}

.incident-strong-gold {
    color: #ffd700;
}

.incident-strong-error {
    color: #ff6b6b;
}

.incident-strong-cyan {
    color: #00eaff;
}

.section-header-margin {
    margin-top: 60px;
}

.incident-time-industry {
    color: #00eaff;
    font-size: 14px;
    margin-top: 4px;
}

/* ============ VIDEO DEMO SECTION ============ */
.video-demo-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0,229,255,.04), rgba(59,130,246,.04));
    position: relative;
    overflow: hidden;
}

.video-demo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 20% 50%, rgba(0,229,255,.06), transparent);
    pointer-events: none;
}

.video-demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
}

/* ── Video frame ── */
.video-demo-frame {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(0,229,255,.25);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(0,229,255,.12);
    transition: box-shadow .4s ease, border-color .4s ease;
}

.video-demo-frame:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 80px rgba(0,229,255,.22);
    transform: none; /* override glass-card translateY */
}

.video-demo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,229,255,.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
}

/* Pulsing red dot animation */
.video-demo-badge i {
    animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .3; }
}

/* 16 : 9 responsive embed */
.video-embed-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.video-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Right-side points ── */
.video-demo-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vdp-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.vdp-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0,229,255,.1);
    border: 1px solid rgba(0,229,255,.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    transition: background .3s, border-color .3s;
}

.vdp-item:hover .vdp-icon {
    background: rgba(0,229,255,.2);
    border-color: var(--neon-cyan);
}

.vdp-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.vdp-item p {
    color: var(--gray-med);
    font-size: .92rem;
    line-height: 1.55;
}

.vdp-cta {
    margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .video-demo-wrapper {
        grid-template-columns: 1fr;
    }
    .video-demo-points {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .video-demo-section {
        padding: 70px 20px;
    }
}

