/* Custom SVG Icon Styling */
.problem-icon svg,
.feature-icon svg,
.tech-icon svg {
    stroke: #00CFFF;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 207, 255, 0.1));
}

.problem-item:hover .problem-icon svg,
.feature-card:hover .feature-icon svg,
.tech-item:hover .tech-icon svg {
    stroke: #ffffff;
    filter: drop-shadow(0 0 15px rgba(0, 207, 255, 0.6));
    transform: scale(1.1);
}

.problem-icon svg:hover,
.feature-icon svg:hover,
.tech-icon svg:hover {
    stroke: #ffffff;
    filter: drop-shadow(0 0 20px rgba(0, 207, 255, 0.8));
    transform: scale(1.15);
}

/* Icon container styling */
.problem-icon,
.feature-icon,
.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.problem-icon::before,
.feature-icon::before,
.tech-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    transition: all 0.3s ease;
}

.problem-item:hover .problem-icon::before,
.feature-card:hover .feature-icon::before,
.tech-item:hover .tech-icon::before {
    background: radial-gradient(circle, rgba(0, 207, 255, 0.2) 0%, transparent 70%);
    transform: scale(1.2);
}

/* Import Manrope font as backup */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-x: clip;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.page-main {
    flex: 1 1 auto;
    display: block;
    width: 100%;
}

.footer {
    margin-top: auto;
    flex-shrink: 0;
}

/* Light Mode - Clean, Professional Style */
body.light-mode {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

/* Smooth theme transitions - specific targeting to avoid conflicts */
section,
.navbar,
.hero,
.blog-post-section,
.metrics-section,
.product-carousel,
.features-section,
.security-section,
.footer,
.timeline-demo,
.security-header-bubble,
.flow-box,
.nav-link,
.logo-text,
.mobile-menu,
h1, h2, h3, h4, h5, h6,
p {
    transition: background-color 0.3s ease-in-out,
                color 0.3s ease-in-out,
                border-color 0.3s ease-in-out,
                box-shadow 0.3s ease-in-out !important;
}

/* Feature cards and metric bubbles get their own transition for hover effects */
.features-hero-card,
.tile,
.metric-bubble {
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease, background-color 0.5s ease !important;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

body.light-mode .navbar {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    margin: 0;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo * {
    cursor: pointer;
}

.logo-svg {
    transition: transform 0.3s ease;
    vertical-align: middle;
    display: block;
}

.logo-svg:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 72px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
    position: relative;
}

.theme-toggle:hover {
    background: rgba(0, 207, 255, 0.15);
    border-color: rgba(0, 207, 255, 0.4);
}

.toggle-option {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.toggle-option svg {
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-slider {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    left: 4px;
    top: 3px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 207, 255, 0.4);
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

/* Dark mode (default) - slider on moon */
.moon-option svg {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sun-option svg {
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light mode - slider on sun */
body.light-mode .toggle-slider {
    left: 37px;
}

body.light-mode .moon-option svg {
    opacity: 0.4;
    filter: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .sun-option svg {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(255, 200, 0, 0.8));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .theme-toggle:hover {
    background: rgba(0, 207, 255, 0.1);
    border-color: rgba(0, 207, 255, 0.3);
}

body.light-mode .toggle-option svg {
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto; /* Push to the right */
    margin-right: 16px; /* Add space before controls */
}

.nav-link {
    text-decoration: none;
    color: #b3b3b3;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00CFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00CFFF, #003BFF);
    transition: width 0.3s ease;
}

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

.nav-cta-button {
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-right: 24px;
}

.nav-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta-button:hover::before {
    left: 100%;
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.3);
}



/* Hero Section */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.98), rgba(25, 25, 40, 0.98));
    position: relative;
    overflow: clip;
}

/* Add ambient glow similar to features page */
.hero::before {
    content: '';
    position: absolute;
    left: 20%;
    top: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(0, 207, 255, 0.15), rgba(0, 59, 255, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    right: 15%;
    bottom: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1), rgba(0, 59, 255, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowPulse 10s ease-in-out infinite reverse;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Keep hero text and timeline locked together as a unit */
.hero-lock {
    position: sticky;
    top: 70px; /* navbar height */
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 80px;
    align-items: start;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    margin-left: -40px; /* move text slightly more to the left */
    overflow: visible;
    position: relative; /* ensure z-index applies */
    z-index: 5; /* force hero text above any neighboring visuals */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #00CFFF 50%, #b3b3b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: visible;
    position: relative;
    z-index: 3;
    display: inline-block;
    padding-bottom: 0.08em;
    -webkit-text-stroke: 0.01px transparent;
    text-shadow: 0 0 40px rgba(0, 207, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 207, 255, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0; /* keep visual beneath hero text */
}

.floating-logo {
    animation: float 3s ease-in-out infinite;
}

.hero-logo {
    filter: drop-shadow(0 0 20px rgba(0, 207, 255, 0.5));
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-section .section-title {
    margin-bottom: 20px;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.95));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    border-bottom: 1px solid rgba(0, 207, 255, 0.1);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00CFFF, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-item:hover::before {
    opacity: 1;
}

.problem-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 207, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 207, 255, 0.15);
    background: rgba(0, 0, 0, 0.6);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.problem-item p {
    font-size: 1.1rem;
    color: #b3b3b3;
}

/* Solution Section */
/* Product Carousel */
.product-carousel {
    text-align: left;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(10, 10, 10, 0.98));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
}

.product-carousel .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.pc-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    opacity: 1 !important;
    transition: none !important;
}

.pc-desc {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 560px;
    opacity: 1 !important;
    transition: none !important;
}

.pc-title.fade-out,
.pc-desc.fade-out {
    transition: opacity 0.6s ease-in-out !important;
    opacity: 0 !important;
}

.pc-title.fade-instant,
.pc-desc.fade-instant {
    opacity: 1 !important;
    transition: none !important;
}

/* When fade-out is removed, instantly show at full opacity with NO transition */
.pc-title:not(.fade-out),
.pc-desc:not(.fade-out) {
    opacity: 1 !important;
    transition: none !important;
}

.pc-arrow {
    background: rgba(0, 207, 255, 0.12);
    border: 1px solid rgba(0, 207, 255, 0.25);
    color: #00CFFF;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pc-arrow:hover { box-shadow: 0 8px 25px rgba(0, 207, 255, 0.25); background: rgba(0, 207, 255, 0.18); color: #16e1ff; }

/* Keep arrow buttons fixed in place even on hover */
.pc-prev:hover, .pc-next:hover { transform: translateY(-50%); }

.pc-dots { display: inline-flex; gap: 8px; margin-top: 16px; }
.pc-dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.25); border: 1px solid rgba(0,207,255,0.4); cursor: pointer; }
.pc-dot[aria-selected="true"] { background: #00CFFF; box-shadow: 0 0 12px rgba(0,207,255,0.6); }

.pc-frame {
    /* temporarily remove card backing; keep structure for future */
    border: none;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    position: relative;
}

.pc-image-wrap { 
    border-radius: 16px; 
    overflow: hidden; 
    position: relative;
    /* allow natural aspect ratio */
    /* Arden-blue ring outside the image (no encroaching) + soft glow */
    box-shadow:
        0 0 0 2px rgba(0, 207, 255, 0.65),   /* crisp outer ring */
        0 10px 30px rgba(0, 207, 255, 0.18); /* subtle ambient glow */
    /* height will be standardized at runtime to the Timesheet image ratio */
    background: #fff; /* solid backplate to prevent dark crescents during motion */
}

/* Optional inner backplate to guarantee white underlay inside rounded mask */
.pc-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #fff;
    z-index: 0;
    pointer-events: none;
}

.pc-image-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;    /* fill frame; crop edges inside rounded mask */
    object-position: center;
    display: block; 
    border-radius: 16px;
    transition: opacity 0.2s linear; /* avoid transform on image to prevent blur */
    will-change: transform;
    image-rendering: auto; /* let browser pick best resampling for crispness */
}

.pc-image-wrap .slide-container {
    display: flex;
    width: 200%;
    transition: transform 0.6s ease-in-out;
    height: 100%; /* match wrapper height for cover fit */
    gap: 0;
    background: #fff; /* ensure any seam shows white, not page bg */
    position: relative;
    z-index: 1; /* above the white underlay */
    will-change: transform;
}

.pc-image-wrap .slide-container img {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;        /* ensure both slots fill identically */
    object-position: center;
}

.pc-image-wrap .slide-container.slide-left {
    transform: translateX(-50%);
}

.pc-image-wrap .slide-container.slide-right {
    transform: translateX(50%);
}

/* Anti-gap guard during animation: micro-overscale images while sliding */
/* Remove overscale to avoid post-animation blurriness on some GPUs */

/* move arrows outwards */
.pc-prev { position: absolute; left: -64px; top: 50%; transform: translateY(-50%); }
.pc-next { position: absolute; right: -64px; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
    .product-carousel .container { padding: 0 20px; }
    .pc-prev { left: -36px; }
    .pc-next { right: -36px; }
    .product-carousel, .product-carousel .container, .pc-frame { overflow: hidden; }
    .features-section { overflow: hidden; }
}

.solution-subtitle {
    font-size: 1.25rem;
    color: #b3b3b3;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.solution-visual {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Add subtle glow behind timeline */
.solution-visual::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(0, 207, 255, 0.2), transparent 60%);
    z-index: -1;
    opacity: 0.8;
    animation: timelineGlow 4s ease-in-out infinite;
}

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

