/* 
   Techlyst Consulting - Revamped Style Sheet
   Author: Antigravity
   Aesthetic: Deep Dark Mode, Vibrant Accents, Glassmorphism, Micro-animations
*/

/* -------------------------------------------------------------
   1. Root variables & Design Tokens
   ------------------------------------------------------------- */
:root {
    --bg-base: #f8fafc;        /* Slate 50 (Very light cool gray-blue background) */
    --bg-surface: #ffffff;     /* Pure White for section blocks */
    --bg-card: #ffffff;        /* Pure White for cards */
    --bg-card-hover: #f1f5f9;  /* Slate 100 on hover */
    --border-color: rgba(15, 23, 42, 0.08); /* Clean dark-grey border with low opacity */
    --border-color-hover: rgba(37, 99, 235, 0.25); /* Primary royal blue hover border */
    
    --color-text: #0f172a;       /* Slate 900 (Dark Slate for body text) */
    --color-text-muted: #334155; /* Slate 700 (High contrast muted text) */
    --color-text-dark: #64748b;  /* Slate 500 */
    
    /* Brand Colors */
    --primary: #2563eb;        /* Royal Blue */
    --primary-hover: #1d4ed8;  /* Royal Blue Dark */
    --cyan: #0284c7;           /* Sky Blue Dark (for readability on white) */
    --cyan-hover: #0369a1;
    --accent: #4f46e5;         /* Indigo Accent */
    --accent-hover: #4338ca;
    --danger: #ef4444;
    
    /* Gradients */
    --gradient-text: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); /* Deep Royal Gradient */
    --gradient-accent: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    --gradient-glow: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(2, 132, 199, 0.02) 60%, rgba(0,0,0,0) 100%);
    
    /* Layout & Styling details */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.12);
    --shadow-glow-cyan: 0 0 20px rgba(2, 132, 199, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------
   2. Reset & Global Styles
   ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Scroll Progress Bar at very top of screen */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    background: var(--gradient-text);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Repeating futuristic grid backdrop */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Dynamic Spotlight Hover Glow tracking cursor position */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(37, 99, 235, 0.03) 0%, rgba(2, 132, 199, 0.01) 50%, transparent 80%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: normal;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    color: inherit;
    outline: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* -------------------------------------------------------------
   3. Typography & Utility Classes
   ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

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

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

.bg-alt { background-color: var(--bg-surface); }

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.75rem;
    margin-top: 12px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-gradient {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.9rem;
}

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

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}
.btn-accent:hover {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text);
    transform: translateY(-2px);
}

.btn-full-width {
    width: 100%;
}

/* -------------------------------------------------------------
   4. Header & Sticky Nav
   ------------------------------------------------------------- */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-nav.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.logo-subtext {
    font-weight: 400;
    color: var(--color-text-muted);
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: var(--transition);
}

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

.pulse-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: var(--shadow-glow-cyan);
    animation: pulseGlow 1.8s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 rgba(6, 182, 212, 0.4); }
    100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px rgba(6, 182, 212, 0.9); }
}

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

.nav-ctas .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-ctas .btn-secondary {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    box-shadow: none;
    transition: var(--transition);
}

.nav-ctas .btn-secondary:hover {
    background: #e2e8f0;
    border-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-1px);
}

.nav-ctas .btn-accent {
    background: var(--gradient-accent);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
}

.nav-ctas .btn-accent:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.mobile-menu-ctas {
    display: none;
    margin-top: 32px;
    width: 100%;
}

.mobile-menu-ctas .btn {
    width: 100%;
}

/* -------------------------------------------------------------
   5. Hero Section
   ------------------------------------------------------------- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: -100px;
    right: 5%;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--cyan);
    bottom: 50px;
    left: 5%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-headline {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 38px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.trust-badge i {
    font-size: 1.15rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    padding: 12px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-md) - 4px);
    display: block;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.floating-badge i {
    font-size: 1.5rem;
}

.badge-1 {
    top: 25px;
    left: -35px;
    animation: floatAnim 6s ease-in-out infinite alternate;
}

.badge-2 {
    bottom: 35px;
    right: -25px;
    animation: floatAnim 6s ease-in-out infinite alternate-reverse;
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}

.badge-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@keyframes floatAnim {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

/* -------------------------------------------------------------
   6. Concept Section: "Beyond The Chat"
   ------------------------------------------------------------- */
