/* ==========================================================================
   BADAR EDGE - ULTRA-PREMIUM CYBER-DARK DESIGN SYSTEM (DRIBBBLE-ESTHETIC)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Imports & Theme Variables
   -------------------------------------------------------------------------- */
:root {
    /* Premium Dark Tech / AI / SaaS Theme */
    --bg-color: #050B16;
    --bg-secondary: #0A1224;
    --card-bg: rgba(16, 27, 48, 0.6);
    --card-bg-hover: rgba(20, 33, 58, 0.8);
    --border-color: #1E2E4A;
    --border-glow: rgba(30, 144, 255, 0.35);
    
    /* Accent Blue (Primary) */
    --accent-cyan: #1E90FF;
    --accent-cyan-rgb: 30, 144, 255;
    --accent-cyan-glow: rgba(30, 144, 255, 0.35);
    
    --accent-blue-bright: #3EA8FF;
    --accent-blue-glow: #63C8FF;
    --accent-blue-electric: #0A84FF;
    
    --accent-purple: #3EA8FF;
    --accent-purple-rgb: 62, 168, 255;
    --accent-purple-glow: rgba(62, 168, 255, 0.35);
    
    --accent-indigo: #63C8FF;
    --accent-indigo-rgb: 99, 200, 255;
    --accent-indigo-glow: rgba(99, 200, 255, 0.35);
    
    --accent-violet: #0A84FF;
    --accent-violet-rgb: 10, 132, 255;
    --accent-violet-glow: rgba(10, 132, 255, 0.35);
    
    --accent-red: #FF5A6B;
    --accent-red-rgb: 255, 90, 107;
    --accent-red-glow: rgba(255, 90, 107, 0.35);
    
    --accent-green: #22D27F;
    --accent-green-rgb: 34, 210, 127;
    --accent-green-glow: rgba(34, 210, 127, 0.35);
    
    /* Typography Neutrals */
    --text-primary: #FFFFFF;
    --text-secondary: #C9D3E3;
    --text-muted: #A1AEC4;
    --white: #ffffff;
    --grey-dark: #14213A;
    
    /* Effects */
    --glass-blur: blur(20px);
    --glass-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.3);
    
    /* Layout Constants */
    --max-width: 1200px;
    --nav-height: 78px;
}

/* --------------------------------------------------------------------------
   2. Resets, Grids & Typography Foundations
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

/* Custom High-Tech Highlight Selection */
::selection {
    background-color: var(--accent-purple);
    color: var(--white);
}

/* Scrollbar Stylings */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: rgba(5, 11, 22, 0.5);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-indigo);
}

/* Cybernetic Grid Backdrop Layer on Body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(5, 11, 22, 0.2) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(5, 11, 22, 0.2) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -3;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 10%, var(--bg-color) 85%);
    z-index: -3;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
    3. Voice Guide Agent
    -------------------------------------------------------------------------- */
.guide-agent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: guideIn 0.6s ease-out 0.5s forwards;
    pointer-events: none;
}

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

.guide-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 24px rgba(99, 200, 255, 0.3);
    pointer-events: auto;
    cursor: pointer;
}

.guide-avatar-svg {
    width: 28px;
    height: 28px;
}

.guide-wave {
    position: absolute;
    inset: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-wave span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(99, 200, 255, 0.3);
    animation: guidePulse 2s ease-out infinite;
}

.guide-wave span:nth-child(2) { animation-delay: 0.4s; }
.guide-wave span:nth-child(3) { animation-delay: 0.8s; }

@keyframes guidePulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.guide-bubble {
    position: relative;
    background: rgba(5, 11, 22, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(5, 11, 22, 0.12);
    border-radius: 16px 16px 16px 4px;
    padding: 12px 18px 34px 18px;
    max-width: 280px;
    pointer-events: auto;
    box-shadow: 0 12px 40px -8px rgba(5, 11, 22, 0.07);
}

.guide-bubble-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    padding-right: 18px;
}

.guide-play-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(99, 200, 255, 0.4);
    background: rgba(99, 200, 255, 0.15);
    color: var(--accent-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.guide-play-btn:hover {
    background: rgba(99, 200, 255, 0.35);
    border-color: var(--accent-indigo);
    box-shadow: 0 0 12px rgba(99, 200, 255, 0.4);
    transform: scale(1.1);
}

.guide-bubble-text::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    margin-left: 2px;
    background: var(--accent-cyan);
    animation: guideBlink 0.8s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes guideBlink {
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .guide-agent {
        bottom: 16px;
        right: 16px;
    }
    .guide-avatar {
        width: 40px;
        height: 40px;
    }
    .guide-avatar-svg {
        width: 22px;
        height: 22px;
    }
    .guide-bubble {
        max-width: 220px;
        padding: 10px 14px;
    }
    .guide-bubble-text {
        font-size: 0.72rem;
    }
}

/* --------------------------------------------------------------------------
    4. Background Networks & Animated Glow Blobs
    -------------------------------------------------------------------------- */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    opacity: 0.75;
}

/* Ambient Neon Blobs with subtle floating animation */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.16;
}

.blob-violet {
    width: 50vw;
    height: 50vh;
    top: -10vh;
    right: -5vw;
    background: radial-gradient(circle, var(--accent-violet) 0%, rgba(3,0,20,0) 70%);
    animation: pulseBlob 15s infinite alternate ease-in-out;
}

.blob-blue {
    width: 45vw;
    height: 45vh;
    bottom: -10vh;
    left: -5vw;
    background: radial-gradient(circle, var(--accent-indigo) 0%, rgba(3,0,20,0) 70%);
    animation: pulseBlob 12s infinite alternate-reverse ease-in-out;
}

.blob-cyan {
    width: 35vw;
    height: 35vh;
    top: 40vh;
    left: 35vw;
    background: radial-gradient(circle, var(--accent-cyan) 0%, rgba(3,0,20,0) 70%);
    animation: pulseBlob 18s infinite alternate ease-in-out;
}

@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
    50% { transform: scale(1.15) translate(3vw, -2vh); opacity: 0.2; }
    100% { transform: scale(1) translate(0, 0); opacity: 0.12; }
}

/* --------------------------------------------------------------------------
   4. Reusable Layouts & Premium Components
   -------------------------------------------------------------------------- */
.section {
    padding: 100px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

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

.section-header {
    margin-bottom: 70px;
    max-width: 680px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Plus Jakarta Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 20%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

/* Frosted Glassmorphism Panel Template */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background-color: var(--card-bg-hover);
    box-shadow: 0 25px 60px -20px rgba(5, 11, 22, 0.5), 0 0 40px -10px rgba(99, 200, 255, 0.08);
}

/* Premium Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.98rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1E90FF 0%, #3EA8FF 100%);
    color: var(--white);
    box-shadow: 0 8px 30px -4px rgba(30, 144, 255, 0.35);
    border: 1px solid rgba(30, 144, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -2px rgba(62, 168, 255, 0.55), 0 0 20px rgba(30, 144, 255, 0.2);
    background: linear-gradient(135deg, #3EA8FF 0%, #63C8FF 100%);
    border-color: rgba(99, 200, 255, 0.6);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%);
    transform: translate(-30%, -30%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.btn-glow:hover::after {
    transform: translate(-10%, -10%);
}

.btn-secondary {
    background: rgba(5, 11, 22, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(5, 11, 22, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -10px rgba(255, 255, 255, 0.08);
}

.icon-small {
    width: 16px;
    height: 16px;
}

.icon-tiny {
    width: 12px;
    height: 12px;
}

/* --------------------------------------------------------------------------
   5. Floating Cyber Navigation Bar
   -------------------------------------------------------------------------- */
.navbar-container {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 20px;
    pointer-events: none;
}

.navbar {
    pointer-events: all;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 0;
    height: auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(4, 2, 16, 0.65);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(5, 11, 22, 0.03);
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(5, 11, 22, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar:hover {
    border-color: rgba(99, 200, 255, 0.15);
    box-shadow: 0 25px 45px -12px rgba(99, 200, 255, 0.08);
}

/* Hamburger menu button */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    pointer-events: all;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.hamburger:hover span {
    background: #3EA8FF;
}
.hamburger:hover {
    border-color: rgba(62, 168, 255, 0.45);
    box-shadow: 0 0 12px rgba(62, 168, 255, 0.25);
}

/* Centered logo text in nav */
/* Book Call button in navbar (compact) */
.nav-book-call {
    padding: 8px 16px !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   5b. Sidebar & Overlay
   -------------------------------------------------------------------------- */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 11, 22, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: linear-gradient(180deg, #050B16 0%, #0A1224 100%);
    border-right: 1px solid #1E2E4A;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-gutter: stable;
}

.sidebar::-webkit-scrollbar { width: 2px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: #3EA8FF; border-radius: 4px; }
.sidebar.open { opacity: 1; pointer-events: all; transform: translateX(0); }

/* ── Header ── */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 24px 0;
}

.sidebar-logo {
    width: 130px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.sidebar-logo img { display: block; width: 100%; height: auto; object-fit: contain; }


.sidebar-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    transition: all 0.25s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-close:hover {
    color: var(--white);
    background: rgba(62, 168, 255, 0.15);
}

/* ── CTA ── */
/* ── Divider ── */
.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(5, 11, 22, 0.6), transparent);
    margin: 10px 24px;
    flex-shrink: 0;
}

/* ── Navigation ── */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 12px 16px;
    overflow-y: auto;
}

/* Expandable parent for Solutions / Industries */
.sidebar-parent {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 12px;
    color: #A1AEC4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.sidebar-parent:hover { color: #3EA8FF; background: rgba(62, 168, 255, 0.06); }
.sidebar-parent .icon-tiny { color: #3EA8FF; transition: transform 0.3s ease; }
.sidebar-haspop[open] .sidebar-parent .icon-tiny,
.sidebar-parent:hover .icon-tiny { transform: rotate(180deg); }
.sidebar-sub {
    list-style: none;
    margin: 4px 0 2px 18px;
    padding: 0;
    display: none;
    flex-direction: column;
    gap: 2px;
}
.sidebar-haspop.open .sidebar-sub { display: flex; }
.sidebar-sub li a { padding: 9px 12px; }

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 14px;
}

/* Tree-line connectors for sidebar buttons */
.sidebar-links > li {
    padding-left: 22px;
    position: relative;
}
.sidebar-links > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(62,168,255,0.15) 0%, rgba(30,144,255,0.25) 50%, rgba(62,168,255,0.15) 100%);
}
.sidebar-links > li::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 11px;
    width: 16px;
    height: 1px;
    background: rgba(62,168,255,0.35);
}
.sidebar-links > li:last-child::before {
    height: calc(100% - 12px);
    top: 12px;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #A1AEC4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.sidebar-links li a:hover {
    color: #3EA8FF;
    background: #101B30;
}

.sidebar-links li a.active {
    color: #FFFFFF;
    background: #0A1224;
}

/* ── Link dot indicator ── */
.link-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #A1AEC4;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidebar-links li a:hover .link-dot {
    background: #3EA8FF;
    transform: scale(1.3);
}

.sidebar-links li a.active .link-dot {
    background: #3EA8FF;
    box-shadow: 0 0 8px rgba(62, 168, 255, 0.4);
    transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   6. Hero Section Layout
   -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-height) + 100px);
    position: relative;
}

.hero-content {
    max-width: 920px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    padding: 0 20px;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    position: relative;
}

.diamond {
    fill: none;
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Perimeters: outer~153, mid~113, inner~74 */
.diamond-outer {
    stroke-dasharray: 153;
    stroke-dashoffset: 153;
    animation: diamondLoopOuter 6.2s ease-in-out infinite;
}

.diamond-mid {
    stroke-dasharray: 113;
    stroke-dashoffset: 113;
    animation: diamondLoopMid 6.2s ease-in-out 0.4s infinite;
}

.diamond-inner {
    stroke-dasharray: 74;
    stroke-dashoffset: 74;
    animation: diamondLoopInner 6.2s ease-in-out 0.8s infinite;
}

@keyframes diamondLoopOuter {
    0% { stroke-dashoffset: 153; }
    19% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

@keyframes diamondLoopMid {
    0% { stroke-dashoffset: 113; }
    16% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

@keyframes diamondLoopInner {
    0% { stroke-dashoffset: 74; }
    13% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 200, 255, 0.05);
    border: 1px solid rgba(99, 200, 255, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
    backdrop-filter: var(--glass-blur);
}

.badge-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.badge-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
}

.hero-headline {
    font-family: 'Plus Jakarta Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--white);
}

.headline-gradient {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
}

.hero-subtext {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 44px;
    font-weight: 400;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Scroll down indicator */
.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.9;
}

.scroll-mouse {
    width: 18px;
    height: 30px;
    border: 1.5px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.6s infinite;
}

@keyframes scrollWheel {
    0% { top: 5px; opacity: 1; }
    100% { top: 16px; opacity: 0; }
}

.scroll-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. Live Operations Dashboard
   -------------------------------------------------------------------------- */
.dashboard-container {
    width: 100%;
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(6, 4, 20, 0.25);
    backdrop-filter: blur(6px);
}

/* Grid displaying stat cards */
.db-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--border-color);
}

/* Key Metrics header above grid */
.db-grid-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-color);
}

.db-grid-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-indigo);
}