.timeline-demo {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.9), rgba(10, 10, 20, 0.95));
    border: 1px solid rgba(0, 207, 255, 0.4);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 50px rgba(0, 207, 255, 0.15),
        0 5px 20px rgba(0, 59, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Hero timeline staged reveal: items start hidden and drop in */
.timeline-demo .timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 1600ms cubic-bezier(.16,1,.3,1), opacity 1600ms ease-out;
    will-change: transform, opacity;
}

.timeline-demo.is-visible .timeline-item {
    opacity: 1;
    transform: none;
}

/* Stagger 1 → 2 → 3 */
.timeline-demo.is-visible .timeline-item:nth-child(1) { transition-delay: 0ms; }
.timeline-demo.is-visible .timeline-item:nth-child(2) { transition-delay: 600ms; }
.timeline-demo.is-visible .timeline-item:nth-child(3) { transition-delay: 1200ms; }

/* Reduced motion: show immediately */
@media (prefers-reduced-motion: reduce) {
    .timeline-demo .timeline-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Hero timeline - copy exact styling from solution-visual timeline */
.hero-timeline-demo {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 207, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 20px 1fr 70px;
    gap: 20px;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
}

.timeline-item::before {
    content: attr(data-time);
    position: absolute;
    left: -80px;
    color: #00CFFF;
    font-size: 0.9rem;
    font-weight: 600;
    width: 70px;
    text-align: right;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 207, 255, 0.6),
        0 0 40px rgba(0, 207, 255, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    justify-self: center;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(0, 207, 255, 0.6), 
            0 0 40px rgba(0, 207, 255, 0.3), 
            inset 0 1px 2px rgba(255, 255, 255, 0.3); 
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(0, 207, 255, 0.8), 
            0 0 60px rgba(0, 207, 255, 0.5), 
            inset 0 1px 2px rgba(255, 255, 255, 0.3); 
    }
}

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

.timeline-content h4 {
    color: #ffffff;
    margin: 0 0 6px 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

.duration {
    color: #00CFFF;
    font-size: 0.7rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.2), rgba(0, 59, 255, 0.15));
    padding: 3px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 207, 255, 0.3);
    font-family: 'Manrope', sans-serif;
    width: 60px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 59, 255, 0.3);
    justify-self: center;
    align-self: start;
}

.timeline-content p {
    color: #b3b3b3;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

/* Features Section - Modern Interface Style */
.features-section {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.98), rgba(38, 38, 38, 0.98));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    position: relative;
    overflow: clip;
}