.concept-narrative-box {
    padding: 48px;
    margin-bottom: 56px;
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.narrative-quote-icon {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 6rem;
    color: rgba(15, 23, 42, 0.02);
    font-weight: 900;
    line-height: 1;
}

.narrative-text {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000000 !important;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.narrative-text:last-of-type {
    margin-bottom: 0;
}

.concept-grid .concept-card {
    padding: 40px 32px;
    height: 100%;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.color-blue {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary);
}

.color-cyan {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--cyan);
}

.color-accent {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--accent);
}

.concept-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.concept-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   7. Services Section
   ------------------------------------------------------------- */
.services-grid {
    grid-template-columns: repeat(2, 1fr);
}

.service-card {
    display: flex;
    gap: 28px;
    padding: 40px;
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--cyan);
    flex-shrink: 0;
    line-height: 1;
    text-shadow: var(--shadow-glow-cyan);
}

.service-content h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.service-card:hover .service-icon {
    color: var(--primary);
    transform: scale(1.1);
    transition: var(--transition);
}

/* -------------------------------------------------------------
   8. AI Pulse Callout Banner
   ------------------------------------------------------------- */
.callout-banner {
    padding: 56px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(59, 130, 246, 0.3);
}

.banner-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(59, 130, 246, 0.02) 60%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.banner-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pulse-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}

.active-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: blinker 1.5s infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; }
}

.banner-text-side h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.banner-text-side p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.banner-cta-side {
    display: flex;
    justify-content: flex-end;
}

/* -------------------------------------------------------------
   9. Pricing & Booking
   ------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 28px;
    height: 100%;
    position: relative;
    text-align: left;
}

.popular-card {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(139, 92, 246, 0.05);
}

.popular-card::before {
    content: 'MOST CHOSEN';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 800;
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
    z-index: 10;
}

.pricing-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.pricing-badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.pricing-option-title {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 4px;
}

.price-block {
    display: flex;
    align-items: baseline;
    margin-bottom: 0px;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.price-duration {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.pricing-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-features {
    margin-bottom: 24px;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.pricing-features li i {
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Calendly Box Dynamic Container */
.calendly-wrapper {
    padding: 32px;
    border-radius: var(--radius-md);
    margin-top: 40px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color-hover);
}

.calendly-wrapper.hidden {
    display: none;
}

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

.selected-booking-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.close-calendly {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.close-calendly:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.2);
}

.calendly-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 16px;
    color: var(--color-text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.05);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.calendly-inline-widget {
    min-width: 320px;
    height: 650px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* -------------------------------------------------------------
   10. About Us
   ------------------------------------------------------------- */
.about-grid {
    align-items: center;
    gap: 60px;
}

.about-content-side .section-title {
    line-height: 1.15;
}

.about-text-body p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.about-text-body p strong {
    color: var(--color-text);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    border-left: 2px solid var(--cyan);
    padding-left: 20px;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.about-visual-side {
    display: flex;
    justify-content: center;
}

.map-visual-card {
    padding: 12px;
    position: relative;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
}

.about-visual-img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-md) - 4px);
}

.map-overlay-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface);
    border: 1px solid var(--border-color-hover);
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.9rem;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* -------------------------------------------------------------
   11. FAQs Accordion
   ------------------------------------------------------------- */
.faqs-accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-btn:hover {
    background: rgba(15, 23, 42, 0.02);
}

.faq-icon {
    font-size: 1rem;
    color: var(--cyan);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(15, 23, 42, 0.02);
}