.db-grid-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.db-card {
    background-color: rgba(6, 4, 20, 0.4);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.db-card:hover {
    background-color: rgba(99, 200, 255, 0.03);
}

/* Card glow overlay */
.db-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 50% 50%, rgba(99, 200, 255, 0.04) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.db-card:hover .db-card-glow {
    opacity: 1;
}

.stat-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(5, 11, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.db-card:hover .stat-icon-wrap {
    transform: scale(1.06) translateY(-1px);
    box-shadow: 0 0 24px rgba(99, 200, 255, 0.08);
}

.icon-cyan { color: var(--accent-cyan); background: rgba(30, 144, 255, 0.04); border-color: rgba(30, 144, 255, 0.08); }
.icon-purple { color: var(--accent-purple); background: rgba(62, 168, 255, 0.04); border-color: rgba(62, 168, 255, 0.08); }
.icon-indigo { color: var(--accent-indigo); background: rgba(99, 200, 255, 0.04); border-color: rgba(99, 200, 255, 0.08); }
.icon-violet { color: var(--accent-violet); background: rgba(10, 132, 255, 0.04); border-color: rgba(10, 132, 255, 0.08); }
.icon-red { color: var(--accent-red); background: rgba(255, 90, 107, 0.04); border-color: rgba(255, 90, 107, 0.08); }
.icon-green { color: var(--accent-green); background: rgba(16, 185, 129, 0.04); border-color: rgba(16, 185, 129, 0.08); }

/* Ring wrapper — SVG defines container height, number centered on top */
.stat-ring-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 140px;
    margin-bottom: 16px;
}

.stat-ring-svg {
    width: 140px;
    height: 140px;
    display: block;
    flex-shrink: 0;
}

.ring-fill {
    filter: drop-shadow(0 0 6px currentColor);
    transition: none;
}

.stat-ring-wrap .stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    margin: 0;
    text-align: center;
}

.db-card:has(.icon-cyan) .ring-fill { stroke: var(--accent-cyan); }
.db-card:has(.icon-purple) .ring-fill { stroke: var(--accent-purple); }
.db-card:has(.icon-indigo) .ring-fill { stroke: var(--accent-indigo); }
.db-card:has(.icon-violet) .ring-fill { stroke: var(--accent-violet); }
.db-card:has(.icon-red) .ring-fill { stroke: var(--accent-red); }
.db-card:has(.icon-green) .ring-fill { stroke: var(--accent-green); }

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   8. Core Systems Cards Grid
   -------------------------------------------------------------------------- */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.system-card {
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Mouse pointer glow tracker background layer */
.system-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(99, 200, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.system-card:hover .system-card-glow {
    opacity: 1;
}

.system-icon-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.system-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
}

.system-icon i {
    width: 20px;
    height: 20px;
}

.system-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
}

.badge-cyan { background-color: rgba(30, 144, 255, 0.06); color: var(--accent-cyan); border: 1px solid rgba(30, 144, 255, 0.12); }
.badge-purple { background-color: rgba(62, 168, 255, 0.06); color: var(--accent-purple); border: 1px solid rgba(62, 168, 255, 0.12); }
.badge-indigo { background-color: rgba(99, 200, 255, 0.06); color: var(--accent-indigo); border: 1px solid rgba(99, 200, 255, 0.12); }

.system-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.system-card-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    min-height: 84px;
    line-height: 1.55;
}

/* Card Visual Mockups */
.card-visual {
    width: 100%;
    height: 110px;
    background-color: rgba(2, 1, 8, 0.5);
    border: 1px solid rgba(5, 11, 22, 0.03);
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Funnel pipeline animations on Lead System */
.visual-lead {
    gap: 16px;
}

.visual-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: var(--text-secondary);
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.visual-node i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(30, 144, 255, 0.08);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 144, 255, 0.15);
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.1);
}

.node-line-flow {
    position: absolute;
    width: 150px;
    height: 1px;
    background-color: rgba(5, 11, 22, 0.5);
    top: calc(50% - 12px);
    z-index: 1;
}

.flow-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    top: -2px;
}

.flow-dot-1 {
    animation: pipelineFlow 2.5s infinite linear;
}

.flow-dot-2 {
    animation: pipelineFlow 2.5s infinite linear;
    animation-delay: 1.25s;
}

@keyframes pipelineFlow {
    0% { left: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Stacking pipeline content cards anim */
.visual-content {
    display: flex;
    flex-direction: column;
    padding: 12px;
    justify-content: flex-start;
}

.content-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stack-item {
    width: 100%;
    height: 24px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(5, 11, 22, 0.015);
    border: 1px solid rgba(5, 11, 22, 0.12);
    border-radius: 6px;
    font-size: 0.65rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
}

.stack-title {
    color: var(--text-secondary);
}

.stack-status {
    font-size: 0.52rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
}

.status-success {
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-pending {
    background-color: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.15);
    animation: blink-status 1.2s infinite alternate ease-in-out;
}

@keyframes blink-status {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* LinkedIn resume graphics */
.visual-linkedin {
    padding: 14px;
}

.visual-grid-cv {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cv-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.cv-bar {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    width: 80px;
    overflow: hidden;
}

.cv-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: inherit;
}

.bar-90::after { width: 90%; background-color: var(--accent-indigo); box-shadow: 0 0 6px var(--accent-indigo); }
.bar-95::after { width: 95%; background-color: var(--accent-cyan); box-shadow: 0 0 6px var(--accent-cyan); }
.bar-80::after { width: 80%; background-color: var(--accent-purple); box-shadow: 0 0 6px var(--accent-purple); }

.system-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.system-card-link:hover {
    transform: translateX(4px);
}

.text-cyan { color: var(--accent-cyan); }
.text-purple { color: var(--accent-purple); }
.text-indigo { color: var(--accent-indigo); }

/* --------------------------------------------------------------------------
   9. The Impact Engine (Tabs & Graphs)
   -------------------------------------------------------------------------- */
.impact-container {
    display: grid;
    grid-template-columns: 310px 1fr;
    overflow: hidden;
}

/* Left Tab Panel selector */
.impact-sidebar {
    padding: 24px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-tab-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-tab-btn:hover {
    background-color: rgba(5, 11, 22, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
}

.impact-tab-btn.active {
    background-color: rgba(99, 200, 255, 0.06);
    border-color: rgba(99, 200, 255, 0.16);
    box-shadow: 0 4px 20px -2px rgba(99, 200, 255, 0.12), inset 0 0 12px rgba(99, 200, 255, 0.05);
}

.tab-btn-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.impact-tab-btn.active .tab-btn-title {
    color: var(--accent-cyan);
}

.tab-btn-title i {
    width: 18px;
    height: 18px;
}

.tab-btn-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Right Content panel */
.impact-content {
    padding: 44px;
    background-color: rgba(6, 4, 18, 0.12);
}

.impact-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-panel.active {
    display: block;
    opacity: 1;
}

.panel-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.panel-header {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}

.panel-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
}

.tag-cyan { background-color: rgba(30, 144, 255, 0.08); color: var(--accent-cyan); border: 1px solid rgba(30, 144, 255, 0.18); }
.tag-purple { background-color: rgba(62, 168, 255, 0.08); color: var(--accent-purple); border: 1px solid rgba(62, 168, 255, 0.18); }
.tag-indigo { background-color: rgba(99, 200, 255, 0.08); color: var(--accent-indigo); border: 1px solid rgba(99, 200, 255, 0.18); }

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 44px;
    align-items: center;
}

.panel-metrics-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
}

.metric-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.font-cyan { color: var(--accent-cyan); }
.font-purple { color: var(--accent-purple); }
.font-indigo { color: var(--accent-indigo); }
.font-green { color: var(--accent-green); }

.metric-progress-container {
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.metric-progress-bar {
    height: 100%;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Triggers scaleX when panel active */
.impact-panel.active .metric-progress-bar {
    transform: scaleX(1);
}

.bar-cyan { background-color: var(--accent-cyan); box-shadow: 0 0 10px var(--accent-cyan); }
.bar-purple { background-color: var(--accent-purple); box-shadow: 0 0 10px var(--accent-purple); }
.bar-indigo { background-color: var(--accent-indigo); box-shadow: 0 0 10px var(--accent-indigo); }
.bar-green { background-color: var(--accent-green); box-shadow: 0 0 10px var(--accent-green); }

.metric-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Visualization elements */
.panel-visual-box {
    width: 100%;
    height: 280px;
    background-color: rgba(2, 1, 8, 0.55);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 20px rgba(5, 11, 22, 0.4);
}

.justify-center {
    justify-content: center;
}

/* Speedometer/Gauge styles */
.speedometer-widget {
    width: 180px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-svg {
    width: 100%;
}

.gauge-progress {
    transition: stroke-dashoffset 1.5s ease-out;
}

.gauge-value {
    position: absolute;
    bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
}

.gauge-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 5px;
    font-weight: 600;
}

/* Funnel bars */
.funnel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.funnel-stage {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stage-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.stage-bar {
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-panel.active .stage-bar {
    transform: scaleX(1);
}

.glow-cyan { background: linear-gradient(90deg, rgba(30, 144, 255, 0.15), rgba(30, 144, 255, 0.02)); border: 1px solid rgba(30, 144, 255, 0.25); box-shadow: 0 0 15px rgba(30, 144, 255, 0.05); }
.glow-purple { background: linear-gradient(90deg, rgba(62, 168, 255, 0.15), rgba(62, 168, 255, 0.02)); border: 1px solid rgba(62, 168, 255, 0.25); box-shadow: 0 0 15px rgba(62, 168, 255, 0.05); }
.glow-indigo { background: linear-gradient(90deg, rgba(99, 200, 255, 0.15), rgba(99, 200, 255, 0.02)); border: 1px solid rgba(99, 200, 255, 0.25); box-shadow: 0 0 15px rgba(99, 200, 255, 0.05); }

/* Column comparison bars */
.comparison-bars {
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    height: 180px;
    margin-bottom: 10px;
}

.comparison-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.group-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.bar-comparison-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 140px;
    width: 100px;
}

.bar-pill {
    width: 42px;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-panel.active .bar-pill {
    transform: scaleY(1);
}

.pill-grey { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(5, 11, 22, 0.12); }
.pill-indigo { background: linear-gradient(0deg, rgba(99, 200, 255, 0.08), var(--accent-indigo)); border: 1px solid var(--accent-indigo); box-shadow: 0 0 12px rgba(99, 200, 255, 0.3); }
.pill-cyan { background: linear-gradient(0deg, rgba(30, 144, 255, 0.08), var(--accent-cyan)); border: 1px solid var(--accent-cyan); box-shadow: 0 0 12px rgba(30, 144, 255, 0.3); }

.chart-legend {
    display: flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 15px;
    font-weight: 500;
}

.legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot-cyan { background-color: var(--accent-cyan); box-shadow: 0 0 6px var(--accent-cyan); }
.dot-purple { background-color: var(--accent-purple); box-shadow: 0 0 6px var(--accent-purple); }
.dot-indigo { background-color: var(--accent-indigo); box-shadow: 0 0 6px var(--accent-indigo); }
.dot-grey { background-color: var(--text-muted); }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.ml-10 { margin-left: 10px; }

/* Compact section header for Architect */
.section-header--compact {
    margin-bottom: 32px;
}

/* Architect Profile Card */
.architect-profile {
    max-width: 700px;
    margin: 0 auto 44px;
    text-align: center;
    padding: 48px 48px 44px;
    position: relative;
}

.architect-profile-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.architect-name-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.architect-role-main {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.architect-bio {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.75;
    max-width: 560px;
    margin: 12px 0 0;
}

.architect-quote-block {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(99, 200, 255, 0.15);
    position: relative;
}

.architect-quote-icon {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 0.8;
    color: rgba(99, 200, 255, 0.3);
    display: block;
}

.architect-quote-line {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #A1AEC4;
    font-style: italic;
    margin: 0;
    max-width: 500px;
}

/* --------------------------------------------------------------------------
   10. Client Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: rgba(6, 4, 20, 0.15);
}

.testimonials-track {
    max-width: var(--max-width);
    margin: 0 auto;
    margin-top: 50px;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(5, 11, 22, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    border-color: rgba(99, 200, 255, 0.25);
    background: rgba(99, 200, 255, 0.04);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 200, 255, 0.06);
}

.t-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.t-badge-global {
    color: var(--accent-cyan);
    background: rgba(30, 144, 255, 0.08);
    border: 1px solid rgba(30, 144, 255, 0.15);
}

.t-badge-local {
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.t-badge-india {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.t-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.t-quote {
    flex: 1;
    margin-bottom: 20px;
}

.t-quote p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

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

.t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.t-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.t-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.t-role {
    font-size: 0.72rem;
    color: var(--text-muted);
}

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

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

/* --------------------------------------------------------------------------
   11. Dynamic ROI Slider Calculator
   -------------------------------------------------------------------------- */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 50px 44px;
}

.calc-group-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    color: var(--white);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.input-group-slider {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.slider-header label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
}

.slider-indicator {
    font-family: monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(30, 144, 255, 0.05);
    border: 1px solid rgba(30, 144, 255, 0.12);
    padding: 2px 8px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.05);
}

/* Custom premium slider thumb */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(5, 11, 22, 0.5);
    border-radius: 2px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-cyan);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.slider-boundaries {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Output Layout styling */
.calc-outputs {
    background-color: rgba(2, 1, 8, 0.35);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.results-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.result-number-block {
    display: flex;
    align-items: flex-start;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-green);
    margin-bottom: 6px;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.15));
}

.result-currency {
    font-size: 1.8rem;
    margin-top: 6px;
    margin-right: 4px;
}

.result-val {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    letter-spacing: -0.04em;
}

.result-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 26px;
    font-weight: 500;
}

.roi-bar-container {
    width: 100%;
    height: 24px;
    background-color: rgba(5, 11, 22, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.roi-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-indigo), var(--accent-green));
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
    border-radius: inherit;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-label {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.08);
}

.results-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 26px;
}

.detail-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.detail-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
}

.detail-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   12. The Comparison Matrix Section (Why Badar Edge)
   -------------------------------------------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    position: relative;
    overflow: hidden;
}

.why-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.title-grey {
    color: rgba(168, 180, 200, 0.6);
}

.title-glowing {
    background: linear-gradient(135deg, var(--white) 30%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.why-list li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-red {
    color: var(--accent-red);
}

.icon-green {
    color: var(--accent-green);
}

.active-why-card {
    border-color: rgba(30, 144, 255, 0.35);
    box-shadow: 0 20px 50px -15px rgba(30, 144, 255, 0.08), inset 0 0 20px rgba(30, 144, 255, 0.02);
}

.why-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 144, 255, 0.08);
    border: 1px solid rgba(30, 144, 255, 0.2);
    color: var(--accent-cyan);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   13. Deployment Pipeline Timeline
   -------------------------------------------------------------------------- */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    margin-top: 40px;
}