/* Radial ambient glow behind the whole section */
.features-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,207,255,0.12), rgba(0,59,255,0.06) 35%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.features-showcase { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; }
.features-title { font-size: 3.2rem; margin-bottom: 8px; background: linear-gradient(135deg,#fff,#b3b3b3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.features-subtitle { color: #b3b3b3; margin-bottom: 28px; font-size: 1.2rem; }

/* Responsive scaling for features heading */
@media (max-width: 1200px) {
    .features-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .features-title { font-size: 2.2rem; }
    .features-subtitle { font-size: 1rem; }
}

/* Shared hoverable base */
.features-hero-card,
.tile {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  padding: 22px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(0,207,255,0.25);
  box-shadow: 0 0 25px -6px rgba(0, 207, 255, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease !important;
}

.features-hero-card {
  border-radius: 24px;
  padding: 36px;
}

/* Hover effects - EXACT same as flow-node:hover .flow-node-icon */
.features-hero-card:hover,
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px -6px rgba(0, 207, 255, 0.5);
}

/* Ensure glow doesn't block hover */
.features-hero-glow { 
  position: absolute; 
  inset: -30%; 
  background: radial-gradient(circle at 30% 20%, rgba(0,207,255,0.2), rgba(0,59,255,0.15) 30%, transparent 60%); 
  filter: blur(20px); 
  pointer-events: none !important;
  z-index: -1;
}
.features-hero-content { position: relative; z-index: 1; }
.features-hero-card .badge { display:inline-block; padding:6px 10px; font-size: .8rem; border-radius:999px; border:1px solid rgba(0,207,255,.4); color:#00CFFF; background: rgba(0,207,255,.08); margin-bottom:12px; position: relative; overflow: hidden; cursor: pointer; transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.features-hero-card .badge::after { content:''; position:absolute; top:0; left:-120%; width:120%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); transform: skewX(-20deg); transition:left .6s ease; }
.features-hero-card .badge:hover { background: rgba(0,207,255,.14); border-color: rgba(0,207,255,.55); color:#16e1ff; box-shadow: 0 0 0 1px rgba(0,207,255,.35) inset, 0 0 18px rgba(0,207,255,.28); transform: translateY(-1px) scale(1.03); }
.features-hero-card .badge:hover::after { left:120%; }
.features-hero-card .badge:active { transform: translateY(0) scale(.98); box-shadow: 0 0 0 1px rgba(0,207,255,.45) inset, 0 0 10px rgba(0,207,255,.2); }
.features-hero-card h3 { font-size: 1.6rem; margin: 6px 0 8px 0; color: #fff; }
.features-hero-card p { color: #b3b3b3; max-width: 520px; }

.features-right { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: start; }
.features-right .tile { will-change: transform; }

/* Disable 3D tilt on mobile to prevent accidental scroll jank */
@media (max-width: 768px) {
    .features-right .tile { transform: none !important; }
}
.tile-icon { width: 42px; height: 42px; border-radius: 999px; background: radial-gradient(circle, rgba(0,207,255,.18), rgba(0,59,255,.12)); border:1px solid rgba(0,207,255,.3); display:flex; align-items:center; justify-content:center; margin-bottom: 12px; position: relative; overflow: hidden; }
.tile-body h4 { color:#fff; margin: 4px 0 4px 0; }
.tile-body p { color:#b3b3b3; }

@keyframes pulse { 0%,100%{ transform: scale(1); opacity: .9 } 50%{ transform: scale(1.25); opacity: .6 } }
@keyframes ring { 0%{ transform: scale(.6); opacity:.9 } 70%{ transform: scale(1.4); opacity:.1 } 100%{ transform: scale(.6); opacity:.0 } }
@keyframes spark { 0%{ transform: translateX(-18px) } 100%{ transform: translateX(18px) } }

.features-interface {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Old grid not used in new showcase; keep in case of fallback */

.feature-panel {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 207, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-panel:hover {
    border-color: rgba(0, 207, 255, 0.3);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 207, 255, 0.12);
}

.feature-highlight {
    box-shadow: 0 0 0 1px rgba(0, 207, 255, 0.35), 0 20px 60px rgba(0, 207, 255, 0.18);
    transform: translateY(-6px);
}

.feature-panel:hover {
    border-color: rgba(0, 207, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 207, 255, 0.1);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
}

.glow-disc {
    border-radius: 999px;
    width: 72px;
    height: 72px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 207, 255, 0.25), rgba(0, 59, 255, 0.18) 60%, rgba(0,0,0,0) 70%);
    border: 1px solid rgba(0, 207, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 207, 255, 0.35);
}

.feature-panel:hover .glow-disc {
    box-shadow: inset 0 0 28px rgba(0, 207, 255, 0.5), 0 0 16px rgba(0, 207, 255, 0.35);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 207, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-panel:hover .feature-icon {
    background: rgba(0, 207, 255, 0.1);
    border-color: rgba(0, 207, 255, 0.2);
    transform: scale(1.05);
}

.feature-panel:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon svg {
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 207, 255, 0.2));
}

.feature-panel:hover .feature-icon svg {
    filter: drop-shadow(0 4px 16px rgba(0, 207, 255, 0.4));
    transform: scale(1.1);
}

.panel-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    flex-shrink: 0;
}

.panel-content p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.metric-value {
    color: #00CFFF;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 207, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 207, 255, 0.2);
    min-width: 50px;
    text-align: center;
}

.metric-label {
    color: #888;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 207, 255, 0.25);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00CFFF, #003BFF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.05), rgba(0, 59, 255, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 207, 255, 0.6);
    box-shadow: 0 25px 80px rgba(0, 207, 255, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Tech Section */
.tech-section {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(40, 40, 45, 0.95));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    border-bottom: 1px solid rgba(0, 207, 255, 0.1);
}

.tech-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #b3b3b3;
    margin-bottom: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00CFFF, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 207, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 207, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.tech-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.tech-item p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

/* Integrations Section */
.integrations-section {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(35, 35, 35, 0.95));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    border-bottom: 1px solid rgba(0, 207, 255, 0.1);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.integration-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 207, 255, 0.25);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00CFFF, #003BFF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.integration-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.05), rgba(0, 59, 255, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.integration-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 207, 255, 0.6);
    box-shadow: 0 25px 80px rgba(0, 207, 255, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.integration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: rgba(0, 207, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 207, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    background: rgba(0, 207, 255, 0.1);
    border-color: rgba(0, 207, 255, 0.2);
    transform: scale(1.05);
}

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

.integration-icon svg {
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 207, 255, 0.2));
}

.integration-card:hover .integration-icon svg {
    filter: drop-shadow(0 4px 16px rgba(0, 207, 255, 0.4));
    transform: scale(1.1);
}

.integration-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.integration-card p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.audience-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 207, 255, 0.25);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00CFFF, #003BFF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00CFFF, #003BFF);
    border-radius: 0 0 20px 20px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.audience-card:hover::after {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 207, 255, 0.6);
    box-shadow: 0 25px 80px rgba(0, 207, 255, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.audience-card h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.audience-card p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, rgba(36, 36, 36, 0.98), rgba(46, 46, 46, 0.98));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 207, 255, 0.25);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    min-width: 180px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00CFFF, #003BFF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 207, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 207, 255, 0.15);
    background: rgba(0, 0, 0, 0.7);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 1.5rem;
    color: #00CFFF;
    margin: 0 10px;
}

/* Why Different Section */
.why-different-section {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.95), rgba(44, 44, 44, 0.95));
    border-top: 1px solid rgba(0, 207, 255, 0.1);
    border-bottom: 1px solid rgba(0, 207, 255, 0.1);
}

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

.difference-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.difference-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00CFFF, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.difference-item:hover::before {
    opacity: 1;
}

.difference-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 207, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 207, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
}

.difference-item h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.difference-item p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 207, 255, 0.25);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 28px;
    font-size: 3rem;
    color: #00CFFF;
    opacity: 0.6;
    font-weight: 300;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00CFFF, #003BFF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 207, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 207, 255, 0.15);
    background: rgba(0, 0, 0, 0.7);
}