.faq-answer-pane p {
    padding: 0 30px 24px 30px;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.faq-item.open .faq-answer-pane {
    max-height: 200px; /* High enough to contain the paragraph */
}

/* -------------------------------------------------------------
   12. Contact Form & Inquiry
   ------------------------------------------------------------- */
.contact-grid {
    gap: 48px;
}

.contact-info-side {
    padding-right: 20px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    margin-top: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method-item .icon-box {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--cyan);
}

.method-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.method-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

a.method-value:hover {
    color: var(--cyan);
}

.contact-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
}

.contact-notice i {
    font-size: 1.15rem;
    margin-top: 3px;
}

.contact-notice p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

.form-title {
    font-size: 1.45rem;
    color: var(--color-text);
    margin-bottom: 28px;
}

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

.form-row {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.required {
    color: var(--danger);
    margin-left: 2px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: #ffffff;
}

/* Contact form state transitions */
.form-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--cyan);
    margin-bottom: 20px;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success-message h4 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 320px;
}

.hidden {
    display: none !important;
}

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

/* -------------------------------------------------------------
   13. Footer
   ------------------------------------------------------------- */
.footer {
    background-color: #f1f5f9;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand-side .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 360px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

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

.footer-links-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 30px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-dark);
}

.privacy-note {
    font-style: italic;
}

/* Mobile Menu Backdrop Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* -------------------------------------------------------------
   14. Responsive Layout Styles
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.2rem;
    }
    .hero-container {
        gap: 32px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.25rem !important;
    }
    .logo-img {
        height: 36px !important;
    }
    .nav-container {
        padding: 12px 16px;
    }
    .section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.25rem;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .grid-span-2 {
        grid-column: span 1;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 14px;
    }
    .hero-trust-badges {
        align-items: center;
    }
    .hero-image-container {
        margin-top: 20px;
    }
    .floating-badge {
        padding: 8px 14px;
    }
    .badge-1 { left: -10px; top: 10px; }
    .badge-2 { right: -10px; bottom: 10px; }
    
    .callout-banner {
        padding: 36px 24px;
    }
    .banner-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    .banner-cta-side {
        justify-content: center;
    }
    
    .pricing-card {
        padding: 32px 24px;
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-content-side .section-title {
        text-align: center;
    }
    .about-stats-grid {
        justify-content: center;
    }
    .stat-item {
        border-left: none;
        border-bottom: 2px solid var(--cyan);
        padding-left: 0;
        padding-bottom: 12px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info-side {
        text-align: center;
        padding-right: 0;
    }
    .contact-methods {
        align-items: center;
    }
    .contact-method-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .form-container-card {
        padding: 28px 20px;
    }
    
    /* Responsive Header & Navigation */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-surface);
        border-left: 1px solid var(--border-color);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links-wrapper.open {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
    }
    
    .nav-ctas .pricing-trigger, .nav-ctas .nav-btn-quote {
        display: none !important;
    }
    
    .mobile-menu-ctas {
        display: block;
    }
    
    /* Adjust grid classes */
    .grid-2-sm {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (min-width: 769px) {
    .grid-2-sm {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* -------------------------------------------------------------
   15. Interactive Timeline (AI Pulse) Styles
   ------------------------------------------------------------- */
.pulse-hero {
    padding-top: 160px;
    padding-bottom: 40px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(6, 182, 212, 0.08) 0%, rgba(7, 10, 19, 0) 60%);
}

.pulse-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.timeline-section {
    padding: 60px 0 100px 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* The vertical line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--cyan) 50%, var(--accent) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: transparent;
    width: 50%;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0);
}

.timeline-item.hidden-item {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    margin: 0;
    border: none;
}

/* Event Dots on the timeline line */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-surface);
    border: 4px solid var(--primary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.timeline-item:nth-child(even)::after {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}

.timeline-item:nth-child(odd)::after {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

.timeline-item.active-dot::after, .timeline-item:hover::after {
    background-color: #ffffff;
    transform: scale(1.3);
    box-shadow: var(--shadow-glow);
}

/* Alternating sides */
.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -10px;
}

/* Timeline content card */
.timeline-card {
    padding: 24px 30px;
    position: relative;
    cursor: pointer;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color-hover);
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-item:nth-child(odd) .timeline-date {
    color: var(--accent);
}

.timeline-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.timeline-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* Glassmorphic Modal Overlay for Timeline Detail */
.timeline-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 19, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.timeline-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 600px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.25);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    0% { transform: translateY(40px) scale(0.95); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.2);
}