/* 3-step variant (home how-it-works) */
.process-timeline--3 {
    grid-template-columns: repeat(3, 1fr);
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: 0 0 10px var(--accent-purple);
    transition: width 0.4s ease;
}

.process-step {
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    background-color: rgba(6, 4, 18, 0.45);
}

.step-number-glow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: 0 0 0 0 rgba(5, 11, 22, 0.4);
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sequence highlight classes in JS */
.process-step.active .step-number-glow {
    border-color: var(--accent-purple);
    color: var(--white);
    box-shadow: 0 0 20px rgba(62, 168, 255, 0.35);
}

.step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--white);
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. Contact & Action Funnel
   -------------------------------------------------------------------------- */
.contact-card-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    overflow: hidden;
    padding: 0;
    border-radius: 24px;
}

/* Left Informative Column */
.contact-info-panel {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}

.contact-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--white) 35%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 600;
}

.bullet-item i {
    width: 18px;
    height: 18px;
}

/* Right Interactive Form Panel */
.contact-form-panel {
    padding: 60px;
    background-color: rgba(2, 1, 8, 0.4);
    display: flex;
    align-items: center;
    position: relative;
}

.cyber-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

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

.form-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.form-input, .form-select {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    background-color: rgba(6, 4, 18, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent-purple);
    background-color: rgba(6, 4, 18, 0.7);
    box-shadow: 0 0 15px rgba(62, 168, 255, 0.15);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.icon-animate-spin {
    width: 16px;
    height: 16px;
}

.cyber-form:submit button:hover i {
    animation: spin 1s infinite linear;
}

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

/* Submission Success State styling */
.form-success-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.form-success-state.show-state {
    opacity: 1;
    pointer-events: all;
}

.success-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-green);
    filter: drop-shadow(0 0 8px var(--accent-green));
}

.success-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.success-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.hide-state {
    display: none !important;
}

/* Contact info details (emails, WhatsApp) */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-detail-item i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.contact-detail-link {
    font-size: 0.88rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-detail-link:hover {
    color: var(--accent-cyan);
}

/* WhatsApp direct CTA */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: var(--accent-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
}

.btn-whatsapp:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
}

.btn-whatsapp i {
    width: 20px;
    height: 20px;
}

/* Form row (side-by-side fields) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Textarea input */
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(6, 4, 18, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-textarea:focus {
    border-color: var(--accent-purple);
    background-color: rgba(6, 4, 18, 0.7);
    box-shadow: 0 0 15px rgba(62, 168, 255, 0.15);
}

.form-textarea::placeholder {
    color: var(--text-muted);
}

/* Required and optional indicators */
.required-star {
    color: var(--accent-red);
}

.optional-tag {
    font-weight: 400;
    text-transform: lowercase;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   15. Footer Layout
   -------------------------------------------------------------------------- */
.footer-container {
    border-top: 1px solid var(--border-color);
    background-color: rgba(2, 1, 8, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 44px 20px;
}

.footer-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-side {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.15;
}

.footer-copy {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    width: 100%;
}

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

.footer-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-cta {
    margin-left: 30px;
}

/* --------------------------------------------------------------------------
   16. Responsive Breakpoints (Media Queries)
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    
    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    #card-linkedin {
        grid-column: span 2;
    }
    
    .impact-container {
        grid-template-columns: 1fr;
    }
    
    .impact-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 14px;
        gap: 16px;
    }
    
    .impact-tab-btn {
        flex-shrink: 0;
        width: 240px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .timeline-line {
        display: none;
    }
}

/* Tablets (Portrait) */
@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }
    
    .navbar-container {
        padding: 0 10px;
        top: 10px;
    }
    .navbar {
        height: auto;
        padding: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-width: none;
        justify-content: flex-start;
    }
    .navbar:hover {
        border-color: transparent;
        box-shadow: none;
    }
    
    .hamburger {
        padding: 8px;
        background: rgba(5, 11, 22, 0.5);
        border-radius: 12px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(5, 11, 22, 0.12);
    }
    .hamburger span {
        width: 20px;
    }
    
    .nav-book-call {
        display: none !important;
    }
    
    .db-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 40px 24px;
    }
    
    .contact-form-panel {
        padding: 40px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-wrap {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links-side {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .db-grid {
        grid-template-columns: 1fr;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    #card-linkedin {
        grid-column: span 1;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .panel-visual-box {
        height: 220px;
        padding: 15px;
    }
}

/* ==========================================================================
   BADAR EDGE - EXTRA PREMIUM CYBER-DARK DECORATIVE ELEMENTS
   ========================================================================== */

/* Grid and Dot Patterns */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

/* Cyber Corners overlay for glass panels */
.glass-panel {
    position: relative;
}

.cyber-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(6, 182, 212, 0.4);
    border-style: solid;
    pointer-events: none;
    z-index: 5;
}

.corner-tl {
    top: -1px;
    left: -1px;
    border-width: 1.5px 0 0 1.5px;
    border-top-left-radius: 4px;
}

.corner-tr {
    top: -1px;
    right: -1px;
    border-width: 1.5px 1.5px 0 0;
    border-top-right-radius: 4px;
}

.corner-bl {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 1.5px 1.5px;
    border-bottom-left-radius: 4px;
}

.corner-br {
    bottom: -1px;
    right: -1px;
    border-width: 0 1.5px 1.5px 0;
    border-bottom-right-radius: 4px;
}

/* Premium Tech Dividers */
.cyber-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 60px auto;
    padding: 0 20px;
    opacity: 0.8;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(5, 11, 22, 0.5) 50%, transparent);
}

.divider-node {
    margin: 0 20px;
    flex-shrink: 0;
    animation: pulseNode 3s infinite alternate;
}

@keyframes pulseNode {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Decorative Status badges */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.05em;
    font-family: monospace;
}

.status-pill-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-green);
}

/* ==========================================================================
   17. Pricing Section — Global & Local Market Tiers
   ========================================================================== */
.pricing-section {
    padding-bottom: 80px;
}

/* Pricing Service Wrapper */
.pricing-service {
    margin-bottom: 64px;
}

.pricing-service:last-child {
    margin-bottom: 0;
}

.pricing-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.01);
}

.service-icon i {
    width: 24px;
    height: 24px;
}

.service-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Tier Cards Row (3-column) */
.pricing-tier-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

/* Tier Cards Flex (for 5 LinkedIn packages) */
.pricing-tier-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.pricing-tier-flex .pricing-tier {
    flex: 1 1 calc(20% - 16px);
    min-width: 180px;
    max-width: 240px;
}

/* Individual Pricing Card */
.pricing-tier {
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(255, 255, 255, 0.08), 0 0 30px -8px rgba(99, 200, 255, 0.12);
}

/* Recommended Card Highlight */
.tier-rec {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px -4px rgba(6, 182, 212, 0.08), inset 0 0 20px rgba(6, 182, 212, 0.02);
    transform: scale(1.03);
    z-index: 2;
}

.tier-rec:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 30px 60px -20px rgba(255, 255, 255, 0.08), 0 0 35px -6px rgba(6, 182, 212, 0.18);
}

.rec-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.tier-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tier-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 8px;
}

.currency {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-top: 6px;
}

.amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
}

.period {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 8px;
    margin-left: 2px;
}

.tier-setup {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-purple);
    background: rgba(62, 168, 255, 0.06);
    border: 1px solid rgba(62, 168, 255, 0.12);
    padding: 2px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 14px;
}

.tier-audience {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 36px;
}

.tier-features {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}

.tier-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    padding-left: 4px;
    border-bottom: 1px solid rgba(5, 11, 22, 0.02);
    padding-bottom: 10px;
}

.tier-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tier-features li::before {
    content: "◆";
    color: var(--accent-cyan);
    font-size: 0.45rem;
    margin-right: 8px;
    vertical-align: middle;
    opacity: 0.7;
}

.tier-delivery {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Smaller CTA buttons inside pricing cards */
.btn-sm {
    padding: 10px 18px;
    font-size: 0.8rem;
    gap: 8px;
}

/* Pricing Meta: Add-ons + Quote */
.pricing-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.pricing-addons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 20px;
    background: rgba(5, 11, 22, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.addons-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    flex-shrink: 0;
}

.addons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.addon-item {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.addon-price {
    color: var(--accent-cyan);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    margin-left: 4px;
}

/* Positioning Quote */
.pricing-quote {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
}

.quote-bar {
    width: 3px;
    height: auto;
    min-height: 32px;
    align-self: stretch;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
    flex-shrink: 0;
}

.pricing-quote p {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-tier-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pricing-tier-flex .pricing-tier {
        flex: 1 1 calc(33.33% - 16px);
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .pricing-tier-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-tier-flex .pricing-tier {
        flex: 1 1 calc(50% - 12px);
        min-width: 140px;
    }

    .tier-rec {
        transform: scale(1);
    }

    .pricing-service-header {
        flex-direction: column;
        text-align: center;
    }

    .pricing-addons {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-tier {
        padding: 28px 20px 24px;
    }
}

@media (max-width: 480px) {
    .pricing-tier-flex .pricing-tier {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .addons-list {
        flex-direction: column;
        gap: 6px;
    }
}

/* ==========================================================================
   V2.0 — PROBLEM SECTION (The problem with most AI services)
   ========================================================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.problem-card {
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.problem-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.problem-icon-wrap i {
    width: 24px;
    height: 24px;
}

.problem-icon-wrap.icon-red {
    color: var(--accent-red);
    background: rgba(255, 90, 107, 0.06);
    border-color: rgba(255, 90, 107, 0.12);
}

.problem-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.problem-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-outcome {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.outcome-line {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

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

/* ==========================================================================
   V2.0 — SOLUTIONS SECTION (Three-category structure)
   ========================================================================== */
.solution-category {
    margin-bottom: 56px;
}

.solution-category-header {
    margin-bottom: 28px;
}

.solution-cat-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.solution-cat-badge.badge-cyan { background: rgba(30, 144, 255, 0.08); color: var(--accent-cyan); border: 1px solid rgba(30, 144, 255, 0.15); }
.solution-cat-badge.badge-purple { background: rgba(62, 168, 255, 0.08); color: var(--accent-purple); border: 1px solid rgba(62, 168, 255, 0.15); }
.solution-cat-badge.badge-indigo { background: rgba(99, 200, 255, 0.08); color: var(--accent-indigo); border: 1px solid rgba(99, 200, 255, 0.15); }

.solution-cat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.solution-cat-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.solution-cat-title-accent {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(30, 144, 255, 0.08));
}

.solution-cat-title-accent::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 4px;
    opacity: 0.6;
}

.solution-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.solution-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(255, 255, 255, 0.08), 0 0 30px -8px rgba(99, 200, 255, 0.12);
}

.solution-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(99, 200, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

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

.solution-card-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
}

.solution-icon i {
    width: 20px;
    height: 20px;
}

.solution-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
}

.solution-badge.badge-cyan { background: rgba(30, 144, 255, 0.06); color: var(--accent-cyan); border: 1px solid rgba(30, 144, 255, 0.12); }
.solution-badge.badge-purple { background: rgba(62, 168, 255, 0.06); color: var(--accent-purple); border: 1px solid rgba(62, 168, 255, 0.12); }
.solution-badge.badge-indigo { background: rgba(99, 200, 255, 0.06); color: var(--accent-indigo); border: 1px solid rgba(99, 200, 255, 0.12); }

.solution-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.solution-card-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.solution-card-features {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.solution-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.solution-card-features li i {
    flex-shrink: 0;
}

.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-top: auto;
    transition: transform 0.3s ease, color 0.3s ease;
}

.solution-card-link:hover {
    transform: translateX(4px);
    color: var(--accent-purple);
}

.solution-card-coming {
    opacity: 0.6;
}

.solution-card-coming:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .solution-card-grid {
        grid-template-columns: 1fr;
    }
    .solution-grid-3col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   V2.0 — WORKFLOW SECTION (6-step Speed-to-Lead)
   ========================================================================== */
.workflow-section {
    position: relative;
}

.workflow-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    padding: 24px 32px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
    transition: border-color 0.4s ease, background 0.4s ease;
    position: relative;
    z-index: 1;
}

.workflow-step:hover {
    border-color: rgba(99, 200, 255, 0.2);
    background: var(--card-bg-hover);
}

.workflow-step-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.2));
}

.workflow-step-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.workflow-step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.workflow-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0.3;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .workflow-step {
        padding: 20px 20px;
    }
}

/* ==========================================================================
   V2.0 — BENCHMARKS SECTION (Impact simplified)
   ========================================================================== */
.benchmarks-container {
    padding: 50px 44px;
}

.benchmarks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benchmark-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.benchmark-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
}

.benchmark-icon i {
    width: 22px;
    height: 22px;
}

.icon-cyan { color: var(--accent-cyan); }
.icon-purple { color: var(--accent-purple); }
.icon-indigo { color: var(--accent-indigo); }

.benchmark-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.font-cyan { color: var(--accent-cyan); }
.font-purple { color: var(--accent-purple); }
.font-indigo { color: var(--accent-indigo); }

.benchmark-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
}

.benchmark-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

/* ==========================================================================
   V2.0 — ROI SCENARIO CARDS
   ========================================================================== */
.roi-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roi-scenario-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
}

.roi-scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(255, 255, 255, 0.08), 0 0 30px -8px rgba(99, 200, 255, 0.12);
}

.roi-scenario-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border-color);
}

.roi-scenario-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    background: rgba(30, 144, 255, 0.06);
    border: 1px solid rgba(30, 144, 255, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.roi-scenario-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.roi-scenario-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roi-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.roi-metric-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.roi-metric-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
}