.testimonial-card p {
    color: #b3b3b3;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #ffffff;
    font-weight: 600;
}

.testimonial-author span {
    color: #00CFFF;
    font-size: 0.9rem;
}

/* ===== Blog Post Section ===== */
.blog-post-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px 0 80px;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.blog-date {
    font-size: 0.9rem;
    color: #b3b3b3;
    font-weight: 500;
}

.blog-tag {
    font-size: 0.75rem;
    color: #b3b3b3;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.blog-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-subtitle {
    font-size: 1.25rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta-button {
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 207, 255, 0.3);
}

.blog-video-container {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 207, 255, 0.3);
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
}

.video-placeholder svg {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.video-placeholder:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.video-placeholder p {
    color: #b3b3b3;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.blog-content {
    max-width: 680px;
    margin: 0 auto;
}

.blog-audio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-play-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(0, 207, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b3b3b3;
    font-size: 0.9rem;
    font-weight: 500;
}

.audio-play-btn:hover {
    background: rgba(0, 207, 255, 0.1);
    border-color: #00CFFF;
    color: #ffffff;
}

.audio-play-btn svg {
    width: 14px;
    height: 14px;
}

.audio-duration {
    color: #b3b3b3;
    font-size: 0.9rem;
}

.blog-text {
    margin-bottom: 48px;
}

.blog-text p,
.blog-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #b3b3b3;
    margin-bottom: 24px;
}

.blog-section {
    margin-bottom: 48px;
}

.blog-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-container {
        padding: 0 20px;
    }
    
    .blog-meta {
        justify-content: flex-start;
    }
    
    .blog-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .blog-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-text p,
    .blog-section p {
        font-size: 1rem;
    }
    
    .blog-section h2 {
        font-size: 1.5rem;
    }
}

/* ===== Metrics Section ===== */
.metrics-section {
    padding: 80px 0 40px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 150, 255, 0.07), transparent 80%);
    position: relative;
}

.metrics-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.metrics-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 150, 255, 0.15), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Metrics Hero Box (Leakage Calculator) */
.metrics-hero-box {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 30px;
    background: radial-gradient(circle at 50% 20%, rgba(0,120,255,0.15), rgba(0,0,0,0.9) 80%);
    border: none;
    padding: 35px 56px 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.metrics-hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 150, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.metrics-hero-content {
    position: relative;
    z-index: 1;
}

.metrics-hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.metrics-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.metrics-hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
    position: relative;
}

.calculator-input-wrapper {
    width: 100%;
    max-width: 450px;
}

.input-with-dollar {
    position: relative;
    width: 100%;
}

.dollar-sign {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #00CFFF;
    font-weight: 600;
    pointer-events: none;
    z-index: 1;
}

.calculator-input {
    width: 100%;
    padding: 18px 22px 18px 42px;
    font-size: 1.1rem;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.calculator-input::placeholder {
    color: rgba(180, 180, 180, 0.6);
    font-style: italic;
}

.calculator-input:focus {
    border-color: rgba(0, 180, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.15);
}

.calculator-input::-webkit-inner-spin-button,
.calculator-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculator-input[type=number] {
    -moz-appearance: textfield;
}

.calculator-result {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px 50px;
    border-radius: 50% 45% 48% 52% / 55% 50% 50% 45%;
    background: radial-gradient(ellipse at center, rgba(0, 191, 255, 0.12), transparent 65%);
    box-shadow: 0 0 50px rgba(0, 191, 255, 0.35), 0 0 80px rgba(0, 191, 255, 0.15);
    filter: blur(0.5px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.calculator-result:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.02);
    box-shadow: 0 0 60px rgba(0, 191, 255, 0.45), 0 0 100px rgba(0, 191, 255, 0.25);
    filter: blur(0.3px);
}

.result-amount {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #34D0FF, #00BFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(52, 208, 255, 0.4)) drop-shadow(0 0 40px rgba(0, 191, 255, 0.2)) blur(0px);
}

.result-label {
    font-size: 0.8rem;
    color: rgba(200, 200, 200, 0.7);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculator-result.pulse {
    animation: resultPulse 0.6s ease-out;
}

@keyframes resultPulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 50px rgba(0, 191, 255, 0.35), 0 0 80px rgba(0, 191, 255, 0.15);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 70px rgba(0, 191, 255, 0.5), 0 0 100px rgba(0, 191, 255, 0.25);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 50px rgba(0, 191, 255, 0.35), 0 0 80px rgba(0, 191, 255, 0.15);
    }
}


.metrics-hero-left h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #60DBFF, #30B6FF, #80E7FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    line-height: 1.15;
}

.metrics-hero-left h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00CFFF, #0080FF);
    margin: 16px 0 30px 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.7);
}

.metrics-hero-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #60DBFF, #30B6FF, #80E7FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1.15;
}

.metrics-hero-content h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00CFFF, #0080FF);
    margin: 16px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.7);
}

.metrics-hero-content > p {
    font-size: 1.125rem;
    color: rgba(230, 230, 230, 0.92);
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.calculator-placeholder {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 180, 255, 0.08);
    border-radius: 16px;
    padding: 20px 40px;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0, 180, 255, 0.05);
    width: 100%;
    max-width: 450px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: rgba(200, 200, 200, 1);
    font-style: italic;
    font-size: 1rem;
    position: relative;
}
.placeholder-text::after {
    content: ' …';
    animation: dots 1.8s ease-in-out infinite;
}
@keyframes dots {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* Three Metric Bubbles */
.metrics-bubbles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.metrics-bubbles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 150, 255, 0.06), transparent 65%);
    z-index: -1;
    pointer-events: none;
}

.metric-bubble {
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(0, 150, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px 36px;
    text-align: center;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.metric-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px -6px rgba(0, 150, 255, 0.5);
}

.metric-bubble:hover .metric-bubble-icon {
    filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.5));
}

.metric-bubble-icon {
    margin: 0 auto 18px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s ease;
    position: relative;
    z-index: 1;
}

.metric-bubble-icon svg {
    width: 44px;
    height: 44px;
}

.metric-bubble-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.25), transparent 60%);
    filter: blur(8px);
    z-index: 0;
    opacity: 0.6;
}

.metric-bubble h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(180deg, #00CFFF 0%, #0088FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    padding: 16px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.metric-value::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    top: 4px;
    bottom: 4px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 168, 255, 0.07), rgba(0, 128, 255, 0.04));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(0, 168, 255, 0.1);
    z-index: -1;
}

.metric-bubble:hover .metric-value {
    filter: brightness(1.1);
}

.metric-description {
    font-size: 0.9375rem;
    color: rgba(180, 180, 180, 0.9);
    line-height: 1.6;
    margin-top: 4px;
}