.modal-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
}

.modal-title {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.modal-impact-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

.modal-impact-title i {
    color: var(--cyan);
}

.modal-body {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.modal-tags {
    margin-top: 24px;
    display: flex;
    gap: 10px;
}

/* Responsive Timeline adjustments */
@media (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px !important;
        right: auto !important;
    }
    
    .timeline-card {
        padding: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

/* -------------------------------------------------------------
   16. Interactive Mockup Dashboard (Herovisual) Styles
   ------------------------------------------------------------- */
.hero-dashboard-mockup {
    width: 100%;
    max-width: 540px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.08);
    position: relative;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    transition: var(--transition);
}

.hero-dashboard-mockup:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(6, 182, 212, 0.15);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    font-family: monospace;
    font-size: 0.75rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.mockup-title {
    color: var(--color-text-dark);
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-weight: 700;
}

.status-indicator-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: blinker 2s infinite;
}

.mockup-body {
    display: grid;
    grid-template-columns: 110px 1fr;
    height: 250px;
}

.mockup-sidebar {
    background: rgba(255, 255, 255, 0.01);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-item i {
    font-size: 0.8rem;
}

.sidebar-item:hover, .sidebar-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.mockup-workspace {
    padding: 16px;
    background: rgba(7, 10, 19, 0.2);
    overflow-y: auto;
}

.workspace-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.workspace-panel.hidden-panel {
    display: none !important;
}

.terminal-header {
    font-family: monospace;
    font-size: 0.75rem;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    padding-bottom: 6px;
}

.term-loc {
    color: #10b981;
    margin-right: 6px;
}

.term-action {
    color: var(--color-text-muted);
}

.terminal-logs {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.4;
    text-align: left;
}

.log-line {
    animation: fadeInLog 0.3s ease forwards;
}

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

/* Analytics Panel Mock styles */
.analytics-stat {
    margin-bottom: 12px;
    text-align: left;
}

.stat-lbl {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 4px;
}

.analytics-chart {
    width: 100%;
    height: 130px;
    margin-top: 4px;
}

.chart-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 5s ease forwards infinite;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

/* Advanced visual elements on cards */
.glass-card {
    transition: var(--transition);
}

/* Add custom glow to general services cards on hover */
.service-card:hover {
    border-color: rgba(6, 182, 212, 0.25);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.08);
}

/* Custom glow to concept cards on hover */
.concept-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

/* Comparison Grid & Split Cards */
.comparison-grid {
    margin-top: 40px;
    margin-bottom: 56px;
}

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

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.comparison-list li i {
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.traditional-card {
    border-left: 4px solid var(--color-text-dark);
}

.traditional-card .traditional-title {
    color: var(--color-text-dark);
}

.techlyst-card {
    border-left: 4px solid var(--accent);
}

/* Case Studies / Teardowns Styles */
.case-study-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    height: 100%;
}

.case-study-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cyan);
    display: inline-block;
    margin-bottom: 8px;
}

.case-study-card h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.tech-stack-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tech-badge {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.case-study-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.teardown-block {
    padding: 16px;
    border-radius: var(--radius-sm);
}

.teardown-block.before-block {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.teardown-block.after-block {
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.block-label {
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.teardown-block p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.case-study-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.impact-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Pricing features horizontal list */
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.pricing-features-list li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features-list li i {
    font-size: 0.9rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .traditional-card, .techlyst-card {
        border-left: none;
        border-top: 4px solid;
    }
    .traditional-card { border-top-color: var(--color-text-dark); }
    .techlyst-card { border-top-color: var(--accent); }
    
    .pricing-features-list {
        flex-direction: column;
        gap: 8px;
    }
}