.roi-metric-value.roi-bad {
    color: var(--accent-red);
}

.roi-metric-value.roi-good {
    color: var(--accent-green);
}

.roi-highlight {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.roi-highlight .roi-metric-label {
    font-weight: 600;
    color: var(--accent-cyan);
}

.roi-highlight .roi-metric-value {
    font-size: 1.05rem;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.2));
}

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

/* ==========================================================================
   V2.0 — DUAL CURRENCY PRICING
   ========================================================================== */
.tier-price-pkr {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* ==========================================================================
   V2.0 — CUSTOM SOLUTIONS COMING SOON
   ========================================================================== */
/* ==========================================================================
   V2.0 — CONTACT WHATSAPP PROMPT
   ========================================================================== */
.contact-whatsapp-prompt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(30, 144, 255, 0.03);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-whatsapp-prompt i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-whatsapp-prompt a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.contact-whatsapp-prompt a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   V2.0 — URDU TESTIMONIAL TRANSLATION
   ========================================================================== */
.t-quote-translation {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(5, 11, 22, 0.12);
}

/* ==========================================================================
   V2.0 — COMPACT GRID & ARCHITECT UPDATES
   ========================================================================== */
.db-grid-compact {
    grid-template-columns: repeat(4, 1fr);
}

.architect-bio-re {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(30, 144, 255, 0.03);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 0 10px 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    border: 1px solid rgba(30, 144, 255, 0.08);
    border-left-width: 3px;
}

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

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

/* ==========================================================================
   V2.0 — RESPONSIVE: Solutions section on tablets
   ========================================================================== */
@media (max-width: 1024px) {
    .solution-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   V2.0 — PROBLEM ICON WRAP COLOR HOVER STATE
   ========================================================================== */
.problem-card:hover .problem-icon-wrap.icon-red {
    background: rgba(255, 90, 107, 0.12);
    border-color: rgba(255, 90, 107, 0.2);
}

/* ==========================================================================
   V2.0 — SECTION SUBTITLE COLOR ENHANCEMENT
   ========================================================================== */
.section-header--compact {
    margin-bottom: 32px;
}

/* ==========================================================================
   V2.1 — USER-FRIENDLY DESIGN ENHANCEMENTS
   ========================================================================== */

/* Larger base font for better readability (applied via original html, body rule above) */

/* Hero headline: add pre-line styling */
.hero-headline-pre {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    -webkit-text-fill-color: var(--accent-cyan);
    background: none;
    opacity: 0.9;
}

/* Bigger hero headline on desktop */
.hero-headline {
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
    line-height: 1.08;
    margin-bottom: 28px;
}

.hero-subtext {
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 750px;
}

/* Larger, more readable section titles */
.section-title {
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* More generous section spacing */
.section {
    padding: 130px 28px;
}

.section-header {
    margin-bottom: 64px;
    max-width: 720px;
}

/* Improved card padding and readability */
.glass-panel {
    border-radius: 24px;
}

.glass-panel:hover {
    border-color: rgba(30, 144, 255, 0.3);
    background-color: var(--card-bg-hover);
}

/* Problem cards: better padding and text */
.problem-card {
    padding: 44px 36px;
    gap: 20px;
    border-radius: 24px;
}

.problem-title {
    font-size: 1.2rem;
    line-height: 1.3;
}

.problem-text {
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 340px;
}

.problem-outcome {
    margin-top: 10px;
}

.outcome-line {
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.55;
    max-width: 750px;
    margin: 0 auto;
}

/* Solution cards: better padding and text sizing */
.solution-card {
    padding: 40px 32px;
    border-radius: 20px;
}

.solution-card-title {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 14px;
}

.solution-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.solution-card-features li {
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 6px 0;
}

/* Workflow steps: more readable */
.workflow-step {
    padding: 28px 36px;
    border-radius: 18px;
}

.workflow-step-number {
    font-size: 2rem;
    min-width: 52px;
}

.workflow-step-content h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.workflow-step-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Benchmark cards: larger metrics */
.benchmark-value {
    font-size: 2.6rem;
}

.benchmark-label {
    font-size: 1rem;
}

.benchmark-desc {
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Testimonial cards: improved text sizing */
.testimonial-card {
    padding: 36px 28px;
}

.t-quote p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.t-quote-translation {
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ROI scenario cards: better spacing */
.roi-scenario-header {
    padding: 28px 28px 18px;
}

.roi-scenario-title {
    font-size: 1.05rem;
}

.roi-scenario-body {
    padding: 22px 28px 28px;
    gap: 18px;
}

.roi-metric-label {
    font-size: 0.85rem;
}

.roi-metric-value {
    font-size: 0.95rem;
}

/* Differentiator cards: better spacing */
.why-card {
    padding: 40px 36px;
    border-radius: 24px;
}

.why-list li {
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 8px 0;
}

/* Pricing cards: better padding */
.pricing-tier {
    padding: 36px 28px 32px;
    border-radius: 20px;
}

.tier-price .amount {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
}

.tier-features li {
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 10px 0;
}

.pricing-service-header {
    margin-bottom: 36px;
    padding-bottom: 18px;
}

.service-name {
    font-size: 1.35rem;
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Process steps: better padding */
.process-step {
    padding: 32px 36px;
    border-radius: 20px;
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.step-desc {
    font-size: 0.88rem;
    line-height: 1.6;
}

.step-number-glow {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

/* Contact section improvements */
.contact-info-panel {
    padding: 64px;
}

.contact-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 22px;
}

.contact-subtitle {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.65;
    margin-bottom: 44px;
}

.contact-form-panel {
    padding: 64px;
}

.contact-whatsapp-prompt {
    font-size: 0.88rem;
    padding: 14px 18px;
    margin-bottom: 28px;
    border-radius: 12px;
}

/* Dashboard/about cards: better layout */
.architect-profile {
    padding: 36px 40px;
    border-radius: 24px;
    margin-bottom: 28px;
}

.architect-name-main {
    font-size: 1.6rem;
}

.architect-role-main {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.architect-bio {
    font-size: 0.92rem;
    line-height: 1.65;
}

.architect-quote-line {
    font-size: 0.9rem;
    line-height: 1.6;
}

.db-card {
    padding: 40px 32px;
}

.stat-number {
    font-size: clamp(2rem, 2.8vw, 2.6rem);
}

.stat-label {
    font-size: 0.88rem;
    line-height: 1.4;
}

.db-grid-header {
    padding: 16px 28px;
}

.db-grid-label {
    font-size: 0.78rem;
}

/* Hero actions larger */
.hero-actions {
    gap: 20px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn {
    padding: 15px 30px;
    font-size: 0.95rem;
    border-radius: 32px;
}

/* Workflow connectors more visible */
.workflow-connector {
    width: 3px;
    height: 36px;
    opacity: 0.4;
}

/* Footer improvements */
.footer-copy {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-link {
    font-size: 0.82rem;
}

/* Button in pricing: better sizing */
.btn-sm {
    padding: 12px 20px;
    font-size: 0.82rem;
}

/* Tier price PKR more visible */
.tier-price-pkr {
    font-size: 0.82rem;
    margin-bottom: 16px;
}

/* Better responsive for mobile */
@media (max-width: 768px) {
    .section {
        padding: 90px 20px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .hero-brand {
        gap: 10px;
        margin-bottom: 24px;
    }

    .hero-brand-text {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
    }

    .hero-headline {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }
    
    .hero-subtext {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 28px;
        font-size: 0.95rem;
    }
    
    .problem-card {
        padding: 32px 24px;
    }
    
    .solution-card {
        padding: 32px 24px;
    }
    
    .workflow-step {
        padding: 22px 24px;
    }
    
    .pricing-tier {
        padding: 28px 22px 26px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 24px;
    }
    
    .architect-profile {
        padding: 28px 24px;
    }
    
    .db-card {
        padding: 30px 24px;
    }
    
    .roi-scenario-header {
        padding: 24px 24px 16px;
    }
    
    .roi-scenario-body {
        padding: 18px 24px 24px;
    }
    
    .why-card {
        padding: 32px 24px;
    }
    
    .process-step {
        padding: 26px 24px;
    }
    
    .benchmarks-container {
        padding: 28px 20px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }



}

@media (max-width: 480px) {
    .section {
        padding: 80px 16px;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .section-subtitle {
        font-size: 0.92rem;
    }
}

/* ==========================================================================
   V2.2 — SOLUTIONS OVERVIEW, SPEED-TO-LEAD DEEP DIVE, & INTERACTIVE CUSTOM
   ========================================================================== */

/* Overview infographic — 3 category cards */
/* Hub infographic */
.solutions-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 64px;
    position: relative;
}

.hub-node {
    padding: 28px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(5, 11, 22, 0.12);
    background: rgba(5, 11, 22, 0.5);
    backdrop-filter: blur(12px);
}

.hub-node-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-indigo));
    opacity: 0.08;
    z-index: -1;
    filter: blur(12px);
}

.hub-node-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(139,92,246,0.15));
    border: 1px solid rgba(5, 11, 22, 0.12);
    margin-bottom: 4px;
}

.hub-node-icon i {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.hub-node-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.hub-node-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.hub-branches {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: -1px;
    position: relative;
    width: 100%;
}

.hub-branch {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    max-width: 340px;
}

.hub-branch-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, rgba(5, 11, 22, 0.5), rgba(5, 11, 22, 0.5));
    flex-shrink: 0;
}

.hub-branch-card {
    padding: 24px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 100%;
    border: 1px solid rgba(5, 11, 22, 0.12);
    background: rgba(5, 11, 22, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hub-branch-card:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 11, 22, 0.12);
    box-shadow: 0 8px 32px rgba(5, 11, 22, 0.4);
}

.hub-branch-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.hub-branch-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
}

.hub-branch-icon i {
    width: 22px;
    height: 22px;
}

.hub-branch-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}

.hub-branch-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 200px;
}

/* Hub WhatsApp CTA */
.hub-whatsapp-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: -24px auto 48px;
}

.hub-whatsapp-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Shiny button animation */
.btn-shiny {
    position: relative;
    overflow: hidden;
}

.btn-shiny::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(5, 11, 22, 0.5), transparent);
    transform: skewX(-20deg);
    animation: shiny-sweep 3.5s ease-in-out infinite;
}

@keyframes shiny-sweep {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Shiny badge animation */
.badge-shiny {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-purple), #a855f7);
}

.badge-shiny::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(5, 11, 22, 0.5), transparent);
    transform: skewX(-20deg);
    animation: shiny-sweep 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .solutions-hub {
        margin-bottom: 40px;
    }
    .hub-node {
        padding: 20px 24px;
    }
    .hub-branches {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .hub-branch {
        max-width: 100%;
        width: 100%;
    }
    .hub-branch-line {
        width: 2px;
        height: 20px;
    }
    .hub-branch-card {
        padding: 20px 16px;
    }
    .hub-whatsapp-cta {
        margin: -16px auto 32px;
    }
}

@media (max-width: 480px) {
    .hub-node {
        padding: 16px 20px;
    }
    .hub-node-icon {
        width: 40px;
        height: 40px;
    }
    .hub-node-icon i {
        width: 20px;
        height: 20px;
    }
    .hub-branch-icon {
        width: 38px;
        height: 38px;
    }
    .hub-branch-icon i {
        width: 18px;
        height: 18px;
    }
}

/* Speed-to-Lead deep dive */
.stl-deepdive {
    padding: 48px 44px 44px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stl-deepdive:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -20px rgba(255, 255, 255, 0.08), 0 0 30px -8px rgba(30, 144, 255, 0.1);
}

.stl-deepdive-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(500px circle at 30% 20%, rgba(30, 144, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.stl-deepdive-top {
    margin-bottom: 28px;
}

.stl-deepdive-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.stl-badge-re {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.stl-deepdive-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stl-deepdive-tagline {
    font-size: 1.05rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Problem stats strip */
.stl-problem-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 28px 0;
    margin-bottom: 32px;
    border-top: 1px solid rgba(5, 11, 22, 0.12);
    border-bottom: 1px solid rgba(5, 11, 22, 0.12);
}

.stl-problem-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.stl-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: -0.02em;
}

.stl-stat-bad {
    color: var(--accent-red);
}

.stl-stat-good {
    color: var(--accent-cyan);
}

.stl-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stl-problem-strip {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
    }
    .stl-deepdive {
        padding: 32px 24px 28px;
    }
    .stl-deepdive-name {
        font-size: 1.4rem;
    }
}

/* Deep dive body */
.stl-deepdive-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stl-why-section {
    max-width: 680px;
}

.stl-subhead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.stl-subhead-red {
    color: var(--accent-red);
}

.stl-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Benefit grid */
.stl-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stl-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.stl-benefit-item i {
    flex-shrink: 0;
    margin-top: 2px;
}

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

/* CTA row */
.stl-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Custom Solutions interactive section */
.custom-interactive {
    padding: 48px 44px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px dashed rgba(62, 168, 255, 0.2);
    background: rgba(62, 168, 255, 0.02);
}

.custom-interactive-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(600px circle at 50% 50%, rgba(62, 168, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.custom-interactive-badge-wrap {
    margin-bottom: 24px;
}

.custom-interactive-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.custom-interactive-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62, 168, 255, 0.08);
    border: 1px solid rgba(62, 168, 255, 0.15);
    margin-bottom: 8px;
    animation: pulseCustomIcon 3s infinite alternate ease-in-out;
}

@keyframes pulseCustomIcon {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.08); opacity: 1; }
}

.custom-interactive-icon {
    width: 34px;
    height: 34px;
    color: var(--accent-purple);
}

.custom-interactive-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.custom-interactive-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 520px;
}

.custom-interactive-pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    padding: 16px 24px;
    background: rgba(5, 11, 22, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(5, 11, 22, 0.12);
    margin: 8px 0;
}

.cip-label {
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-align: center;
}