/* ---- Scribble mode: replace content with organic blue highlighter ovals ---- */
.metrics-bubbles.scribbles .metric-bubble {
    height: 160px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.metrics-bubbles.scribbles .metric-bubble > :not(.scribble-content) { display: none !important; }

.metrics-bubbles.scribbles .metric-bubble::before,
.metrics-bubbles.scribbles .metric-bubble::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    height: 62%;
    border: 16px solid rgba(0, 168, 255, 0.38);
    border-radius: 140px 120px 135px 115px / 70px 80px 65px 75px; /* irregular, organic */
    filter: drop-shadow(0 0 22px rgba(0, 168, 255, 0.25));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
    z-index: 1;
}

.metrics-bubbles.scribbles .metric-bubble::before { transform: translate(-50%, -50%) rotate(-4deg) scale(1.02); }
.metrics-bubbles.scribbles .metric-bubble::after  { transform: translate(-50%, -50%) rotate(3deg)  scale(0.98);  border-color: rgba(0, 168, 255, 0.28); }

/* Slight per-card variation */
.metrics-bubbles.scribbles .metric-bubble:nth-child(2)::before { transform: translate(-50%, -50%) rotate(2deg)  scale(1.01); }
.metrics-bubbles.scribbles .metric-bubble:nth-child(2)::after  { transform: translate(-50%, -50%) rotate(-1deg) scale(0.99); }
.metrics-bubbles.scribbles .metric-bubble:nth-child(3)::before { transform: translate(-50%, -50%) rotate(-6deg) scale(1.03); }
.metrics-bubbles.scribbles .metric-bubble:nth-child(3)::after  { transform: translate(-50%, -50%) rotate(4deg)  scale(0.97); }

/* Overlay content for scribble metrics */
.scribble-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    display: flex !important; /* ensure visible over hide rule */
    pointer-events: none;
}

.scribble-value,
.scribble-subtitle {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.scribble-value {
    font-size: 2.75rem; /* ~15% larger */
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1;
    /* separation shadow + blue glow */
    text-shadow:
        0 0 6px rgba(0, 0, 0, 0.6),
        0 0 10px rgba(33, 150, 243, 0.8);
}

.scribble-subtitle {
    margin-top: -6px; /* pull subtitle even closer */
    font-size: 0.9rem;
    color: rgba(235, 245, 255, 0.92);
    letter-spacing: 0.5px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.45);
}

/* Hover polish */
.metrics-bubbles.scribbles .metric-bubble {
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease !important;
    cursor: pointer;
    will-change: transform;
}

.metrics-bubbles.scribbles .metric-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px -6px rgba(0, 150, 255, 0.5);
}

/* Metrics scroll-in reveal */
.metrics-bubbles.reveal-ready .metric-bubble {
    --scale: 1;
    opacity: 0;
    transform: translateY(12px) scale(var(--scale));
}

.metrics-bubbles.has-entered .metric-bubble {
    opacity: 1;
    transform: translateY(0) scale(var(--scale));
}

.metrics-bubbles.has-entered .metric-bubble:nth-child(1) { transition-delay: 0ms; }
.metrics-bubbles.has-entered .metric-bubble:nth-child(2) { transition-delay: 120ms; }
.metrics-bubbles.has-entered .metric-bubble:nth-child(3) { transition-delay: 240ms; }

/* Middle card emphasis */
.metrics-bubbles .metric-bubble:nth-child(2) {
    --scale: 1.05;
}

/* Stronger title halo focused at center */
.metrics-hero-box::after {
    content: '';
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 160px;
    background: radial-gradient(ellipse at center, rgba(0, 168, 255, 0.14), transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

/* Subtle shimmer behind heading */
.metrics-hero-box::before {
    content: '';
    position: absolute;
    top: 70px;
    left: -30%;
    right: -30%;
    height: 60px;
    background: linear-gradient(90deg, rgba(0,150,255,0.15), rgba(0,0,0,0), rgba(0,150,255,0.15));
    filter: blur(20px);
    animation: shimmer 5s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-10%) }
    100% { transform: translateX(10%) }
}

/* ===== Security Section ===== */
.security-section {
    padding: 80px 0 60px;
    background: 
        linear-gradient(to bottom, transparent 0%, rgba(0, 50, 120, 0.03) 50%, transparent 100%),
        radial-gradient(circle at 50% 50%, rgba(0, 120, 200, 0.04), transparent 70%);
    position: relative;
    overflow: clip;
}

.security-section .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 80px;
}

/* Security Header Bubble */
.security-header-bubble {
    position: relative;
    max-width: 380px;
    margin: 0;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(0, 50, 120, 0.25), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(0, 150, 255, 0.15);
    padding: 60px 48px 40px;
    text-align: center;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

.security-header-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 120, 200, 0.08) 0%, transparent 60%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.security-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.security-icon {
    margin: 0 auto 32px;
    width: 84px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.5));
    padding-bottom: 8px;
}

.security-header-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: center;
}

.security-header-content > p {
    font-size: 1.125rem;
    color: rgba(209, 209, 209, 0.85);
    line-height: 1.7;
    text-align: center;
}

/* Security Flowchart */
.security-flowchart {
    max-width: 1200px;
    margin: 0 auto;
}

.flowchart-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 64px;
    color: #ffffff;
}

.flowchart-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    position: relative;
}

.flowchart-diagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 168, 255, 0.3), transparent);
    z-index: 0;
}

.flow-box {
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(0, 150, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    width: 240px;
    max-width: 240px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.flow-box:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 150, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.12);
}

.flow-box:hover .flow-box-icon {
    filter: drop-shadow(0 0 8px rgba(0, 150, 255, 0.4));
}

.flow-box-icon {
    margin: 0 auto 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s ease;
}

.flow-box h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
}

.flow-box p {
    font-size: 0.875rem;
    color: rgba(163, 163, 163, 0.8);
    line-height: 1.5;
}

.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    z-index: 1;
}

.flow-arrow svg {
    opacity: 0.5;
}

.flow-label {
    font-size: 0.8125rem;
    color: rgba(0, 168, 255, 0.7);
    text-align: center;
    font-weight: 400;
    max-width: 120px;
    line-height: 1.4;
}

.security-note {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 9999px;
    padding: 12px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.security-note p {
    color: rgba(163, 163, 163, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
    font-style: italic;
}

.security-note strong {
    color: rgba(0, 168, 255, 0.9);
    font-style: normal;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .metrics-section {
        padding: 100px 0 80px;
    }
    
    .security-section {
        padding: 120px 0 80px;
    }
    
    .security-section .container {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
    }
    
    .metrics-hero-box,
    .security-header-bubble {
        padding: 50px 20px 60px;
        margin-bottom: 56px;
        border-radius: 20px;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
        min-height: 600px;
        display: flex;
        flex-direction: column;
    }
    
    .metrics-hero-split {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        justify-content: space-between;
    }
    
    .metrics-hero-left {
        order: 1;
        display: contents;
    }
    
    .metrics-hero-left h2 {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 40px;
        order: 1;
    }
    
    .metrics-hero-left h2::after {
        display: none;
    }
    
    .calculator-input-wrapper {
        order: 3;
        width: 100%;
        margin-top: 40px;
    }
    
    .metrics-hero-right {
        order: 2;
        width: 100%;
        margin: 0;
    }
    
    .result-circle,
    .calculator-result {
        order: 2;
        margin: 40px auto;
        width: 220px;
        height: 220px;
        flex-shrink: 0;
    }
    
    .result-label {
        font-size: 0.8rem;
    }
    
    .result-value {
        font-size: 4rem;
    }
    
    .metrics-hero-left h2::after {
        margin: 16px auto 20px;
    }
    
    .calculator-input-wrapper {
        max-width: 100%;
    }
    
    .result-amount {
        font-size: 3.5rem;
    }
    
    .metrics-hero-content h2,
    .security-header-content h2 {
        font-size: 2rem;
    }
    
    .calculator-placeholder {
        padding: 28px 32px;
    }
    
    .metrics-bubbles {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metric-bubble {
        padding: 36px 28px;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .flowchart-diagram {
        flex-direction: column;
        gap: 24px;
    }
    
    .flowchart-diagram::before {
        display: none;
    }
    
    .flow-box {
        width: 100%;
        max-width: 100%;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        min-width: auto;
        min-height: 60px;
    }
    
    .flow-label {
        transform: rotate(-90deg);
        white-space: nowrap;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(5, 5, 5, 0.98));
    border-top: 1px solid rgba(0, 207, 255, 0.2);
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00CFFF, #003BFF, transparent);
    opacity: 0.6;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00CFFF, #003BFF);
    transition: width 0.3s ease;
}

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

.footer-links a:hover {
    color: #00CFFF;
    text-shadow: 0 0 10px rgba(0, 207, 255, 0.5);
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 207, 255, 0.1);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 6px;
    color: #00CFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.linkedin-button:hover {
    background: rgba(0, 207, 255, 0.2);
    border-color: rgba(0, 207, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 207, 255, 0.3);
    color: #ffffff;
}

.linkedin-button svg {
    transition: all 0.3s ease;
}

.linkedin-button:hover svg {
    transform: scale(1.1);
}

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

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

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

/* Checkout Modal */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

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

.checkout-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
    border: 2px solid rgba(0, 207, 255, 0.3);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 207, 255, 0.3);
    animation: slideUp 0.4s ease;
}

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

.checkout-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.checkout-modal-close:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.4);
    transform: rotate(90deg);
}

.checkout-modal-header {
    text-align: center;
    padding: 40px 40px 30px;
    border-bottom: 1px solid rgba(0, 207, 255, 0.2);
}

.checkout-logo {
    margin: 0 auto 20px;
    display: block;
}

.checkout-modal-header h2 {
    font-size: 2rem;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #00CFFF 0%, #003BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.checkout-modal-body {
    padding: 30px 40px 40px;
}

.checkout-form-group {
    margin-bottom: 20px;
}

.checkout-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.checkout-form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.checkout-form-group input:focus {
    outline: none;
    border-color: #00CFFF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.1);
}

.checkout-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.checkout-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid rgba(0, 207, 255, 0.2);
    border-bottom: 1px solid rgba(0, 207, 255, 0.2);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.checkout-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00CFFF 0%, #003BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-submit-button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00CFFF 0%, #003BFF 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 207, 255, 0.4);
}

.checkout-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 207, 255, 0.6);
}

.checkout-submit-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .checkout-modal {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .checkout-modal-header,
    .checkout-modal-body {
        padding: 30px 24px;
    }
    
    .checkout-form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    /* Stack hero then put timeline below; remove sticky layout */
    .hero-lock { position: static; display: block; }
    .hero-visual { margin-top: 20px; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    /* Hide the large floating logo on mobile */
    .floating-logo {
        display: none;
    }
    
    /* Fix timeline layout for mobile */
    .timeline-demo {
        padding: 20px;
        margin: 8px -10px 0;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
        margin-bottom: 24px;
        padding: 16px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        border: 1px solid rgba(0, 207, 255, 0.2);
    }
    
    .timeline-item::before {
        position: static;
        left: auto;
        margin-bottom: 8px;
        text-align: left;
        width: auto;
        font-size: 0.8rem;
        color: #00CFFF;
    }
    
    .timeline-dot {
        display: none;
    }
    
    .timeline-content h4 {
        font-size: 0.95rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .duration {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 0.7rem;
        padding: 2px 8px;
        width: auto;
    }
    
    /* Features: one column layout */
    .features-showcase { grid-template-columns: 1fr; gap: 24px; }
    .features-right { display: grid; grid-template-columns: 1fr; gap: 12px; }
    .features-hero-card { margin-top: 8px; }
    
    .feature-panel {
        padding: 20px;
        margin: 0;
    }
    
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }
    
    .feature-header-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-top: 0;
    }
    
    .panel-header h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .panel-content p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix integrations section */
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 10px;
    }
    
    .integration-card {
        padding: 20px;
        text-align: center;
    }
    
    .integration-card h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .integration-card p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix section titles */
    .section-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }
    /* Hide Windows CTA and Try buttons on mobile */
    .nav-cta-button, .mobile-cta-button, .cta-button { display: none; }
    
    /* Fix container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Fix solution subtitle */
    .solution-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Add mobile navigation */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 18px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    /* Fix footer for mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-text {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .linkedin-button {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .container { padding: 0 16px; }
    
    section {
        padding: 40px 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .timeline-demo { padding: 15px; margin: 0; }
    .pc-prev { left: 8px; }
    .pc-next { right: 8px; }
    .features-title { font-size: 1.8rem; }
    .features-subtitle { font-size: 0.95rem; }
    
    .timeline-item {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .feature-panel {
        padding: 16px;
    }
    
    .integration-card {
        padding: 16px;
    }
    
    /* Ensure all text wraps properly */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Scroll animations */
/* Fade-in animations disabled to prevent rendering delays */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NEW VARIED SECTION STYLES */