.cip-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cip-note {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.custom-interactive-prompt {
    font-size: 0.92rem;
    color: var(--accent-purple);
    font-weight: 500;
    margin-top: 8px;
}

/* Service pricing on solution cards */
.sol-service-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(30, 144, 255, 0.04);
    border-radius: 8px;
    width: 100%;
}

.ssp-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ssp-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.ssp-period {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.sol-service-setup {
    width: 100%;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-left: 4px;
}

/* Compact service description in pricing */
.compact-service-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 14px;
    margin-top: -6px;
}

.ccp-note {
    width: 100%;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
}

/* Mobile responsive for all new sections */
@media (max-width: 768px) {
    .stl-cta-row {
        flex-direction: column;
    }
    .stl-cta-row .btn-large {
        width: 100%;
    }
    .custom-interactive {
        padding: 32px 24px;
    }
    .custom-interactive-pricing {
        flex-direction: column;
        align-items: center;
    }
    .custom-interactive-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .solutions-hub {
        margin-bottom: 40px;
    }
    .stl-deepdive {
        padding: 24px 18px 22px;
    }
    .stl-deepdive-name {
        font-size: 1.2rem;
    }
    .stl-deepdive-tagline {
        font-size: 0.92rem;
    }
    .custom-interactive {
        padding: 24px 18px;
    }
    .sol-service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   V2.3 — PRICING REDESIGN (USD-only, human-touched, infographic elements)
   ========================================================================== */

/* Quick-fit guide row above pricing tiers */
.pricing-fit-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.fit-item {
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid rgba(5, 11, 22, 0.12);
    background: rgba(5, 11, 22, 0.5);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.fit-item-rec {
    border-color: rgba(30, 144, 255, 0.15);
    background: rgba(30, 144, 255, 0.025);
}

.fit-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 10px;
    border-radius: 10px;
    background: rgba(30, 144, 255, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(30, 144, 255, 0.15);
    white-space: nowrap;
}

.fit-icon {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1;
}

.fit-icon-cy {
    color: var(--accent-cyan);
}

.fit-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.fit-label-cy {
    color: var(--accent-cyan);
}

.fit-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.fit-leads {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .pricing-fit-guide {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ROI line on pricing tiers */
.tier-roi {
    font-size: 0.72rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 18px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 6px;
    display: inline-block;
}

.tier-roi-cy {
    color: var(--accent-cyan);
    background: rgba(30, 144, 255, 0.06);
}

/* Cleaner button for service cards */
.btn-svc {
    margin-top: 4px;
}

/* ==========================================================================
   V2.4 — ANIMATED CATEGORY BADGES & MORE SYSTEMS CARD
   ========================================================================== */

/* Animated category badge with icon */
.cat-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 5px 14px 5px 10px !important;
}

.cat-badge-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cat-badge:hover .cat-badge-icon {
    transform: rotate(-8deg) scale(1.15);
}

/* More systems in development card */
.more-systems-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px dashed rgba(5, 11, 22, 0.12);
    background: rgba(5, 11, 22, 0.5);
    margin-top: 32px;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.more-systems-card:hover {
    border-color: rgba(30, 144, 255, 0.15);
    background: rgba(30, 144, 255, 0.015);
}

/* Animated dots */
.more-systems-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.ms-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: msDotPulse 1.8s infinite ease-in-out;
}

.ms-dot:nth-child(1) { animation-delay: 0s; }
.ms-dot:nth-child(2) { animation-delay: 0.3s; }
.ms-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes msDotPulse {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 8px rgba(30, 144, 255, 0.4); }
}

.more-systems-text {
    flex: 1;
}

.more-systems-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    background: rgba(30, 144, 255, 0.06);
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 6px;
}

.more-systems-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.btn-small {
    font-size: 0.78rem;
    padding: 8px 18px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .more-systems-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 14px;
    }
    .more-systems-text p {
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   V2.5 — AI SERVICES 2-COLUMN GRID (SOLUTIONS & PRICING)
   ========================================================================== */
.services-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}

.svc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(5, 11, 22, 0.12);
    background: rgba(5, 11, 22, 0.5);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.svc-card:hover {
    border-color: rgba(30, 144, 255, 0.12);
    background: rgba(30, 144, 255, 0.025);
    transform: translateY(-2px);
}

.svc-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 11, 22, 0.12);
    background: rgba(5, 11, 22, 0.5);
    flex-shrink: 0;
}

.svc-card-icon i {
    width: 18px;
    height: 18px;
}

.svc-card-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Services note */
.services-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    max-width: 560px;
    margin: 16px auto 0;
}

@media (max-width: 768px) {
    .services-grid-2col {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .svc-card {
        padding: 12px 16px;
    }
    .svc-card-name {
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   V2.5 — ROI BAR ANIMATIONS & INTERACTION
   ========================================================================== */
.roi-bar-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 6px;
}

.roi-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.roi-bar-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 56px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.roi-bar-track {
    flex: 1;
    height: 26px;
    background: rgba(5, 11, 22, 0.5);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.roi-bar {
    height: 100%;
    border-radius: 6px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.roi-bar-before {
    background: linear-gradient(90deg, rgba(255, 90, 107, 0.55), rgba(255, 90, 107, 0.25));
}

.roi-bar-after {
    background: linear-gradient(90deg, var(--accent-cyan), rgba(30, 144, 255, 0.4));
}

.roi-bar-value {
    font-size: 0.78rem;
    font-weight: 700;
    min-width: 52px;
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}

.roi-bar-value.roi-bad {
    color: var(--accent-red);
}

.roi-bar-value.roi-good {
    color: var(--accent-cyan);
}

/* ROI highlight modern */
.roi-highlight-modern {
    text-align: center;
    padding: 18px 16px 6px;
    margin-top: 6px;
    border-top: 1px solid rgba(5, 11, 22, 0.12);
}

.roi-highlight-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 12px rgba(30, 144, 255, 0.15));
}

.roi-highlight-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ROI card glow overlay */
.roi-scenario-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(30, 144, 255, 0.04) 0%, transparent 60%);
}

.roi-scenario-card:hover .roi-scenario-card-glow {
    opacity: 1;
}

/* Active (click highlight) state for ROI cards */
.roi-scenario-card.active {
    border-color: rgba(30, 144, 255, 0.25);
    box-shadow: 0 0 30px -8px rgba(30, 144, 255, 0.15), 0 20px 60px -20px rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.roi-scenario-card.active .roi-scenario-card-glow {
    opacity: 1;
    background: radial-gradient(600px circle at 50% 50%, rgba(30, 144, 255, 0.06) 0%, transparent 60%);
}

/* ROI counter emphasis */
.roi-counter {
    font-variant-numeric: tabular-nums;
}

/* Responsive */
@media (max-width: 768px) {
    .roi-bar-label {
        min-width: 50px;
        font-size: 0.62rem;
    }
    .roi-bar-track {
        height: 22px;
    }
    .roi-bar-value {
        font-size: 0.72rem;
        min-width: 44px;
    }
    .roi-highlight-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   V3.0 — REDESIGN (Multi-vertical, conversion-focused)
   ========================================================================== */

/* Section label (uppercase kicker above headline) */
.section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 14px;
    padding: 5px 14px;
    border: 1px solid rgba(30, 144, 255, 0.15);
    border-radius: 30px;
    background: rgba(30, 144, 255, 0.04);
}

.section-header.text-center .section-label {
    margin-left: auto;
    margin-right: auto;
}

/* Hero vertical cards */
.hero-verticals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 920px;
    margin-bottom: 44px;
}

.hero-vertical-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero-vertical-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 25px 60px -20px rgba(5, 11, 22, 0.5), 0 0 30px -8px rgba(30, 144, 255, 0.12);
}

.hero-vertical-emoji {
    font-size: 2rem;
    line-height: 1;
}

.hero-vertical-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

.hero-vertical-tagline {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    min-height: 40px;
}

.hero-vertical-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.hero-vertical-cta i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.hero-vertical-card:hover .hero-vertical-cta i {
    transform: translateX(3px);
}

/* Clean problem cards (no icons) */
.problem-card--clean {
    gap: 12px;
}

.problem-card--clean .problem-title {
    font-size: 1.2rem;
}

/* Stats: hide "+" for the Industries card */
.stat-plus {
    color: inherit;
}

.no-plus .stat-plus {
    display: none;
}

/* ==========================================================================
   V3.0 — THREE VERTICALS SECTION
   ========================================================================== */
.verticals-section {
    background: rgba(5, 11, 22, 0.012);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.verticals-section > .section-header {
    max-width: 680px;
    margin: 0 auto 70px;
}

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

.vertical-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 40px 32px;
    border-radius: 20px;
}

.vertical-emoji {
    font-size: 2.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(5, 11, 22, 0.02);
    border: 1px solid var(--border-color);
}

.vertical-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.vertical-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 6px;
}

.vertical-services {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.vertical-services li {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.4;
    padding-left: 22px;
    position: relative;
}

.vertical-services li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(30, 144, 255, 0.4);
}

.vertical-card .btn {
    margin-top: auto;
}

/* ==========================================================================
   V3.0 — ONE STRONG RESULT (PROOF)
   ========================================================================== */
.proof-featured {
    max-width: 820px;
    margin: 0 auto;
    padding: 52px 56px;
    text-align: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.proof-featured::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 180px;
    background: radial-gradient(closest-side, rgba(99, 200, 255, 0.12), transparent);
    pointer-events: none;
}

.proof-badge {
    margin-bottom: 18px;
}

.proof-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.proof-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.65;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

.proof-author {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 34px;
}

.proof-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.proof-result {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-result-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.proof-result-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   V3.0 — SERVICE LADDER
   ========================================================================== */
.ladder {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    max-width: 1040px;
    margin: 0 auto;
}

.ladder-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ladder-month {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ladder-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 26px 20px;
    border-radius: 18px;
    width: 100%;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.ladder-node:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 144, 255, 0.25);
    box-shadow: 0 25px 60px -20px rgba(5, 11, 22, 0.5), 0 0 30px -8px rgba(30, 144, 255, 0.1);
}

.ladder-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
}

.ladder-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
}

.ladder-includes {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.ladder-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.ladder-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-indigo);
    opacity: 0.7;
}

.ladder-arrow-icon {
    width: 26px;
    height: 26px;
}

.pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 28px auto 0;
    line-height: 1.6;
}

/* ==========================================================================
   V3.0 — PROCESS DAYS
   ========================================================================== */
.step-days {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-purple);
    background: rgba(62, 168, 255, 0.06);
    border: 1px solid rgba(62, 168, 255, 0.12);
    padding: 3px 12px;
    border-radius: 20px;
    margin-top: 12px;
}
/* ==========================================================================
   V4.0 — COMPARISON TABLE
   ========================================================================== */
.compare-section {
    position: relative;
    overflow: hidden;
}

.compare-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(30, 144, 255, 0.08), transparent);
    pointer-events: none;
}

.compare-table {
    display: grid;
    grid-template-columns: 220px repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.compare-header {
    display: contents;
}

.compare-col-header {
    background: rgba(5, 11, 22, 0.02);
    padding: 24px 16px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.compare-col-header:last-child {
    border-right: none;
}

.compare-plan-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.compare-price {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.compare-row {
    display: contents;
}

.compare-col-header {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 20px 16px;
    background: rgba(5, 11, 22, 0.02);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.compare-cell {
    padding: 20px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.01);
}

.compare-cell:last-child {
    border-right: none;
}

.compare-row--high .compare-col-header {
    background: rgba(30, 144, 255, 0.06);
    color: var(--accent-cyan);
    font-weight: 700;
}

.compare-row--high .compare-cell {
    background: rgba(30, 144, 255, 0.04);
    font-weight: 500;
}

.compare-cta {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: rgba(5, 11, 22, 0.02);
    border-top: 1px solid var(--border-color);
}

.compare-trust {
    max-width: 520px;
    margin: 20px auto 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   V4.0 — FAQ SECTION
   ========================================================================== */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(62, 168, 255, 0.08), transparent);
    pointer-events: none;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question[aria-expanded="true"] {
    color: var(--accent-cyan);
    background: rgba(30, 144, 255, 0.08);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-cta-text {
    margin-top: 32px;
    font-size: 1rem;
    text-align: center;
}

/* ==========================================================================
   V4.0 — FOOTER PAYMENTS
   ========================================================================== */
.footer-payments {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-payments-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-payments-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-badge {
    display: inline-block;
    height: 40px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-badge img {
    height: 24px;
    width: auto;
    transition: transform 0.3s ease;
}

.payment-badge:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   V4.0 — CASE STUDY SECTION
   ========================================================================== */
.case-studies-section {
    position: relative;
    overflow: hidden;
}

.case-study-card {
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(5, 11, 22, 0.01));
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-study-card:hover {
    border-color: rgba(30, 144, 255, 0.25);
    box-shadow: 0 10px 40px -10px rgba(30, 144, 255, 0.2);
    transform: translateY(-5px);
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover::before {
    opacity: 1;
}

.cs-top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cs-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
}

.cs-badge.badge-cyan {
    background: rgba(30, 144, 255, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(30, 144, 255, 0.25);
}

.cs-badge.badge-purple {
    background: rgba(62, 168, 255, 0.12);
    color: var(--accent-purple);
    border: 1px solid rgba(62, 168, 255, 0.25);
}

.cs-badge.badge-indigo {
    background: rgba(99, 200, 255, 0.12);
    color: var(--accent-indigo);
    border: 1px solid rgba(99, 200, 255, 0.25);
}

.cs-title-block {
    flex: 1;
}

.cs-company {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.cs-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cs-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.cs-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: var(--accent-cyan);
    opacity: 0.3;
    font-weight: bold;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.cs-block {
    padding: 20px;
    border-radius: 12px;
    background: rgba(5, 11, 22, 0.02);
    border: 1px solid var(--border-color);
}

.cs-block-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-block--results {
    background: rgba(30, 144, 255, 0.04);
    border-color: rgba(30, 144, 255, 0.15);
}

.cs-block--results .cs-block-title {
    color: var(--accent-cyan);
}

.cs-before-after {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.cs-col {
    padding: 20px;
    border-radius: 12px;
    background: rgba(5, 11, 22, 0.01);
    border: 1px solid var(--border-color);
}

.cs-col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cs-col--before {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.04);
}

.cs-col--after {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.04);
}

.cs-col--before .cs-col-title {
    color: #ef4444;
}

.cs-col--after .cs-col-title {
    color: #22D27F;
}

/* ==========================================================================
   V4.0 — FOOTER PAYMENTS (mobile responsive)
   ========================================================================== */
@media (max-width: 900px) {
    .footer-payments-icons {
        gap: 12px;
    }
    .payment-badge {
        height: 36px;
        padding: 0 16px;
    }
    .payment-badge img {
        height: 20px;
    }
}
@media (max-width: 600px) {
    .footer-payments-icons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .footer-payments-icons::-webkit-scrollbar { display: none; }
    .payment-badge {
        flex-shrink: 0;
        height: 14px;
        padding: 0 10px;
        border-radius: 4px;
    }
    .payment-badge img {
        height: 8px;
    }
}
.founder-section {
    background: rgba(5, 11, 22, 0.012);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

.founder-section > .section-header {
    max-width: 680px;
    margin: 0 auto 60px;
}

.founder-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 56px;
    border-radius: 24px;
}

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

.founder-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 200, 255, 0.15), rgba(62, 168, 255, 0.15));
    border: 1px solid rgba(99, 200, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 0 40px -10px rgba(99, 200, 255, 0.25);
    letter-spacing: -0.02em;
    position: relative;
}

.founder-avatar::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.12);
    animation: guidePulse 3s ease-out infinite;
}

.founder-frame {
    position: relative;
    width: 260px;
    border-radius: 18px;
    padding: 12px 12px 10px;
    background: linear-gradient(160deg, rgba(30, 144, 255, 0.35), rgba(99, 200, 255, 0.35) 45%, rgba(62, 168, 255, 0.4));
    box-shadow: 0 0 50px -12px rgba(99, 200, 255, 0.45);
}

.founder-frame::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 15px;
    border: 1px solid rgba(5, 11, 22, 0.12);
    pointer-events: none;
}

.founder-frame::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 26px;
    border: 1px solid rgba(30, 144, 255, 0.14);
    animation: guidePulse 3s ease-out infinite;
    pointer-events: none;
}

.founder-frame-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    background: var(--card-bg);
}