/* Features Section - New Alternating Layout */
.features-alternating {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.feature-content h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.feature-content p {
    color: #b3b3b3;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}



/* Tech Section - New Stack Layout */
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.tech-layer {
    background: rgba(50, 50, 50, 0.6);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tech-layer:hover {
    border-color: rgba(0, 207, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 207, 255, 0.1);
}

.layer-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.layer-header h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-right: 20px;
    min-width: 120px;
}

.layer-line {
    height: 2px;
    background: linear-gradient(90deg, #00CFFF, #003BFF);
    flex: 1;
    border-radius: 1px;
}

.tech-items {
    display: flex;
    gap: 24px;
    align-items: center;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 207, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 207, 255, 0.15);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 207, 255, 0.1);
    border-color: rgba(0, 207, 255, 0.3);
}

.tech-details h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.tech-details p {
    color: #b3b3b3;
    font-size: 0.95rem;
}

/* Audience Section - New Story Layout */
.audience-story {
    max-width: 1000px;
    margin: 0 auto;
}

.story-path {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 207, 255, 0.3);
}

.step-content {
    flex: 1;
    background: rgba(52, 52, 52, 0.6);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: rgba(0, 207, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 207, 255, 0.1);
}

.step-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent rgba(0, 207, 255, 0.2) transparent transparent;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.step-content p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.story-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 207, 255, 0.1);
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid rgba(0, 207, 255, 0.3);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00CFFF;
}

.metric-label {
    color: #ffffff;
    font-size: 0.95rem;
}

.story-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #00CFFF, #003BFF);
    margin: 0 auto;
    border-radius: 1px;
}

/* Why Different Section - New Comparison Layout */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(54, 54, 54, 0.6);
    border: 1px solid rgba(0, 207, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-header {
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.1), rgba(0, 59, 255, 0.1));
    padding: 32px;
    border-bottom: 1px solid rgba(0, 207, 255, 0.3);
}

.header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.header-item h3 {
    color: #ffffff;
    font-size: 1.4rem;
    flex: 1;
}

.vs-label {
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    margin: 0 20px;
}

.comparison-rows {
    padding: 0;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid rgba(0, 207, 255, 0.1);
    transition: all 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(0, 207, 255, 0.05);
}

.traditional, .arden {
    flex: 1;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.traditional {
    border-right: 1px solid rgba(0, 207, 255, 0.1);
}

.negative {
    font-size: 1.2rem;
    filter: grayscale(100%);
}

.positive {
    font-size: 1.2rem;
}

.traditional p, .arden p {
    color: #b3b3b3;
    font-size: 1rem;
    margin: 0;
}

.arden p {
    color: #ffffff;
    font-weight: 500;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

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

.mobile-menu {
    position: fixed;
    top:70px;
    left:0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 207, 255, 0.2);
}

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

.mobile-nav-link {
    display: block;
    color: #b3b3b3;
    text-decoration: none;
    padding: 12px 0;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: #00CFFF;
}

.mobile-cta-button {
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 207, 255, 0.3);
}

/* ===== LIGHT MODE OVERRIDES ===== */

/* Navigation Light Mode */
body.light-mode .logo-text {
    color: #000000;
    font-weight: 600;
}

body.light-mode .nav-link {
    color: #5a5a5a;
    font-weight: 500;
}

body.light-mode .nav-link:hover {
    color: #000000;
}

body.light-mode .mobile-menu-toggle span {
    background: #1a1a1a;
}

body.light-mode .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .mobile-nav-link {
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .mobile-nav-link:hover {
    color: #00CFFF;
}

/* Hero Section Light Mode */
body.light-mode .hero {
    background: linear-gradient(135deg, #f8f9fa, #e8eef5);
    position: relative;
}

body.light-mode .hero::before {
    background: radial-gradient(ellipse at center, rgba(0, 150, 255, 0.08), rgba(0, 100, 255, 0.04) 40%, transparent 70%);
}

body.light-mode .hero::after {
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.06), rgba(0, 59, 255, 0.03) 40%, transparent 70%);
}

body.light-mode .hero-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #0066cc 50%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: none;
}

body.light-mode .hero-subtitle {
    color: #5a5a5a;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: none;
}

body.light-mode .timeline-demo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 252, 0.98));
    border: 1px solid rgba(0, 150, 255, 0.2);
    box-shadow: 
        0 15px 40px rgba(0, 100, 200, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.light-mode .timeline-content h4 {
    color: #000000;
    font-weight: 600;
}

body.light-mode .timeline-content p {
    color: #5a5a5a;
}

body.light-mode .duration {
    color: #0066cc;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.15), rgba(0, 100, 200, 0.1));
    border: 1px solid rgba(0, 150, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 100, 200, 0.15);
}

/* Blog Section Light Mode (already styled - keep white background) */
body.light-mode .blog-post-section {
    background: #ffffff;
    color: #1a1a1a;
}

body.light-mode .blog-date {
    color: #666;
}

body.light-mode .blog-tag {
    color: #999;
    background: #f5f5f5;
}

body.light-mode .blog-title {
    color: #1a1a1a;
}

body.light-mode .blog-subtitle {
    color: #666;
}

body.light-mode .blog-cta-button {
    background: #000;
}

body.light-mode .blog-cta-button:hover {
    background: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.light-mode .blog-video-container {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
}

body.light-mode .video-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

body.light-mode .video-placeholder svg {
    opacity: 0.4;
}

body.light-mode .video-placeholder p {
    color: #999;
}

body.light-mode .blog-audio-controls {
    border-bottom: 1px solid #e5e5e5;
}

body.light-mode .audio-play-btn {
    border: 1px solid #d5d5d5;
    color: #666;
}

body.light-mode .audio-play-btn:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

body.light-mode .audio-duration {
    color: #999;
}

body.light-mode .blog-text p,
body.light-mode .blog-section p {
    color: #333;
}

body.light-mode .blog-section h2 {
    color: #1a1a1a;
}

body.light-mode .blog-section strong {
    color: #1a1a1a;
}

/* Metrics Section Light Mode */
body.light-mode .metrics-section {
    background: #fafbfc;
}

body.light-mode .metrics-hero-box {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .metrics-hero-left h2 {
    background: #1a1a1a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .calculator-input {
    color: #1a1a1a;
    background: #f8f8f8;
    border: 1px solid #d5d5d5;
}

body.light-mode .calculator-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

body.light-mode .calculator-input:focus {
    border-color: #999;
    background: #ffffff;
}

body.light-mode .metric-bubble {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-mode .metric-bubble h3 {
    color: #2a2a2a;
    font-weight: 700;
}

body.light-mode .metric-description {
    color: #5a5a5a;
}

body.light-mode .scribble-value {
    color: #4a4a4a;
    text-shadow: none;
}

body.light-mode .scribble-subtitle {
    color: #666;
    text-shadow: none;
}

/* Product Carousel Light Mode */
body.light-mode .product-carousel {
    background: #fafbfc;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .pc-title {
    color: #000000;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    font-weight: 700;
}

body.light-mode .pc-desc {
    color: #5a5a5a;
    font-weight: 400;
}

body.light-mode .pc-arrow {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

body.light-mode .pc-arrow:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.light-mode .pc-image-wrap {
    box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

body.light-mode .pc-dot {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

body.light-mode .pc-dot[aria-selected="true"] {
    background: #000000;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Features Section Light Mode */
body.light-mode .features-section {
    background: #fafbfc;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .features-title {
    color: #000000;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    font-weight: 700;
}

body.light-mode .features-subtitle {
    color: #5a5a5a;
}

body.light-mode .features-hero-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease !important;
}

body.light-mode .features-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px -6px rgba(0, 0, 0, 0.2);
}

body.light-mode .features-hero-card h3 {
    color: #000000;
    font-weight: 600;
}

body.light-mode .features-hero-card p {
    color: #5a5a5a;
}

body.light-mode .features-hero-card .badge {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

body.light-mode .features-hero-card .badge:hover {
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.3);
    color: #000000;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.light-mode .features-hero-card .badge:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset, 0 1px 4px rgba(0, 0, 0, 0.08);
}

body.light-mode .tile {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease !important;
}

body.light-mode .tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px -6px rgba(0, 0, 0, 0.2);
}

body.light-mode .tile-body h4 {
    color: #000000;
    font-weight: 600;
}

body.light-mode .tile-body p {
    color: #5a5a5a;
}

/* Contact Button */
.nav-left-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 0; /* Right side of navbar */
}

.contact-button {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 207, 255, 0.15);
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: rgba(0, 207, 255, 0.25);
    border-color: rgba(0, 207, 255, 0.5);
    transform: translateY(-1px);
}

.footer-contact-button {
    margin-left: 12px;
}

/* Contact Modal */
#contactModal,
#waitlistModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.contact-modal-content {
    max-width: 500px;
    width: 90%;
    padding: 0;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-form {
    padding: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00CFFF;
    background: rgba(255, 255, 255, 0.08);
}

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

.contact-submit-button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #00CFFF, #003BFF);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 207, 255, 0.3);
}

.contact-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Security Two Column Layout */
.security-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .security-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .flow-nodes-container {
        flex-direction: column;
        gap: 24px;
        padding: 20px;
    }
    
    .flow-node {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .security-flow-container {
        padding: 30px 15px;
    }
    
    .flow-nodes-container {
        padding: 10px;
    }
    
    .flow-node-icon {
        width: 48px;
        height: 48px;
    }
}

.security-left {
    display: flex;
    justify-content: center;
}

.security-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Polished Data Flow Diagram */
.security-flow-container {
    position: relative;
    padding: 40px 20px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 60px -20px rgba(0, 207, 255, 0.25);
}

.flow-arrow {
    width: 140px;
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.15));
    z-index: 0;
}

.flow-arrow-top {
    top: calc(50% - 85px);
}

.flow-arrow-bottom {
    top: calc(50% - 35px);
}

.flow-arrow-path {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.flow-nodes-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 120px;
    padding: 0 40px;
    min-height: 200px;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    z-index: 1;
    margin-top: 12px;
}

.flow-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #22d3ee;
    box-shadow: 0 0 25px -6px rgba(34, 211, 238, 0.3);
    transition: all 0.3s ease;
}

.flow-node:hover .flow-node-icon {
    transform: translateY(-4px);
    box-shadow: 0 0 35px -6px rgba(34, 211, 238, 0.5);
}

.flow-node-transit .flow-node-icon {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.3);
    color: #34d399;
    box-shadow: 0 0 25px -6px rgba(52, 211, 153, 0.3);
}

.flow-node-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.flow-node-sublabel {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

.flow-node-badge {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    font-weight: 600;
}

.flow-footnote {
    margin-top: 24px;
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
}

/* Security Section Light Mode */
body.light-mode .security-section {
    background: #ffffff;
}

body.light-mode .security-header-bubble {
    background: #fafbfc;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-mode .security-header-content h2 {
    color: #000000;
    font-weight: 700;
}

body.light-mode .security-header-content > p {
    color: #5a5a5a;
}

body.light-mode .security-flow-container {
    background: rgba(248, 250, 252, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 60px -20px rgba(0, 0, 0, 0.1);
}

body.light-mode .flow-arrow {
    filter: drop-shadow(0 0 6px rgba(0, 207, 255, 0.3));
}

body.light-mode .flow-arrow path {
    stroke: #00CFFF !important;
}

body.light-mode .flow-arrow marker polygon {
    fill: #00CFFF !important;
}

body.light-mode .flow-node-icon {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #2a2a2a;
    box-shadow: 0 0 15px -6px rgba(0, 0, 0, 0.1);
}

body.light-mode .flow-node:hover .flow-node-icon {
    box-shadow: 0 0 25px -6px rgba(0, 0, 0, 0.15);
}

body.light-mode .flow-node-transit .flow-node-icon {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #000000;
    box-shadow: 0 0 15px -6px rgba(0, 0, 0, 0.1);
}

body.light-mode .flow-node-label {
    color: #1a1a1a;
}

body.light-mode .flow-node-transit .flow-node-label {
    color: #000000;
}

body.light-mode .flow-node-sublabel {
    color: #64748b;
}

body.light-mode .flow-node-transit .flow-node-sublabel {
    color: #000000;
}

body.light-mode .flow-node-badge {
    color: #000000;
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Light Mode Contact Styles */
body.light-mode .contact-button {
    color: #000000;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

body.light-mode .contact-button:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

body.light-mode #contactModal {
    background: rgba(255, 255, 255, 0.7);
}

body.light-mode .contact-modal-content {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

body.light-mode .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .modal-header h2 {
    color: #000000;
}

body.light-mode .modal-close {
    color: #000000;
}

body.light-mode .modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .form-group label {
    color: #000000;
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    color: #000000;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

body.light-mode .form-group input:focus,
body.light-mode .form-group select:focus,
body.light-mode .form-group textarea:focus {
    border-color: #00CFFF;
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder {
    color: #888888;
}

body.light-mode .flow-footnote {
    color: #64748b;
}

body.light-mode .flow-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .flow-box h4 {
    color: #000000;
    font-weight: 600;
}

body.light-mode .flow-box p {
    color: #5a5a5a;
}

/* Footer Light Mode */
body.light-mode .footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .footer-content p {
    color: #5a5a5a;
    text-shadow: none;
}

body.light-mode .linkedin-button {
    background: #f0f0f0;
    border: 1px solid #d0d0d0;
    color: #0077B5;
}

body.light-mode .linkedin-button:hover {
    background: #e0e0e0;
    border-color: #c0c0c0;
    color: #005582;
}