.founder-frame figcaption {
    padding-top: 12px;
    padding-bottom: 2px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #cbd5e1;
    text-transform: uppercase;
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.founder-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.founder-role {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 6px;
}

.founder-bio {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.founder-credentials {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.founder-credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.founder-credentials li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   V3.0 — FINAL CTA
   ========================================================================== */
.cta-panel {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: center;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 220px;
    background: radial-gradient(closest-side, rgba(99, 200, 255, 0.16), transparent);
    pointer-events: none;
}

.cta-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-sub {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   V3.0 — FOOTER GROUPS
   ========================================================================== */
.footer-groups {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-group-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-group .footer-link {
    font-size: 0.82rem;
    font-weight: 500;
}

/* ==========================================================================
    V3.1 — VERTICAL SUBPAGES (Dental / Real Estate / Ecommerce / Startups)
   ========================================================================== */

/* Compact hero for subpages */
.vertical-hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 70px);
    padding-bottom: 90px;
}

.vertical-hero .hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 22px;
    transition: color 0.3s ease;
}

.back-link i {
    width: 15px;
    height: 15px;
}

.back-link:hover {
    color: var(--accent-cyan);
}

/* Hero mini stats strip */
.vertical-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 6px;
}

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

.vertical-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.vertical-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Service cards grid on vertical pages */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 34px 30px;
    border-radius: 20px;
}

.service-emoji {
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(5, 11, 22, 0.02);
    border: 1px solid var(--border-color);
}

.service-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.service-link i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(3px);
}

/* Inline CTA card inside service grid */
.service-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 34px 30px;
    border-radius: 20px;
    border: 1px dashed rgba(30, 144, 255, 0.25);
    background: rgba(30, 144, 255, 0.02);
}

.service-cta-card .service-title {
    font-size: 1.05rem;
}

/* Vertical page two-col split (problem/outcome style) */
.vertical-pain {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .vertical-pain {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .vertical-stats {
        gap: 28px;
    }

    .vertical-stat-value {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   V3.0 — RESPONSIVE (Redesign)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-verticals {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .hero-vertical-tagline {
        min-height: auto;
    }

    .verticals-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .ladder {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 20px;
    }

    .ladder-arrow-icon {
        transform: rotate(90deg);
    }

    .founder-layout {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 44px 28px;
    }

    .founder-credentials {
        align-items: center;
    }

    .founder-credentials li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .proof-featured {
        padding: 36px 24px;
    }

    .proof-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-panel {
        padding: 56px 24px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .footer-groups {
        gap: 28px;
        justify-content: center;
        text-align: center;
    }

    .footer-group {
        align-items: center;
        flex: 1 1 40%;
    }
}

/* ==========================================================================
   V3.2 — UTILITY & SERVICE PAGES (About / Contact / Privacy / Services)
   ========================================================================== */

/* Readable prose panel for privacy & policy pages */
.policy-panel {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 56px;
    border-radius: 24px;
}

.policy-panel p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.policy-panel h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 40px 0 14px;
}

.policy-panel h2:first-child {
    margin-top: 0;
}

.policy-panel h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 26px 0 10px;
}

.policy-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.policy-panel ul li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.policy-panel ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(30, 144, 255, 0.4);
}

.policy-panel a {
    color: var(--accent-cyan);
}

.policy-panel .policy-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

/* Service page intro split */
.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 56px;
    border-radius: 24px;
}

.service-intro-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-intro-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-intro-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-intro-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-intro-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #cbd5e1;
}

.service-intro-points li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.service-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-intro-badge {
    font-size: 3.2rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .policy-panel {
        padding: 36px 24px;
    }

    .service-intro {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        text-align: center;
    }

    .service-intro-points {
        align-items: center;
    }
}

/* ==========================================================
   V3.3 REVIEWS / CLUTCH-STYLE CLIENT REVIEWS
   ========================================================== */
.reviews-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.reviews-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(99, 200, 255, 0.1);
    border: 1px solid rgba(99, 200, 255, 0.3);
}

.reviews-platform-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.reviews-platform-sep {
    color: var(--text-secondary);
}

.reviews-platform-rating {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.reviews-platform-rating b {
    color: var(--white);
}

.reviews-summary {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.reviews-summary .review-stars {
    margin-right: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 200, 255, 0.45);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.95rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.review-category {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border: 1px solid rgba(30, 144, 255, 0.25);
    border-radius: 999px;
    padding: 5px 12px;
    background: rgba(30, 144, 255, 0.06);
    white-space: nowrap;
}

.review-quote {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--text-primary);
    flex: 1;
}

.review-divider {
    height: 1px;
    background: rgba(5, 11, 22, 0.5);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, rgba(99, 200, 255, 0.35), rgba(62, 168, 255, 0.35));
    border: 1px solid rgba(99, 200, 255, 0.35);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--white);
}

.review-author-role {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 0.74rem;
    color: var(--text-secondary);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.review-verified {
    color: #22D27F;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    .reviews-head {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================
   V3.4 CLEAN SHOWCASE LANDING (hero trust + merged results)
   ========================================================== */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-trust b {
    color: var(--white);
    font-weight: 600;
}

.hero-trust-dot {
    color: rgba(30, 144, 255, 0.5);
}

.results-section .dashboard-container {
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .hero-trust {
        gap: 8px 12px;
    }
}

/* ==========================================================================
   V3.5 — SOLUTIONS SECTION (Three-solution landing cards)
   ========================================================================== */
.solution-card {
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.solution-card .solution-icon {
    background: rgba(5, 11, 22, 0.5);
}

.solution-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 22px;
}

.solution-price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}

.solution-price-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.solution-price-cta {
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(30, 144, 255, 0.25);
    background: rgba(30, 144, 255, 0.06);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.solution-price-cta:hover {
    background: rgba(30, 144, 255, 0.12);
    border-color: rgba(30, 144, 255, 0.5);
    box-shadow: 0 0 24px -6px rgba(30, 144, 255, 0.35);
}

.solutions-cta {
    margin-top: 44px;
    text-align: center;
}

.solutions-trust {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   V3.6 — SERVICES HUB (Solution split panels + Recommended tiers)
   ========================================================================== */
.solution-split {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 56px;
}

.solution-split:last-child {
    margin-bottom: 0;
}

.solution-split .pricing-tier {
    position: sticky;
    top: 90px;
}

@media (max-width: 900px) {
    .solution-split {
        grid-template-columns: 1fr;
    }
    .solution-split .pricing-tier {
        position: static;
    }
}

.rec-tiers {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.rec-tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
}

.rec-tier-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--white);
}

.rec-tier-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    white-space: nowrap;
}

.rec-tier-includes {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: right;
}

@media (max-width: 600px) {
    .rec-tier-row {
        flex-wrap: wrap;
    }
    .rec-tier-includes {
        flex-basis: 100%;
        text-align: left;
    }
}

.hub-note {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 6px;
}

/* ==========================================================================
   V3.7 — MARQUEE ROWS (Industries + Payment methods)
   ========================================================================== */
.marquee-section {
    padding: 30px 0 42px;
}

.marquee-section--payments {
    border-top: 1px solid rgba(5, 11, 22, 0.12);
    padding-top: 40px;
}

.marquee-section--payments .marquee-label {
    color: var(--accent-cyan);
}

.marquee-label {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
    will-change: transform;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: 56px;
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.marquee-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.marquee-item:hover {
    color: var(--white);
}

.marquee-item:hover .marquee-icon {
    border-color: rgba(30, 144, 255, 0.35);
    box-shadow: 0 0 20px -6px rgba(30, 144, 255, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

/* ==========================================================================
   V3.8 — PAYMENT LOGO CHIPS + THREE-LAYER VERTICAL PAGES
   ========================================================================== */
.marquee-icon--img {
    padding: 7px;
    background: rgba(5, 11, 22, 0.5);
    border-color: rgba(5, 11, 22, 0.12);
}

.marquee-icon--img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.marquee-item:hover .marquee-icon--img {
    border-color: rgba(30, 144, 255, 0.6);
    box-shadow: 0 0 20px -6px rgba(30, 144, 255, 0.45);
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-chip span {
    font-size: 1.1rem;
    line-height: 1;
}

.service-chip:hover {
    color: var(--white);
    border-color: rgba(30, 144, 255, 0.35);
    box-shadow: 0 0 20px -8px rgba(30, 144, 255, 0.4);
    transform: translateY(-2px);
}

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

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

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

.custom-card {
    padding: 28px 24px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    border: 1px solid var(--border-color);
}

.custom-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 20px;
    align-self: flex-start;
}

.custom-label--problem {
    background: rgba(255, 90, 107, 0.08);
    color: #fb7185;
    border: 1px solid rgba(255, 90, 107, 0.2);
}

.custom-label--solution {
    background: rgba(30, 144, 255, 0.08);
    color: var(--accent-cyan);
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.custom-problem-text {
    font-size: 0.95rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.55;
    margin: 0;
}

.custom-arrow {
    display: flex;
    align-items: center;
    color: var(--accent-purple);
}

.custom-arrow i {
    width: 16px;
    height: 16px;
}

.custom-solution-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--white);
    margin: 0;
    line-height: 1.35;
}

.custom-solution-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.layer-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

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

.cat-card {
    padding: 26px 24px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
}

.cat-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.5);
    font-size: 1.15rem;
}

.cat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--white);
}

.cat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cat-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cat-list li i {
    flex-shrink: 0;
    color: var(--accent-cyan);
    opacity: 0.8;
}

/* ==========================================================================
   V3.9 — INDUSTRY ICONS, REVIEWS BADGE, SOLUTION HIERARCHY
   ========================================================================== */

.vertical-emoji img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.results-section {
    position: relative;
}

.reviews-badge {
    position: absolute;
    top: 52px;
    right: 16px;
    z-index: 5;
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    filter: drop-shadow(0 12px 32px rgba(30, 144, 255, 0.28));
    animation: badge-float 5s ease-in-out infinite;
}

.badge-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.badge-ring-track {
    stroke: rgba(5, 11, 22, 0.09);
}

.badge-circle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.18);
    background: radial-gradient(circle at 30% 25%, rgba(30, 144, 255, 0.1), rgba(12, 10, 38, 0.92));
    backdrop-filter: blur(8px);
}

.badge-score {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.badge-stars {
    font-size: 0.62rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.badge-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

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

/* ===== Testimonials grid ===== */
.testimonials-section {
    position: relative;
}

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

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 22px 20px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(160deg, rgba(5, 11, 22, 0.035), rgba(5, 11, 22, 0.012));
    backdrop-filter: blur(12px);
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 144, 255, 0.35);
    box-shadow: 0 0 40px -14px rgba(30, 144, 255, 0.35);
}

.t-stars {
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.t-quote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    flex: 1;
}

.t-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.16), rgba(99, 200, 255, 0.16));
    border: 1px solid rgba(30, 144, 255, 0.25);
}

.t-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.t-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--white);
}

.t-company {
    font-size: 0.74rem;
    color: var(--text-secondary);
}

.t-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}

.t-outcome {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.03);
}

.t-outcome.font-cyan { color: var(--accent-cyan); border-color: rgba(30, 144, 255, 0.15); }
.t-outcome.font-purple { color: var(--accent-purple); border-color: rgba(62, 168, 255, 0.15); }
.t-outcome.font-indigo { color: var(--accent-indigo); border-color: rgba(99, 200, 255, 0.15); }

/* Testimonials responsive */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonials-more {
    text-align: center;
    margin-top: 32px;
}

.testimonials-more a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-cyan);
    transition: opacity 0.3s ease;
}

.testimonials-more a:hover {
    opacity: 0.75;
}


/* ===== Solution hierarchy tree ===== */
.hierarchy-section {
    position: relative;
    overflow: hidden;
}

.hierarchy-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(99, 200, 255, 0.12), transparent);
    pointer-events: none;
}

.hierarchy-tree {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 16px;
}

.tree-trunk {
    display: block;
    width: 2px;
    height: 44px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-purple));
    opacity: 0.6;
    transform-origin: top;
}

.tree-crossbar {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple), var(--accent-indigo));
    opacity: 0.55;
    transform-origin: left;
}

.hierarchy-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-top: 24px;
}

.hierarchy-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tree-stub {
    display: block;
    width: 2px;
    height: 22px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(5, 11, 22, 0.5));
    opacity: 0.5;
    transform-origin: top;
}

.hierarchy-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    padding: 28px 20px 22px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(160deg, rgba(5, 11, 22, 0.035), rgba(5, 11, 22, 0.012));
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hierarchy-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.hierarchy-card.tier-cyan {
    border-color: rgba(30, 144, 255, 0.2);
}

.hierarchy-card.tier-cyan:hover {
    border-color: rgba(30, 144, 255, 0.55);
    box-shadow: 0 0 40px -14px rgba(30, 144, 255, 0.5);
}

.hierarchy-card.tier-indigo {
    border-color: rgba(99, 200, 255, 0.2);
}

.hierarchy-card.tier-indigo:hover {
    border-color: rgba(99, 200, 255, 0.55);
    box-shadow: 0 0 40px -14px rgba(99, 200, 255, 0.5);
}

.hierarchy-card.tier-purple {
    border-color: rgba(62, 168, 255, 0.2);
}

.hierarchy-card.tier-purple:hover {
    border-color: rgba(62, 168, 255, 0.55);
    box-shadow: 0 0 40px -14px rgba(62, 168, 255, 0.5);
}

.hierarchy-card-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: rgba(5, 11, 22, 0.03);
    border-radius: 9px;
    padding: 6px 8px;
    line-height: 1;
}

.hierarchy-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-cyan);
}

.tier-cyan .hierarchy-card-icon { color: var(--accent-cyan); }
.tier-indigo .hierarchy-card-icon { color: var(--accent-indigo); }
.tier-purple .hierarchy-card-icon { color: var(--accent-purple); }

.hierarchy-card-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

.hierarchy-card-tag {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hierarchy-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}

.tier-indigo .hierarchy-card-link { color: var(--accent-indigo); }
.tier-purple .hierarchy-card-link { color: var(--accent-purple); }

.hierarchy-card-link .icon-small {
    transition: transform 0.3s ease;
}

.hierarchy-card:hover .hierarchy-card-link .icon-small {
    transform: translateX(3px);
}

.hierarchy-foot {
    text-align: center;
    margin-top: 26px;
}

.hierarchy-note {
    font-size: 0.86rem;
    color: var(--text-secondary);
}

.hierarchy-cta {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed rgba(30, 144, 255, 0.5);
    transition: color 0.3s ease;
}

.hierarchy-cta:hover {
    color: var(--white);
}

/* Hierarchy responsive */
@media (max-width: 860px) {
    .hierarchy-cols {
        gap: 14px;
        padding-top: 18px;
    }
}

@media (max-width: 768px) {
    .tree-trunk { height: 36px; }
    .hierarchy-cols {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .tree-crossbar {
        width: 2px;
        height: 34px;
        margin: 0 auto;
        background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-indigo));
    }
    .tree-stub {
        height: 16px;
    }
}

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

@media (max-width: 680px) {
    .compare-table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .reviews-badge {
        position: static;
        margin: 0 auto 20px;
        width: 112px;
        height: 112px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .compare-table {
        grid-template-columns: 1fr;
    }
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   V5.0 — REFERENCE DESIGN: NAV, HERO, SERVICES, APPROACH, RESULTS, FOOTER
   ========================================================================== */

/* --- NAV BAR --- */
.hero-logo-img { height: 120px; width: auto; object-fit: contain; display: block; }
.navbar-container { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; }
.navbar { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; height: 92px; padding: 0 24px; overflow: visible; background: rgba(5, 11, 22, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; box-shadow: 0 20px 40px -15px rgba(5, 11, 22, 0.25); margin-top: 8px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #FFFFFF; }
.nav-logo-img { height: 155px; width: auto; object-fit: contain; }
.nav-brand-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 800; line-height: 1.15; letter-spacing: 0.06em; color: #FFFFFF; }
.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 0.88rem; font-weight: 500; color: #A1AEC4; text-decoration: none; transition: color 0.3s ease; }
.nav-link:hover { color: #FFFFFF; }
.nav-book-call { font-size: 0.85rem; padding: 10px 22px; border-radius: 10px; }
.nav-book-call .icon-small { width: 14px; height: 14px; }
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; width: 36px; height: 34px; padding: 0; background: rgba(5, 11, 22, 0.65); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); cursor: pointer; align-items: center; justify-content: center; transition: all 0.25s ease; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-book-call { display: none !important; }
    .navbar { height: 80px; padding: 0 12px; overflow: visible; justify-content: space-between; max-width: none; margin: 0; background: rgba(5, 11, 22, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; box-shadow: 0 20px 40px -15px rgba(5, 11, 22, 0.25); }
    .hamburger { background: rgba(5, 11, 22, 0.65); border: 1px solid rgba(255,255,255,0.08); }
    .nav-logo-img { height: 140px; }
    .navbar-container { padding: 0 20px; }
    .sidebar { width: 260px; }
    .page-container { margin-left: 0; }
}
@media (max-width: 480px) {
    .nav-logo-img { height: 125px; }
    .navbar { height: 74px; padding: 0 10px; overflow: visible; }
    .navbar-container { padding: 0 14px; left: 0; }
    .sidebar { width: 200px; }
    .nav-links { gap: 20px; }
}

/* --- HERO TWO-COLUMN --- */
.hero-section { min-height: 100vh; display: flex; align-items: center; padding-top: clamp(160px, 22vw, 190px); }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 40px; }
.hero-left { z-index: 10; }
.hero-right { position: relative; min-height: 460px; }
.hero-headline { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 24px; line-height: 1.1; }
.hero-subtext { font-size: 1rem; color: #A1AEC4; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; }
.hero-actions .btn-secondary { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.03); color: #FFFFFF; }
.hero-actions .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }

.hero-visual { position: relative; width: 100%; height: 440px; display: flex; align-items: center; justify-content: center; }
.hero-rings-wrap { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 430px; height: 430px; display: flex; align-items: center; justify-content: center; z-index: 1; perspective: 1100px; --comet-r: 215px; }
.hero-rings-img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.2)) drop-shadow(0 0 45px rgba(62, 168, 255, 0.35)) drop-shadow(0 0 90px rgba(99, 200, 255, 0.2)); }
/* --- 3D ORBIT DRAWING (blue arc sweeps around the rings; trail removed behind) --- */
.hero-orbit3d { position: absolute; top: 50%; left: 50%; width: 0; height: 0; z-index: 3; animation: cometSpin 9s linear infinite; }
.hero-comet { position: absolute; top: calc(-1 * var(--comet-r)); left: calc(-1 * var(--comet-r)); width: calc(2 * var(--comet-r)); height: calc(2 * var(--comet-r)); border-radius: 50%; background: conic-gradient(rgba(62,168,255,0) 0deg, rgba(62,168,255,0) 295deg, rgba(62,168,255,0.45) 320deg, rgba(62,168,255,0.8) 340deg, #3EA8FF 358deg, #FFFFFF 360deg); -webkit-mask: radial-gradient(circle closest-side, transparent 0, transparent calc(100% - 4px), #000 calc(100% - 3px), #000 100%); mask: radial-gradient(circle closest-side, transparent 0, transparent calc(100% - 4px), #000 calc(100% - 3px), #000 100%); filter: drop-shadow(0 0 6px rgba(62,168,255,0.9)) drop-shadow(0 0 14px rgba(62,168,255,0.5)); }
@keyframes cometSpin {
    from { transform: rotateX(72deg) rotateZ(0deg); }
    to { transform: rotateX(72deg) rotateZ(360deg); }
}
/* --- 3 LAYER SOLUTIONS HIERARCHY (one line expanding into 3) --- */
.hierarchy-title { display: block; text-align: center; margin: 4px auto 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-indigo) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; filter: drop-shadow(0 0 10px rgba(62,168,255,0.25)); }
.solutions-hierarchy { display: flex; flex-direction: column; align-items: center; width: 100%; margin-top: 4px; }
.hierarchy-trunk { width: 2px; height: 40px; background: linear-gradient(180deg, rgba(62,168,255,0.4), #3EA8FF); box-shadow: 0 0 6px rgba(62,168,255,0.5); }
.hierarchy-bar { width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(62,168,255,0.2) 10%, #3EA8FF 50%, rgba(62,168,255,0.2) 90%, transparent); box-shadow: 0 0 6px rgba(62,168,255,0.5); }
.hierarchy-nodes { display: flex; justify-content: space-between; width: 100%; }
.hierarchy-item { flex: 1; display: flex; flex-direction: column; align-items: center; }
.hierarchy-stub { width: 2px; height: 26px; background: linear-gradient(180deg, #3EA8FF, rgba(62,168,255,0.5)); }
.hierarchy-node { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(5, 11, 22, 0.6); border: 1px solid rgba(62, 168, 255, 0.18); border-radius: 50px; color: #FFFFFF; font-size: 0.78rem; font-weight: 600; text-decoration: none; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: 0 0 12px rgba(62,168,255,0.1); transition: all 0.25s ease; white-space: nowrap; }
.hierarchy-node .icon-tiny { width: 13px; height: 13px; color: #3EA8FF; filter: drop-shadow(0 0 4px rgba(62,168,255,0.7)) drop-shadow(0 0 8px rgba(99,200,255,0.5)); }
.hierarchy-layer { font-size: 0.58rem; color: #63C8FF; text-transform: uppercase; letter-spacing: 0.5px; }
.hierarchy-node:hover { color: #4AF54A; border-color: rgba(62,196,13,0.45); box-shadow: 0 0 18px rgba(62,196,13,0.4); transform: translateY(-2px); }
.hierarchy-node:hover .icon-tiny { color: #4AF54A; }
.hero-stat-card { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 14px 18px; background: rgba(16, 27, 48, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(30, 144, 255, 0.15); border-radius: 12px; min-width: 140px; z-index: 4; box-shadow: 0 0 20px rgba(30, 144, 255, 0.08); }
.hero-stats-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 0; width: 100%; grid-column: 1 / -1; }
.stat-label { font-size: 0.72rem; color: #3EA8FF; display: flex; align-items: center; gap: 5px; text-shadow: 0 0 8px rgba(62,168,255,0.7), 0 0 16px rgba(99,200,255,0.5), 0 0 28px rgba(62,168,255,0.35); }
.stat-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 800; color: #3EC70B; display: flex; align-items: center; gap: 6px; }
.stat-sub { font-size: 0.68rem; color: #A1AEC4; }
.stat-status { font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.stat-status { color: #22D27F; }
.stat-stars { display: flex; gap: 2px; align-items: center; }
.stat-stars .icon-star { width: 14px; height: 14px; }
.stat-stars svg { fill: #FFC857; stroke: #FFC857; filter: drop-shadow(0 0 4px rgba(255, 200, 87, 0.5)); }
.icon-tiny { width: 12px; height: 12px; }
.founder-cta { margin-top: 24px; }
.founder-link { display: inline-flex; align-items: center; gap: 8px; color: #3EA8FF; font-weight: 600; text-decoration: none; background: rgba(16, 27, 48, 0.6); border: 1px solid rgba(30, 144, 255, 0.2); border-radius: 50px; padding: 10px 18px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: all 0.25s ease; }
.founder-link:hover { color: #FFFFFF; border-color: rgba(62, 168, 255, 0.45); box-shadow: 0 0 16px rgba(62, 168, 255, 0.25); }

.stat-revenue { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }
.stat-crm { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }
.stat-ai { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }
.stat-tasks { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }
.stat-leads { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }
.stat-uptime { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }

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

@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
    .hero-left { order: 1; }
    .hero-right { order: 2; min-height: 0; display: flex; flex-direction: column; align-items: center; }
    .hero-subtext { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: 2; height: auto; min-height: 260px; }
    .hero-rings-wrap { position: relative; top: auto; left: auto; bottom: auto; transform: none; width: 300px; height: 300px; margin: 0 auto; --comet-r: 150px; }
    .hierarchy-title { order: 1; margin: 4px auto 18px; font-size: 1.05rem; }
    .solutions-hierarchy { order: 3; position: static; top: auto; left: auto; transform: none; flex-direction: row; align-items: center; width: 92%; margin: 6px auto 0; z-index: auto; }
    .hierarchy-trunk { width: 42px; height: 3px; background: linear-gradient(90deg, rgba(62,168,255,0.4), #3EA8FF); box-shadow: 0 0 8px rgba(62,168,255,0.7); }
    .hierarchy-bar { width: 3px; height: 150px; background: linear-gradient(180deg, transparent, rgba(62,168,255,0.35) 10%, #3EA8FF 50%, rgba(62,168,255,0.35) 90%, transparent); box-shadow: 0 0 8px rgba(62,168,255,0.6); }
    .hierarchy-nodes { flex-direction: column; justify-content: space-between; height: 150px; flex: 1; }
    .hierarchy-item { flex-direction: row; justify-content: flex-start; }
    .hierarchy-stub { width: 28px; height: 3px; background: linear-gradient(90deg, #3EA8FF, rgba(62,168,255,0.6)); box-shadow: 0 0 6px rgba(62,168,255,0.6); }
    .hierarchy-node { font-size: 0.7rem; padding: 6px 12px; background: rgba(5, 11, 22, 0.85); }
    .hero-stats-row { order: 4; gap: 12px; }
    .hero-stat-card { min-width: 120px; padding: 10px 14px; }
    .stat-value { font-size: 1rem; }
    .navbar { height: 80px; padding: 0 12px; overflow: visible; max-width: none; margin: 0; background: rgba(5, 11, 22, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; box-shadow: 0 20px 40px -15px rgba(5, 11, 22, 0.25); }
    .nav-logo-img { height: 140px; }
    .hero-section { padding-top: 165px; }
}
@media (max-width: 600px) {
    .hero-layout { padding: 0 20px; }
    .hero-rings-wrap { width: 230px; height: 230px; --comet-r: 115px; }
    .hierarchy-bar { height: 130px; }
    .hierarchy-nodes { height: 130px; }
    .hero-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-stat-card { min-width: 0; width: 100%; padding: 10px 12px; text-align: left; }
    .stat-stars { justify-content: flex-start; }
}
@media (max-width: 480px) {
    .hero-rings-wrap { width: 200px; height: 200px; --comet-r: 100px; }
    .hierarchy-bar { height: 110px; }
    .hierarchy-nodes { height: 110px; }
    .hierarchy-node { font-size: 0.62rem; padding: 5px 10px; }
    .hero-stat-card { padding: 8px 10px; }
    .stat-label { font-size: 0.68rem; }
    .stat-value { font-size: 0.95rem; }
    .stat-sub { font-size: 0.62rem; }
    .nav-logo-img { height: 125px; }
    .hero-section { padding-top: 150px; }
}

/* --- TRUSTED BY / INDUSTRIES MARQUEE --- */
.trusted-section { padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.trusted-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #A1AEC4; text-align: center; margin-bottom: 24px; }
.trusted-marquee { display: flex; overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.trusted-row { display: flex; align-items: center; gap: 120px; flex-shrink: 0; min-width: 100%; animation: marqueeScroll 22s linear infinite; }
.trusted-marquee:hover .trusted-row { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.trusted-logo { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; white-space: nowrap; transition: color 0.3s ease; }
.trusted-logo:hover { color: #3EA8FF; }
.trusted-logo .icon-small { width: 18px; height: 18px; opacity: 0.5; }
.trusted-logo-icon { width: 36px; height: 36px; object-fit: contain; transition: transform 0.3s ease; }
.trusted-logo:hover .trusted-logo-icon { transform: scale(1.15); }

@media (max-width: 600px) {
    .trusted-row { gap: 40px; }
    .trusted-logo { font-size: 0.82rem; }
    .trusted-logo-icon { width: 28px; height: 28px; }
}

/* --- SERVICES GRID --- */
.services-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-title-bar { width: 50px; height: 3px; background: #1E90FF; margin: 16px auto 0; border-radius: 2px; }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 48px; }
.service-card { padding: 28px 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); background: rgba(16, 27, 48, 0.4); transition: border-color 0.3s, transform 0.3s; display: flex; flex-direction: column; gap: 14px; position: relative; }
.service-card:hover { border-color: rgba(30, 144, 255, 0.3); transform: translateY(-4px); }
.service-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(30, 144, 255, 0.08); border: 1px solid rgba(30, 144, 255, 0.15); color: #1E90FF; }
.service-icon i, .service-icon svg { width: 22px; height: 22px; }
.service-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: #FFFFFF; }
.service-desc { font-size: 0.85rem; color: #A1AEC4; line-height: 1.6; flex: 1; }
.service-link { position: absolute; bottom: 20px; left: 24px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.04); color: #A1AEC4; text-decoration: none; transition: background 0.3s, color 0.3s; }
.service-link:hover { background: rgba(30, 144, 255, 0.1); color: #1E90FF; }

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-section { padding: 60px 20px; }
}

/* --- APPROACH --- */
.approach-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.approach-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.approach-left .section-label { margin-bottom: 12px; }
.approach-left .section-title { margin-bottom: 20px; }
.approach-desc { font-size: 0.95rem; color: #A1AEC4; line-height: 1.7; margin-bottom: 32px; max-width: 420px; }
.approach-steps { display: flex; gap: 20px; align-items: flex-start; }
.approach-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; gap: 12px; position: relative; }
.approach-step:not(:last-child)::after { content: ''; position: absolute; top: 28px; left: calc(50% + 32px); width: calc(100% - 64px); height: 2px; background: linear-gradient(90deg, #1E90FF, rgba(30, 144, 255, 0.2)); z-index: 0; }
.approach-step-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(30, 144, 255, 0.1); border: 2px solid rgba(30, 144, 255, 0.3); color: #1E90FF; position: relative; z-index: 1; }
.approach-step-icon i, .approach-step-icon svg { width: 24px; height: 24px; }
.approach-step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; font-weight: 700; color: #FFFFFF; }
.approach-step-desc { font-size: 0.75rem; color: #A1AEC4; line-height: 1.5; max-width: 120px; }

@media (max-width: 900px) {
    .approach-layout { grid-template-columns: 1fr; text-align: center; }
    .approach-desc { margin-left: auto; margin-right: auto; }
    .approach-steps { flex-wrap: wrap; justify-content: center; }
    .approach-step { min-width: 120px; }
    .approach-step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
    .approach-section { padding: 60px 20px; }
}

/* --- RESULTS / CASE STUDIES --- */
.results-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.results-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.results-view-all { font-size: 0.88rem; font-weight: 600; color: #1E90FF; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: opacity 0.3s; }
.results-view-all:hover { opacity: 0.75; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { padding: 28px 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); background: rgba(16, 27, 48, 0.4); display: flex; flex-direction: column; gap: 16px; transition: border-color 0.3s, transform 0.3s; }
.result-card:hover { border-color: rgba(30, 144, 255, 0.3); transform: translateY(-4px); }
.result-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.result-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 800; color: #FFFFFF; line-height: 1.3; }
.result-desc { font-size: 0.85rem; color: #A1AEC4; line-height: 1.6; flex: 1; }
.result-metrics { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.result-metric { display: flex; flex-direction: column; gap: 4px; }
.result-metric-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: #FFFFFF; }
.result-metric-label { font-size: 0.72rem; color: #A1AEC4; }

@media (max-width: 900px) {
    .results-grid { grid-template-columns: 1fr; }
    .results-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 560px) {
    .results-section { padding: 60px 20px; }
}

/* --- PROBLEMS WE SOLVE --- */
.problems-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.problems-section .section-subtitle { max-width: 640px; margin-left: auto; margin-right: auto; }

/* --- INDUSTRIES WE SERVE --- */
.industries-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.industries-section .section-subtitle { max-width: 640px; margin-left: auto; margin-right: auto; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.industry-card { padding: 34px 26px; border-radius: 18px; display: flex; flex-direction: column; gap: 16px; position: relative; text-decoration: none; transition: border-color 0.3s, transform 0.3s; }
.industry-card:hover { border-color: rgba(30, 144, 255, 0.3); transform: translateY(-4px); }
.industry-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(30, 144, 255, 0.08); border: 1px solid rgba(30, 144, 255, 0.15); color: #1E90FF; }
.industry-icon i, .industry-icon svg { width: 22px; height: 22px; }
.industry-icon .industry-icon-img { width: 30px; height: 30px; object-fit: contain; }
.industry-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: #FFFFFF; }
.industry-desc { font-size: 0.85rem; color: #A1AEC4; line-height: 1.6; flex: 1; }
.industry-link { font-size: 0.8rem; font-weight: 600; color: #1E90FF; display: flex; align-items: center; gap: 6px; }
.industry-card:hover .industry-link { color: #3EA8FF; }

/* --- WHY CHOOSE US --- */
.why-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.why-section .section-subtitle { max-width: 640px; margin-left: auto; margin-right: auto; }
.why-grid { margin-top: 8px; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: #D7E3F4; padding: 10px 18px; border-radius: 30px; border: 1px solid rgba(30, 144, 255, 0.18); background: rgba(30, 144, 255, 0.06); }
.trust-badge i, .trust-badge svg { width: 15px; height: 15px; color: #3EA8FF; }

/* --- FAQ --- */
.faq-section { padding: 100px 28px; }
.faq-section .section-subtitle { max-width: 640px; margin-left: auto; margin-right: auto; }
.faq-cta-text a { color: #3EA8FF; font-weight: 600; text-decoration: none; }

@media (max-width: 900px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .problems-section, .industries-section, .why-section, .faq-section { padding: 60px 20px; }
    .industries-grid { grid-template-columns: 1fr; }
}

/* --- FOOTER V2 --- */
.footer-container { background: rgba(5, 11, 22, 0.95); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 40px 0; }
.footer-wrap { max-width: 1200px; margin: 0 auto; display: flex; gap: 48px; padding-bottom: 40px; }
.footer-logo-side { flex: 0 0 240px; display: flex; flex-direction: column; gap: 14px; }
.footer-logo-img { height: 160px; width: auto; object-fit: contain; }
.footer-logo-icon { width: 40px; height: 40px; filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.3)); }
.footer-logo-icon .diamond { fill: none; stroke-width: 1.2; }
.footer-brand-text { display: flex; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800; color: #FFFFFF; letter-spacing: 0.06em; }
.footer-copy { font-size: 0.82rem; color: #A1AEC4; line-height: 1.6; }
.footer-connect-socials { display: flex; gap: 10px; }
.footer-social-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); color: #A1AEC4; text-decoration: none; }
.footer-social-icon i, .footer-social-icon svg { width: 16px; height: 16px; }
.sidebar-social { display: flex; gap: 10px; justify-content: center; padding: 12px 0 16px; }
.sidebar-social-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); color: #A1AEC4; text-decoration: none; }
.sidebar-social-icon i, .sidebar-social-icon svg, .sidebar-social-icon img { width: 16px; height: 16px; }
.social-img { width: 18px; height: 18px; object-fit: contain; }
.footer-social-icon .social-img { width: 16px; height: 16px; }
.footer-groups { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-group { display: flex; flex-direction: column; gap: 10px; }
.footer-group-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #FFFFFF; margin-bottom: 4px; }
.footer-group .footer-link { font-size: 0.82rem; color: #A1AEC4; text-decoration: none; transition: color 0.3s; }
.footer-group .footer-link:hover { color: #1E90FF; }
.footer-cta-group { display: flex; flex-direction: column; gap: 14px; }
.footer-cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800; color: #FFFFFF; line-height: 1.3; }
.footer-cta-desc { font-size: 0.82rem; color: #A1AEC4; line-height: 1.6; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 24px 40px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(10, 18, 38, 0.9); }
.footer-bottom .footer-payments { grid-column: auto; margin-top: 0; padding: 0; border-top: none; }
.footer-bottom-meta { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-copyright { font-size: 0.78rem; color: #A1AEC4; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.78rem; color: #A1AEC4; text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #1E90FF; }

/* --- FOOTER PAYMENTS MARQUEE --- */
.footer-payments-marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.footer-payments-track { display: flex; width: max-content; animation: paymentsScroll 26s linear infinite; }
.footer-payments-set { display: flex; align-items: center; gap: 20px; padding-right: 20px; }
@keyframes paymentsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.footer-payments-marquee:hover .footer-payments-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .footer-payments-track { animation: none; } }

@media (max-width: 900px) {
    .footer-wrap { flex-direction: column; gap: 32px; }
    .footer-logo-side { flex: none; }
    .footer-logo-img { height: 120px; }
    .footer-groups { grid-template-columns: repeat(2, 1fr); }
    .footer-container { padding: 40px 20px 0; }
}
@media (max-width: 560px) {
    .footer-groups { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-meta { flex-direction: column; gap: 10px; }
    .footer-bottom-links { gap: 16px; }
}

/* --- MISSING CLASSES --- */
.cyber-theme { background: #050B16; color: #FFFFFF; }
.page-container { min-height: 100vh; }
.approach-right { display: flex; flex-direction: column; }
.cta-section { padding: 100px 40px; }
.cta-panel { max-width: 800px; margin: 0 auto; text-align: center; padding: 60px 48px; border-radius: 24px; }
.cta-headline { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #FFFFFF; margin-bottom: 20px; }
.cta-sub { font-size: 1rem; color: #A1AEC4; line-height: 1.7; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-trust { font-size: 0.78rem; color: #A1AEC4; }

@media (max-width: 560px) {
    .cta-section { padding: 60px 20px; }
    .cta-panel { padding: 36px 24px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
}

/* ==========================================================================
   V5.1 — MOBILE RESPONSIVE POLISH
   ========================================================================== */

@media (max-width: 768px) {
    .services-section, .approach-section, .results-section {
        padding: 60px 20px;
    }
    .section-header { margin-bottom: 32px; }
    .service-card { padding: 22px 18px; gap: 12px; }
    .service-link { bottom: 16px; left: 18px; }
    .result-card { padding: 22px 18px; gap: 14px; }
    .result-metrics { gap: 18px; }
    .result-metric-value { font-size: 1.2rem; }
    .trusted-row { gap: 32px; }
    .trusted-logo { font-size: 0.8rem; }
    .approach-steps { gap: 14px; }
    .approach-step { min-width: 96px; }
    .footer-groups { gap: 24px; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .hero-subtext { font-size: 0.92rem; }
    .services-grid { gap: 14px; }
    .approach-step-icon { width: 48px; height: 48px; }
    .approach-step-title { font-size: 0.8rem; }
    .approach-step-desc { font-size: 0.7rem; max-width: 90px; }
    .footer-wrap { gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-headline { font-size: 1.7rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-stat-card {
        animation: none !important;
    }
}

/* --- TESTIMONIALS --- */
.testimonials-section { padding: 72px 40px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.testimonial-grid.top3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.testimonial-card { padding: 26px 24px; border-radius: 16px; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 15px; height: 15px; fill: #FFC857; stroke: #FFC857; }
.testimonial-text { font-size: 0.95rem; color: #C9D3E3; line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-name { font-weight: 600; color: #FFFFFF; }
.testimonial-role { font-size: 0.78rem; color: #72829D; }

