/* ==========================================================================
   SoftWiz Technologies — Soft Elegance & 3D Interactive Design System
   Plus Jakarta Sans + Outfit + IBM Plex Mono
   Curated Soft Lighting, Pastel Card Aesthetics, Graphic Watermarks & 3D Tactile Components
   ========================================================================== */

:root {
    /* ---- Soft & Elegant Color Palette ---- */
    --bg-base: #F8F9FE;
    --bg-subtle: #F0F3FC;
    --bg-surface: #FFFFFF;
    
    --ink-primary: #121829;
    --ink-secondary: #2C3550;
    --ink-muted: #5E6987;
    --ink-faint: #8E99B7;

    /* Soft Brand Luminescence (Violet to Sky Blue gradient) */
    --brand-violet: #7046E8;
    --brand-violet-light: #9A72FF;
    --brand-violet-soft: rgba(112, 70, 232, 0.08);
    
    --brand-blue: #4B8CFF;
    --brand-blue-light: #79AFFF;
    --brand-blue-soft: rgba(75, 140, 255, 0.08);

    --brand-gradient: linear-gradient(135deg, #7046E8 0%, #4B8CFF 100%);
    --brand-gradient-hover: linear-gradient(135deg, #7E56F0 0%, #5E9BFF 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(112, 70, 232, 0.1) 0%, rgba(75, 140, 255, 0.1) 100%);
    --text-gradient: linear-gradient(135deg, #182044 0%, #7046E8 60%, #4B8CFF 100%);

    /* Soft Pastel Card Backgrounds */
    --card-soft-lavender: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 243, 255, 0.88) 50%, rgba(240, 246, 255, 0.92) 100%);
    --card-soft-azure: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 247, 255, 0.88) 50%, rgba(245, 240, 255, 0.92) 100%);
    --card-soft-emerald: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 253, 250, 0.88) 50%, rgba(243, 246, 255, 0.92) 100%);
    --card-soft-peach: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 245, 0.88) 50%, rgba(248, 245, 255, 0.92) 100%);

    /* Silky Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-bg-hover: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.95);
    --glass-border-subtle: rgba(112, 70, 232, 0.12);
    --glass-blur: blur(20px) saturate(180%);

    /* Soft Multilayer Shadows */
    --shadow-sm: 0 4px 14px rgba(28, 42, 85, 0.04);
    --shadow-md: 0 14px 34px -4px rgba(28, 42, 85, 0.07), 0 4px 12px rgba(112, 70, 232, 0.04);
    --shadow-lg: 0 24px 56px -8px rgba(28, 42, 85, 0.13), 0 8px 24px rgba(112, 70, 232, 0.08);
    --shadow-3d: 0 30px 70px -10px rgba(20, 30, 70, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    --shadow-glow: 0 14px 30px rgba(112, 70, 232, 0.28);

    /* Elegant & Stylish Typography (Raleway + Urbanist + Instrument Serif Cursive) */
    --font-title: 'Raleway', 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Raleway', 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-cursive: 'Instrument Serif', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Extended Layout Width & Curves */
    --container: 1400px;
    --radius-xs: 8px;
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 30px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--ink-secondary);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

::selection {
    background: var(--brand-violet);
    color: #FFFFFF;
}

:focus-visible {
    outline: 2px solid var(--brand-violet);
    outline-offset: 3px;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Skip link */
.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    background: var(--brand-violet);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: top 0.3s var(--ease);
}
.skip-link:focus {
    top: 20px;
}

/* ==========================================================================
   Ambient Lighting & Cursor Aura
   ========================================================================== */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 70, 232, 0.08) 0%, rgba(75, 140, 255, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    mix-blend-mode: multiply;
}

.ambient-mesh-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(112, 70, 232, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 90% 40%, rgba(75, 140, 255, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 30% 85%, rgba(154, 114, 255, 0.03) 0%, transparent 40%);
}

/* ==========================================================================
   Typography — Sleek, Thin & Stylish Raleway & Editorial Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ink-primary);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1, .hero-title, .page-header h1 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.015em;
}

h2, .section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.012em;
}

h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

h4 {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
}

h5 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Cursive & Editorial Accents */
.font-cursive,
.cursive-accent,
.section-head h2 em,
.hero-title em {
    font-family: var(--font-cursive);
    font-style: italic;
    font-weight: 400;
    font-size: 1.16em;
    letter-spacing: normal;
}

p {
    color: var(--ink-muted);
}

p.lead {
    font-size: 1.15rem;
    line-height: 1.68;
    color: var(--ink-secondary);
}

.mono {
    font-family: var(--font-mono);
}

.gradient-text {
    background: linear-gradient(135deg, #7046E8 0%, #4B8CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-violet);
    margin-bottom: 12px;
    background: rgba(112, 70, 232, 0.07);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(112, 70, 232, 0.12);
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-violet);
    box-shadow: 0 0 8px var(--brand-violet);
}

.section-head {
    max-width: 720px;
    margin-bottom: 56px;
}

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

.section-head.center .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.section-head p {
    margin-top: 14px;
    font-size: 1.08rem;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.section-sm {
    padding: 64px 0;
}

.bg-paper-2 {
    background-color: var(--bg-subtle);
    position: relative;
}

.bg-paper-2::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(112, 70, 232, 0.04) 1px, transparent 1px);
    background-size: 24px 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); }

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

@media (max-width: 840px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 76px 0; }
    .container { padding: 0 20px; }
}

/* ==========================================================================
   Buttons & Interactive Micro-elements
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
    will-change: transform;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--brand-gradient);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: var(--brand-gradient-hover);
    box-shadow: 0 18px 36px rgba(112, 70, 232, 0.36);
    color: #FFFFFF;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(25deg);
    transition: left 0.75s ease;
}

.btn-shine:hover::after {
    left: 130%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.18);
    color: var(--ink-primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: #FFFFFF;
    border-color: var(--brand-violet);
    color: var(--brand-violet);
    box-shadow: var(--shadow-md);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.95);
}

.btn-ghost {
    color: var(--brand-violet);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: gap 0.25s var(--ease);
}

.btn-ghost::after {
    content: '→';
    transition: transform 0.25s var(--ease);
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.25s var(--ease);
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-icon-play {
    font-size: 0.85rem;
    color: var(--brand-violet);
}

/* ==========================================================================
   Universal Soft Pastel & Graphic Watermark Card System
   ========================================================================== */

/* Base Glassmorphic Card with Soft Pastel Gradient & Ambient Watermark Graphics */
.glass-card,
.service-card,
.product-card,
.testimonial-card,
.blog-card,
.info-card,
.reason-item,
.ecosystem-item,
.job-card {
    background:
        /* Top: Delicate ambient graphic watermark */
        radial-gradient(circle at 90% 12%, rgba(112, 70, 232, 0.07) 0%, rgba(75, 140, 255, 0.03) 45%, transparent 65%),
        radial-gradient(circle at 10% 90%, rgba(154, 114, 255, 0.05) 0%, transparent 40%),
        /* Bottom: Soft pastel cream/lavender/azure glass */
        linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 246, 254, 0.88) 50%, rgba(241, 246, 255, 0.92) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
    will-change: transform;
}

/* Embedded Subtle Geometric Motif Watermark in Top Right Corner */
.glass-card::before,
.service-card::before,
.product-card::before,
.testimonial-card::before,
.blog-card::before,
.info-card::before,
.reason-item::before,
.ecosystem-item::before,
.job-card::before {
    content: '';
    position: absolute;
    right: -25px;
    top: -25px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(112, 70, 232, 0.08) 0%, transparent 65%),
        repeating-radial-gradient(circle, rgba(112, 70, 232, 0.04) 0, rgba(112, 70, 232, 0.04) 1px, transparent 2px, transparent 14px);
    pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.5s ease;
    opacity: 0.85;
    z-index: 0;
}

.glass-card:hover::before,
.service-card:hover::before,
.product-card:hover::before,
.testimonial-card:hover::before,
.blog-card:hover::before,
.info-card:hover::before,
.reason-item:hover::before,
.ecosystem-item:hover::before,
.job-card:hover::before {
    transform: scale(1.35) rotate(15deg);
    opacity: 1;
}

/* Ensure card children stay above graphic watermark */
.glass-card > *,
.service-card > *,
.product-card > *,
.testimonial-card > *,
.blog-card > *,
.info-card > *,
.reason-item > *,
.ecosystem-item > *,
.job-card > * {
    position: relative;
    z-index: 1;
}

/* Alternating Soft Pastel Color Tint Variants */
.grid-3 > div:nth-child(3n+1) .service-card,
.grid-3 > .service-card:nth-child(3n+1),
.grid-3 > .testimonial-card:nth-child(3n+1),
.grid-3 > .blog-card:nth-child(3n+1),
.ecosystem-list > .ecosystem-item:nth-child(3n+1) {
    background:
        radial-gradient(circle at 88% 14%, rgba(112, 70, 232, 0.09) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 242, 255, 0.90) 50%, rgba(241, 246, 255, 0.92) 100%);
}

.grid-3 > div:nth-child(3n+2) .service-card,
.grid-3 > .service-card:nth-child(3n+2),
.grid-3 > .testimonial-card:nth-child(3n+2),
.grid-3 > .blog-card:nth-child(3n+2),
.ecosystem-list > .ecosystem-item:nth-child(3n+2) {
    background:
        radial-gradient(circle at 88% 14%, rgba(75, 140, 255, 0.09) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.90) 50%, rgba(246, 242, 255, 0.92) 100%);
}

.grid-3 > div:nth-child(3n+3) .service-card,
.grid-3 > .service-card:nth-child(3n+3),
.grid-3 > .testimonial-card:nth-child(3n+3),
.grid-3 > .blog-card:nth-child(3n+3),
.ecosystem-list > .ecosystem-item:nth-child(3n+3) {
    background:
        radial-gradient(circle at 88% 14%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 253, 249, 0.90) 50%, rgba(242, 246, 255, 0.92) 100%);
}

/* Hover Elevation & Accent Glow */
.glass-card:hover,
.service-card:hover,
.product-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.info-card:hover,
.reason-item:hover,
.ecosystem-item:hover,
.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(112, 70, 232, 0.3);
}

/* Specular Glare Overlay for 3D Tilt */
.card-glare-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.45) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: overlay;
    z-index: 10;
}

.glass-card:hover .card-glare-overlay,
.service-card:hover .card-glare-overlay,
.product-card:hover .card-glare-overlay,
.testimonial-card:hover .card-glare-overlay,
.blog-card:hover .card-glare-overlay,
.info-card:hover .card-glare-overlay,
.reason-item:hover .card-glare-overlay,
.ecosystem-item:hover .card-glare-overlay {
    opacity: 1;
}

/* ==========================================================================
   Header & Floating Navigation (Spacious, Non-overlapping Layout)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(112, 70, 232, 0.08);
    box-shadow: 0 10px 30px rgba(28, 42, 85, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s var(--ease);
}

.site-header.is-scrolled .logo img {
    height: 42px;
}

.logo-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--brand-violet);
    white-space: nowrap;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.main-nav {
    display: flex;
    align-items: center;
    flex-shrink: 1;
}

.nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--glass-blur);
    padding: 4px 6px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.main-nav a {
    padding: 7px 13px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink-secondary);
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.09);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-actions .btn-primary {
    padding: 10px 22px;
    font-size: 0.88rem;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(112, 70, 232, 0.12);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-primary);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* Breakpoint for clean responsive drawer */
@media (max-width: 1240px) {
    .logo-status-pill { display: none; }
    .main-nav a { padding: 6px 10px; font-size: 0.84rem; }
}

@media (max-width: 1120px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(340px, 86vw);
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(28px);
        padding: 90px 24px 30px;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
        transition: right 0.4s var(--ease);
        z-index: 999;
    }
    .main-nav.is-open { right: 0; }
    .nav-links-wrap {
        flex-direction: column;
        background: none;
        padding: 0;
        border: none;
        box-shadow: none;
        align-items: stretch;
        gap: 6px;
    }
    .main-nav a {
        padding: 12px 18px;
        font-size: 1rem;
    }
    .header-actions .btn-primary { display: none; }
}

/* ==========================================================================
   Hero Section with WebGL 3D Canvas
   ========================================================================== */
.hero {
    min-height: 840px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background:
        radial-gradient(circle at 75% 30%, rgba(75, 140, 255, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 45% 75%, rgba(112, 70, 232, 0.12) 0%, transparent 40%),
        linear-gradient(135deg, #F8F9FE 0%, #F0F3FC 50%, #E8EEFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
}

.blob-1 {
    width: 460px;
    height: 460px;
    background: rgba(112, 70, 232, 0.18);
    right: 5%;
    top: 15%;
    animation: blobFloat 12s ease-in-out infinite alternate;
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: rgba(75, 140, 255, 0.18);
    right: 25%;
    bottom: 10%;
    animation: blobFloat 14s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 40px) scale(1.08); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(112, 70, 232, 0.16);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-violet);
    margin-bottom: 22px;
}

.sparkle-icon {
    color: #F59E0B;
    font-size: 0.95rem;
}

.badge-accent-arrow {
    color: var(--brand-blue);
    font-size: 0.9rem;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p.lead {
    margin-bottom: 34px;
    font-size: 1.14rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero Stats Container with Soft Graphic Background */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 18px;
    background:
        radial-gradient(circle at 95% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.88) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.hero-stat-card {
    padding: 10px 16px;
    border-right: 1px solid rgba(112, 70, 232, 0.08);
}

.hero-stat-card:last-child {
    border-right: none;
}

.hero-stat-card .stat-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-violet);
    line-height: 1;
}

.hero-stat-card .stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink-muted);
    margin-top: 6px;
    line-height: 1.3;
}

/* 3D Hero Visual Container */
.hero-visual {
    height: 540px;
    position: relative;
    perspective: 1400px;
    transform-style: preserve-3d;
    isolation: isolate;
}

.hero-3d-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    cursor: grab;
}

.hero-3d-canvas:active {
    cursor: grabbing;
}

/* Layered 3D Multi-Plane Stack */
.hero-stack {
    position: absolute;
    inset: 20px 10px;
    transform-style: preserve-3d;
    pointer-events: auto;
    z-index: 2;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.hero-panel {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.25s var(--ease), box-shadow 0.35s var(--ease);
    will-change: transform;
}

.panel-back {
    width: 54%;
    height: 50%;
    top: 2%;
    right: 0;
    padding: 26px;
    background:
        radial-gradient(circle at 80% 20%, rgba(112, 70, 232, 0.15) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 244, 255, 0.82) 100%);
    border: 1px solid rgba(112, 70, 232, 0.22);
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 18px 44px rgba(112, 70, 232, 0.14), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transform: translate3d(24px, -24px, -40px) rotateY(-4deg) rotateX(3deg);
}

.panel-back span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--brand-violet);
    letter-spacing: 0.12em;
}

.panel-back strong {
    display: block;
    margin-top: 14px;
    font-size: 3.8rem;
    font-family: var(--font-heading);
    color: var(--ink-primary);
    line-height: 0.8;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-mid {
    width: 68%;
    height: 62%;
    top: 16%;
    left: 2%;
    padding: 30px;
    background:
        radial-gradient(circle at 90% 15%, rgba(75, 140, 255, 0.12) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 242, 255, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 60px rgba(28, 42, 85, 0.13), 0 8px 24px rgba(112, 70, 232, 0.08), inset 0 1px 1.5px rgba(255, 255, 255, 1);
    transform: translate3d(0, 0, 35px);
}

.panel-kicker {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-violet);
    margin-top: 12px;
}

.panel-mid strong {
    display: block;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.15;
    margin-top: 10px;
    color: var(--ink-primary);
}

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

.panel-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #CBD5E1;
}

.panel-dots i:nth-child(1) { background: #F87171; }
.panel-dots i:nth-child(2) { background: #FBBF24; }
.panel-dots i:nth-child(3) { background: #34D399; }

.panel-chart {
    position: absolute;
    bottom: 22px;
    left: 28px;
    right: 28px;
    height: 44px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

.panel-chart b {
    display: block;
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--brand-gradient);
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(112, 70, 232, 0.2);
}

.panel-chart b:nth-child(1){height:28%}
.panel-chart b:nth-child(2){height:55%}
.panel-chart b:nth-child(3){height:40%}
.panel-chart b:nth-child(4){height:85%}
.panel-chart b:nth-child(5){height:62%}
.panel-chart b:nth-child(6){height:96%}
.panel-chart b:nth-child(7){height:78%}

.panel-front {
    width: 60%;
    height: 48%;
    bottom: 0%;
    right: 0%;
    padding: 26px;
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.1) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 242, 255, 0.94) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 32px 70px rgba(20, 30, 70, 0.18), 0 12px 30px rgba(112, 70, 232, 0.12), inset 0 1px 1.5px rgba(255, 255, 255, 1);
    transform: translate3d(20px, 20px, 90px);
}

.panel-core {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(112, 70, 232, 0.1);
    border: 1px solid rgba(112, 70, 232, 0.16);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
}

.core-pulse {
    width: 16px;
    height: 16px;
    border-radius: 6px;
    background: var(--brand-violet);
    box-shadow: 0 0 16px var(--brand-violet);
}

.panel-front strong {
    display: block;
    font-size: 1.3rem;
    margin-top: 14px;
    color: var(--ink-primary);
}

.panel-front small {
    display: block;
    font-size: 0.76rem;
    color: var(--ink-muted);
    margin-top: 6px;
}

/* Floating 3D Chips with Enhanced Spatial Elevation */
.floating-chip {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--ink-primary);
    background:
        radial-gradient(circle at 80% 50%, rgba(112, 70, 232, 0.1) 0%, transparent 60%),
        rgba(255, 255, 255, 0.94);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 36px rgba(112, 70, 232, 0.16), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    will-change: transform;
    animation: chipFloat 5s ease-in-out infinite alternate;
}

.floating-chip:hover {
    box-shadow: 0 20px 42px rgba(112, 70, 232, 0.25);
}

.chip-icon {
    color: var(--brand-violet);
    font-weight: 700;
}

.chip-code {
    top: 30px;
    left: -10px;
    transform: translate3d(0, 0, 110px);
    animation-delay: 0s;
}

.chip-cloud {
    bottom: 70px;
    right: -10px;
    transform: translate3d(0, 0, 95px);
    animation-delay: -2s;
}

.chip-speed {
    top: 50%;
    left: -24px;
    transform: translate3d(0, 0, 80px);
    animation-delay: -3.5s;
}

@keyframes chipFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 980px) {
    .hero { min-height: auto; padding-top: 130px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; height: 420px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stat-card:nth-child(2) { border-right: none; }
}

/* ==========================================================================
   Page Header with Modern Luxury Lighting & Breadcrumbs (Subpages)
   ========================================================================== */
.page-header {
    padding: 125px 0 45px;
    background: #F8F9FE;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(112, 70, 232, 0.12);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.9), 0 6px 20px -8px rgba(112, 70, 232, 0.04);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.page-header-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0.32;
    mix-blend-mode: multiply;
    filter: saturate(120%) brightness(102%);
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.header-grid-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(112, 70, 232, 0.05) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 85% 25%, rgba(112, 70, 232, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 75%, rgba(75, 140, 255, 0.10) 0%, transparent 50%),
        linear-gradient(135deg, rgba(248, 249, 254, 0.95) 0%, rgba(243, 246, 255, 0.85) 45%, rgba(248, 249, 254, 0.94) 100%);
}

.page-header-light-beam {
    position: absolute;
    top: -40%;
    left: 15%;
    width: 65%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(154, 114, 255, 0.10) 0%, rgba(75, 140, 255, 0.05) 40%, transparent 70%);
    transform: rotate(-25deg);
    pointer-events: none;
}

.page-header-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.page-header-ambient-orb.orb-1 {
    width: 380px;
    height: 380px;
    top: -90px;
    right: 2%;
    background: radial-gradient(circle, rgba(112, 70, 232, 0.16) 0%, rgba(75, 140, 255, 0.08) 50%, transparent 70%);
    animation: headerOrbFloat 14s ease-in-out infinite alternate;
}

.page-header-ambient-orb.orb-2 {
    width: 280px;
    height: 280px;
    bottom: -70px;
    left: -30px;
    background: radial-gradient(circle, rgba(75, 140, 255, 0.14) 0%, rgba(154, 114, 255, 0.06) 50%, transparent 70%);
    animation: headerOrbFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes headerOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(14px, -10px) scale(1.04); }
    100% { transform: translate(-10px, 8px) scale(0.97); }
}

.page-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.page-header-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.16);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-violet);
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(112, 70, 232, 0.04);
}

.page-header-title {
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    line-height: 1.18;
    margin-bottom: 8px;
    color: var(--ink-primary);
}

.page-header-subtitle {
    margin-top: 6px;
    max-width: 580px;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    color: var(--ink-secondary);
    line-height: 1.55;
}

/* Compact 3D Header Scene Visual */
.page-header-visual {
    height: 250px;
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    isolation: isolate;
}

.page-header-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-compact-3d-stack {
    position: absolute;
    inset: 0;
    pointer-events: auto;
    z-index: 2;
    transform-style: preserve-3d;
}

.header-telemetry-badge {
    position: absolute;
    right: 8%;
    top: 25%;
    padding: 12px 18px;
    background:
        radial-gradient(circle at 90% 10%, rgba(75, 140, 255, 0.12) 0%, transparent 50%),
        rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 32px rgba(112, 70, 232, 0.12);
    transform: translate3d(0, 0, 30px);
}

.telemetry-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.telemetry-tag {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--brand-violet);
    letter-spacing: 0.06em;
}

.telemetry-title {
    display: block;
    font-size: 0.92rem;
    color: var(--ink-primary);
    line-height: 1.15;
    margin-bottom: 2px;
}

.telemetry-sub {
    display: block;
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--ink-muted);
}

.chip-subpage-1 {
    top: 15px;
    left: 8%;
    transform: translate3d(0, 0, 60px);
    padding: 6px 12px;
    font-size: 0.72rem;
}

.chip-subpage-2 {
    bottom: 20px;
    right: 12%;
    transform: translate3d(0, 0, 50px);
    padding: 6px 12px;
    font-size: 0.72rem;
}

@media (max-width: 980px) {
    .page-header-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .page-header-visual {
        max-width: 360px;
        margin: 0 auto;
        height: 200px;
    }
}

/* Compact Breadcrumbs Section */
.breadcrumbs-wrapper {
    position: relative;
    display: inline-flex;
    max-width: 100%;
    margin-top: 14px;
    z-index: 2;
}

.breadcrumbs-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px -6px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(112, 70, 232, 0.16) 0%, rgba(75, 140, 255, 0.10) 60%, transparent 80%);
    filter: blur(8px);
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.breadcrumbs-wrapper:hover::before {
    opacity: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow-x: auto;
    padding: 1px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.breadcrumbs::-webkit-scrollbar {
    display: none;
}

.breadcrumbs-inner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px 4px 5px;
    border-radius: var(--radius-full);
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 246, 255, 0.90) 50%, rgba(244, 248, 255, 0.94) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(112, 70, 232, 0.20);
    box-shadow: 
        0 6px 18px -3px rgba(112, 70, 232, 0.10),
        0 2px 6px rgba(28, 42, 85, 0.04),
        inset 0 1px 1px rgba(255, 255, 255, 1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.breadcrumbs-inner:hover {
    border-color: rgba(112, 70, 232, 0.36);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 255, 0.94) 100%);
    box-shadow: 
        0 8px 24px -3px rgba(112, 70, 232, 0.18),
        0 3px 10px rgba(75, 140, 255, 0.08);
    transform: translateY(-1px);
}

.crumb-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.crumb-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-decoration: none;
    transition: all 0.2s var(--ease);
    position: relative;
}

.crumb-link:hover {
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
}

.crumb-link-home {
    padding: 3px 7px 3px 4px;
}

.crumb-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.15) 0%, rgba(75, 140, 255, 0.12) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
}

.crumb-home-icon {
    width: 11px;
    height: 11px;
    stroke: var(--brand-violet);
    transition: transform 0.25s var(--ease), stroke 0.2s ease;
}

.crumb-link:hover .crumb-icon-wrap {
    background: var(--brand-gradient);
    box-shadow: 0 2px 8px rgba(112, 70, 232, 0.35);
}

.crumb-link:hover .crumb-home-icon {
    stroke: #ffffff;
}

.crumb-text {
    line-height: 1;
}

.crumb-sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 1px;
    color: rgba(112, 70, 232, 0.35);
    user-select: none;
    flex-shrink: 0;
}

.crumb-sep svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    stroke-width: 2.2;
}

.crumb-current-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px 3px 8px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.14) 0%, rgba(75, 140, 255, 0.10) 100%);
    border: 1px solid rgba(112, 70, 232, 0.24);
    box-shadow: 
        0 2px 8px rgba(112, 70, 232, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: all 0.25s var(--ease);
}

.crumb-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-violet);
    box-shadow: 0 0 0 0 rgba(112, 70, 232, 0.6);
    animation: crumbDotPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    flex-shrink: 0;
}

@keyframes crumbDotPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(112, 70, 232, 0.65);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(112, 70, 232, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(112, 70, 232, 0);
    }
}

.crumb-current {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-violet);
    letter-spacing: -0.01em;
    line-height: 1;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .breadcrumbs-wrapper {
        margin-top: 12px;
        width: 100%;
    }
    .breadcrumbs {
        padding: 2px 0 6px;
    }
    .breadcrumbs-inner {
        padding: 3px 6px;
        gap: 3px;
    }
    .crumb-link {
        padding: 3px 6px;
        font-size: 0.72rem;
    }
    .crumb-current-pill {
        padding: 3px 8px 3px 6px;
    }
    .crumb-current {
        font-size: 0.72rem;
        max-width: 150px;
    }
}

.header-art {
    position: absolute;
    right: 0;
    top: 0;
    width: min(50vw, 620px);
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.header-art-svg {
    position: absolute;
    right: -20px;
    bottom: -10px;
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.header-art-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(112, 70, 232, 0.18);
}

.orb-a {
    width: 260px;
    height: 260px;
    right: 12%;
    top: -80px;
    background: radial-gradient(circle, rgba(112, 70, 232, 0.06) 0%, transparent 70%);
}

.orb-b {
    width: 180px;
    height: 180px;
    right: 35%;
    bottom: 20px;
    border-style: dashed;
    animation: rotateOrb 30s linear infinite;
}

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

.header-3d-scene {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

/* Floating 3D Holographic Crystal Graphic */
.header-floating-crystal-wrap {
    position: absolute;
    right: 22%;
    top: 24%;
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
    animation: crystalFloat 7s ease-in-out infinite alternate;
}

.header-floating-crystal {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    filter: drop-shadow(0 20px 35px rgba(112, 70, 232, 0.35));
}

.crystal-ambient-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 70, 232, 0.35) 0%, rgba(75, 140, 255, 0.15) 50%, transparent 70%);
    filter: blur(16px);
    z-index: -1;
}

@keyframes crystalFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(4deg); }
    100% { transform: translateY(6px) rotate(-3deg); }
}

.header-art-card {
    position: absolute;
    right: 12%;
    top: 55%;
    padding: 12px 18px;
    background:
        radial-gradient(circle at 90% 10%, rgba(75, 140, 255, 0.14) 0%, transparent 50%),
        rgba(255, 255, 255, 0.94);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 36px rgba(112, 70, 232, 0.16);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(-3deg);
    animation: cardFloat 8s ease-in-out infinite alternate;
}

@keyframes cardFloat {
    0% { transform: translateY(0) rotate(-3deg); }
    100% { transform: translateY(-12px) rotate(-1deg); }
}

.card-chip {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-text small {
    display: block;
    font-size: 0.66rem;
    font-family: var(--font-mono);
    color: var(--ink-muted);
}

.card-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink-primary);
    line-height: 1.1;
}

.card-chip span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-violet);
    margin-bottom: 3px;
}

.card-chip span:nth-child(2) { background: var(--brand-blue); }

.card-text small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--brand-violet);
    font-weight: 700;
}

.card-text strong {
    font-size: 0.85rem;
    color: var(--ink-primary);
}

/* ==========================================================================
   Services Section & Enhanced Cards
   ========================================================================== */
.services-quick-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.services-quick-pills span {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-card {
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.12) 0%, rgba(75, 140, 255, 0.14) 100%);
    border: 1px solid rgba(112, 70, 232, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover .icon-wrap {
    transform: scale(1.08) translateZ(20px);
    box-shadow: 0 8px 20px rgba(112, 70, 232, 0.22);
}

.service-card .icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--brand-violet);
}

.service-index {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.12);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--ink-primary);
    transition: color 0.25s var(--ease);
}

.service-card:hover h3 {
    color: var(--brand-violet);
}

.service-card p {
    flex: 1;
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.6;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-tag {
    font-size: 0.74rem;
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--ink-secondary);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.service-card-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(112, 70, 232, 0.09);
    margin-top: auto;
}

/* Service Link & Arrow Animation */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-violet);
    text-decoration: none;
    transition: all 0.25s var(--ease);
}

.service-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(112, 70, 232, 0.08);
    transition: all 0.25s var(--ease);
    color: var(--brand-violet);
}

.service-card:hover .service-link-arrow,
.service-link:hover .service-link-arrow {
    background: var(--brand-gradient);
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(112, 70, 232, 0.35);
}

.service-card:hover .service-link-arrow svg,
.service-link:hover .service-link-arrow svg {
    stroke: #ffffff;
}

/* Service Detail Blueprint Card */
.service-blueprint-card {
    padding: 36px 32px;
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(75, 140, 255, 0.08) 0%, transparent 60%),
        rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(112, 70, 232, 0.18);
    box-shadow: 0 16px 40px -8px rgba(28, 42, 85, 0.08), 0 4px 16px rgba(112, 70, 232, 0.06), inset 0 1px 1px #ffffff;
    position: sticky;
    top: 110px;
}

.blueprint-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(112, 70, 232, 0.1);
    margin-bottom: 22px;
}

.blueprint-badge {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(112, 70, 232, 0.14);
}

.blueprint-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.blueprint-spec-item {
    background: rgba(248, 249, 254, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.blueprint-spec-item small {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.blueprint-spec-item strong {
    font-size: 0.88rem;
    color: var(--ink-primary);
}

.blueprint-features-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blueprint-features-list {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.blueprint-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--ink-secondary);
}

.feature-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.15) 0%, rgba(75, 140, 255, 0.15) 100%);
    border: 1px solid rgba(112, 70, 232, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-violet);
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Service Detail Narrative & Highlight Box */
.service-narrative {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-highlight-box {
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 243, 255, 0.88) 100%);
    border-left: 4px solid var(--brand-violet);
    border-top: 1px solid rgba(112, 70, 232, 0.12);
    border-right: 1px solid rgba(112, 70, 232, 0.12);
    border-bottom: 1px solid rgba(112, 70, 232, 0.12);
    box-shadow: var(--shadow-sm);
    margin-top: 6px;
}

.service-highlight-box h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--ink-primary);
}

.service-highlight-box p {
    font-size: 0.94rem;
    color: var(--ink-muted);
    margin: 0;
}

/* Process Timeline & Track */
.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
    position: relative;
}

.service-process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(112, 70, 232, 0.3) 0%, rgba(75, 140, 255, 0.3) 50%, rgba(154, 114, 255, 0.3) 100%);
    z-index: 0;
}

.process-step-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 70, 232, 0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -4px rgba(112, 70, 232, 0.14);
    border-color: rgba(112, 70, 232, 0.32);
}

.process-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.process-num-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7046E8 0%, #4B8CFF 100%);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(112, 70, 232, 0.3);
    border: 3px solid #FFFFFF;
}

.process-phase-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ink-faint);
    letter-spacing: 0.05em;
}

.process-step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--ink-primary);
}

.process-step-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-muted);
}

/* Engagement Models Section */
.engagement-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.engagement-card {
    padding: 36px 30px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.06) 0%, transparent 60%),
        rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 70, 232, 0.15);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -6px rgba(112, 70, 232, 0.15);
    border-color: rgba(112, 70, 232, 0.35);
}

.engagement-card.is-featured {
    border-color: var(--brand-violet);
    box-shadow: 0 14px 34px -4px rgba(112, 70, 232, 0.16);
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.10) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 255, 0.92) 100%);
}

.engagement-featured-badge {
    position: absolute;
    top: -12px;
    right: 28px;
    background: var(--brand-gradient);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(112, 70, 232, 0.3);
}

.engagement-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.12) 0%, rgba(75, 140, 255, 0.12) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-violet);
}

.engagement-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.engagement-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.engagement-points {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(112, 70, 232, 0.1);
}

.engagement-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--ink-secondary);
}

.engagement-point-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-violet);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .service-process-grid { grid-template-columns: repeat(2, 1fr); }
    .engagement-models-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .service-process-grid { grid-template-columns: 1fr; }
    .service-process-grid::before { display: none; }
    .blueprint-specs-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About Snapshot & Blueprint Visual
   ========================================================================== */
.about-feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background:
        radial-gradient(circle at 90% 50%, rgba(112, 70, 232, 0.06) 0%, transparent 60%),
        rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.14);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--ink-secondary);
    box-shadow: var(--shadow-sm);
}

.about-feature-pill span {
    color: var(--brand-violet);
}

.about-media-3d-wrap {
    position: relative;
    perspective: 1000px;
}

.about-media-card {
    padding: 24px;
}

.about-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mono-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-subtle);
    box-shadow: 0 10px 30px rgba(28, 42, 85, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.12);
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about-media-card:hover .about-hero-img {
    transform: scale(1.04);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-primary);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.pill-top {
    align-self: flex-start;
}

.pill-bottom {
    align-self: flex-end;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
}

.pill-spark {
    color: var(--brand-violet);
    font-size: 0.8rem;
}

.about-media-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(112, 70, 232, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-media-footer span {
    font-size: 0.68rem;
    color: var(--brand-violet);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about-media-footer strong {
    font-size: 0.88rem;
    color: var(--ink-secondary);
}

.arch-svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 64px 0 0;
    border: 1px solid rgba(112, 70, 232, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
}

.glass-band {
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.06) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 243, 255, 0.88) 100%);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
}

.stat-item {
    padding: 30px 24px;
    border-right: 1px solid rgba(112, 70, 232, 0.1);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--brand-violet);
    line-height: 1;
}

.stat-item .stat-label {
    color: var(--ink-muted);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .stat-band { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(112, 70, 232, 0.1); }
}

/* ==========================================================================
   Why Choose Us & Engineering Comparison
   ========================================================================== */
.why-compare-card {
    padding: 28px;
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 243, 255, 0.90) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.compare-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(112, 70, 232, 0.1);
}

.compare-header small {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.compare-list {
    display: grid;
    gap: 16px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.compare-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10B981;
    font-weight: 800;
    font-size: 0.8rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-list li strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ink-primary);
    line-height: 1.3;
}

.compare-list li p {
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-top: 2px;
    line-height: 1.4;
}

.reasons-stack {
    display: grid;
    gap: 18px;
}

.reason-item {
    display: flex;
    gap: 20px;
    padding: 24px 26px;
    align-items: flex-start;
}

.reason-num {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-violet);
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.12) 0%, rgba(75, 140, 255, 0.15) 100%);
    border: 1px solid rgba(112, 70, 232, 0.18);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease);
}

.reason-item:hover .reason-num {
    transform: scale(1.08) translateZ(15px);
}

.reason-body {
    flex: 1;
}

.reason-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.reason-top h4 {
    font-size: 1.15rem;
    color: var(--ink-primary);
    margin: 0;
}

.reason-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.12);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.reason-body p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 12px;
}

.reason-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.reason-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(112, 70, 232, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.on-dark {
    background:
        radial-gradient(circle at 80% 20%, rgba(75, 140, 255, 0.16) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(112, 70, 232, 0.14) 0%, transparent 40%),
        linear-gradient(135deg, #F8F9FE 0%, #EEF2FC 100%);
    border-top: 1px solid rgba(112, 70, 232, 0.08);
    border-bottom: 1px solid rgba(112, 70, 232, 0.08);
}

.ecosystem-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.ecosystem-item {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.eco-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 10px;
}

.eco-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.12) 0%, rgba(75, 140, 255, 0.15) 100%);
    border: 1px solid rgba(112, 70, 232, 0.18);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease);
}

.ecosystem-item:hover .eco-icon-wrap {
    transform: scale(1.1) translateZ(15px);
}

.eco-sector-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.ecosystem-item h4 {
    font-size: 1.28rem;
    margin-bottom: 8px;
    color: var(--ink-primary);
}

.ecosystem-item p {
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.eco-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.eco-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-secondary);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.12);
    padding: 3px 9px;
    border-radius: var(--radius-full);
}

.eco-card-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(112, 70, 232, 0.09);
    margin-top: auto;
}

.eco-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-violet);
    transition: color 0.25s var(--ease);
}

.eco-link:hover {
    color: var(--brand-blue);
}

.eco-arrow {
    transition: transform 0.25s var(--ease);
}

.eco-link:hover .eco-arrow {
    transform: translate(3px, -3px);
}

/* Ecosystem Synergy Banner */
.eco-synergy-banner {
    margin-top: 48px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.90) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
}

.synergy-content {
    max-width: 620px;
}

.synergy-content h3 {
    margin: 10px 0 6px;
    font-size: 1.35rem;
}

.synergy-content p {
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

.synergy-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.synergy-pills span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-secondary);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(112, 70, 232, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 980px) {
    .ecosystem-list { grid-template-columns: repeat(2, 1fr); }
    .eco-synergy-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .ecosystem-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Products Section & Modern Mockup Cards
   ========================================================================== */
.products-benefit-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.products-benefit-pills span {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.product-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.product-category-pill {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.12);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.product-index {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--ink-muted);
}

.product-mock-frame {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(112, 70, 232, 0.14);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover .product-mock-frame {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(112, 70, 232, 0.16);
}

.mock-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(246, 243, 255, 0.95);
    border-bottom: 1px solid rgba(112, 70, 232, 0.1);
}

.mock-status {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--ink-muted);
}

.product-mock-frame .thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #F8F9FE;
}

.product-mock-frame .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.product-card:hover .product-mock-frame .thumb img {
    transform: scale(1.06);
}

.product-float-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(112, 70, 232, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--brand-violet);
    box-shadow: var(--shadow-sm);
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h4 {
    font-size: 1.18rem;
    margin-bottom: 8px;
    color: var(--ink-primary);
    transition: color 0.25s var(--ease);
}

.product-card:hover .product-body h4 {
    color: var(--brand-violet);
}

.product-body p {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.product-tags span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink-secondary);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.12);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.product-card-footer {
    padding-top: 12px;
    border-top: 1px solid rgba(112, 70, 232, 0.09);
    margin-top: auto;
}

/* Products Deployment Strip */
.product-deployment-strip {
    margin-top: 48px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.90) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
}

.deploy-info {
    max-width: 620px;
}

.deploy-info h3 {
    margin: 10px 0 6px;
    font-size: 1.35rem;
}

.deploy-info p {
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

.deploy-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Product Detail Page Showcase */
.product-showcase-frame {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 70, 232, 0.2);
    box-shadow: 0 20px 50px -10px rgba(28, 42, 85, 0.12), 0 6px 20px rgba(112, 70, 232, 0.08), inset 0 1px 1px #ffffff;
    margin-bottom: 24px;
    position: relative;
}

.product-showcase-frame .thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #F8F9FE;
}

.product-showcase-frame .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-specs-card {
    padding: 28px 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.06) 0%, transparent 60%),
        rgba(255, 255, 255, 0.92);
    border-radius: var(--radius);
    border: 1px solid rgba(112, 70, 232, 0.15);
    box-shadow: var(--shadow-sm);
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-spec-item {
    background: rgba(248, 249, 254, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.product-spec-item small {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.product-spec-item strong {
    font-size: 0.88rem;
    color: var(--ink-primary);
}

.product-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.product-module-card {
    padding: 28px 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 70, 232, 0.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -4px rgba(112, 70, 232, 0.14);
    border-color: rgba(112, 70, 232, 0.3);
}

.product-module-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.12) 0%, rgba(75, 140, 255, 0.12) 100%);
    color: var(--brand-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-module-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--ink-primary);
}

.product-module-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--ink-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .product-deployment-strip { flex-direction: column; align-items: flex-start; }
}

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

/* Portfolio Cards */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
    justify-content: center;
}

.filter-bar button {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(112, 70, 232, 0.12);
    color: var(--ink-muted);
    transition: all 0.25s var(--ease);
}

.filter-bar button:hover,
.filter-bar button.active {
    background: var(--brand-violet);
    border-color: var(--brand-violet);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

.portfolio-sector-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.portfolio-sector-pills span {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
}

.portfolio-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-thumb-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(112, 70, 232, 0.14);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.portfolio-card:hover .portfolio-thumb-wrap {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(112, 70, 232, 0.16);
}

.portfolio-window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(246, 243, 255, 0.95);
    border-bottom: 1px solid rgba(112, 70, 232, 0.1);
}

.portfolio-cat-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.portfolio-img-box {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #FAFBFD 0%, #EFF2F9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-img-box img {
    max-width: 82%;
    max-height: 86px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
    filter: drop-shadow(0 2px 8px rgba(18, 21, 28, 0.06));
}

.portfolio-card:hover .portfolio-img-box img {
    transform: scale(1.08);
}

.portfolio-domain-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.06);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s var(--ease);
}

.portfolio-domain-pill:hover {
    background: var(--brand-violet);
    color: #ffffff;
}

.portfolio-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.portfolio-live-pill {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(112, 70, 232, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink-primary);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.portfolio-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-body h4 {
    font-size: 1.18rem;
    margin-bottom: 8px;
    color: var(--ink-primary);
    transition: color 0.25s var(--ease);
}

.portfolio-card:hover .portfolio-body h4 {
    color: var(--brand-violet);
}

.portfolio-body p {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
    color: var(--ink-muted);
}

.portfolio-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.portfolio-tech-tags span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink-secondary);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(112, 70, 232, 0.12);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.portfolio-footer {
    padding-top: 12px;
    border-top: 1px solid rgba(112, 70, 232, 0.09);
    margin-top: auto;
}

/* Portfolio Proof Band */
.portfolio-proof-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 26px 32px;
    margin-top: 48px;
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.90) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

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

.proof-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-violet);
    line-height: 1;
}

.proof-metric small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--ink-muted);
    margin-top: 6px;
}

/* Case Study Single Detail */
.case-study-showcase {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 70, 232, 0.2);
    box-shadow: 0 20px 50px -10px rgba(28, 42, 85, 0.12), 0 6px 20px rgba(112, 70, 232, 0.08), inset 0 1px 1px #ffffff;
    margin-bottom: 32px;
}

.case-study-showcase img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.case-study-specs-card {
    padding: 32px 26px;
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.06) 0%, transparent 60%),
        rgba(255, 255, 255, 0.94);
    border-radius: var(--radius);
    border: 1px solid rgba(112, 70, 232, 0.18);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 110px;
}

.case-study-tech-pill {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

@media (max-width: 980px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-proof-band { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 640px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-proof-band { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials Section & Client Trust
   ========================================================================== */
.testimonials-trust-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.testimonials-trust-pills span {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.testimonial-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 10px;
}

.stars-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.testimonial-card .stars {
    color: #F59E0B;
    letter-spacing: 2px;
    font-size: 1rem;
}

.rating-val {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink-secondary);
}

.verified-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: #059669;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.testimonial-card .quote {
    font-size: 1rem;
    font-style: normal;
    color: var(--ink-primary);
    flex: 1;
    margin-bottom: 22px;
    line-height: 1.6;
}

.testimonial-footer {
    padding-top: 18px;
    border-top: 1px solid rgba(112, 70, 232, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.testimonial-card .person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7046E8 0%, #4B8CFF 100%);
    color: #FFFFFF;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.person .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink-primary);
}

.person .role {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.testimonial-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.06);
    border: 1px solid rgba(112, 70, 232, 0.12);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    width: fit-content;
}

/* Client Trust Strip */
.client-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 32px;
    margin-top: 48px;
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.90) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
}

.trust-pill-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    font-size: 1.3rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(112, 70, 232, 0.08);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.trust-pill-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink-primary);
}

.trust-pill-item small {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-muted);
}

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

@media (max-width: 600px) {
    .client-trust-strip { grid-template-columns: 1fr; }
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.blog-topic-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.blog-topic-pills span {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
}

.blog-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-thumb-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(112, 70, 232, 0.14);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover .blog-thumb-wrap {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(112, 70, 232, 0.16);
}

.blog-window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(246, 243, 255, 0.95);
    border-bottom: 1px solid rgba(112, 70, 232, 0.1);
}

.blog-read-time {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink-muted);
}

.blog-img-box {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #F8F9FE;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.06);
}

.blog-cat-floating {
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(112, 70, 232, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--brand-violet);
    box-shadow: var(--shadow-sm);
}

.blog-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.blog-author-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-violet);
}

.blog-date-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-muted);
}

.blog-card h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
    color: var(--ink-primary);
    transition: color 0.25s var(--ease);
}

.blog-card:hover h3 {
    color: var(--brand-violet);
}

.blog-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--ink-muted);
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-footer {
    padding-top: 12px;
    border-top: 1px solid rgba(112, 70, 232, 0.09);
    margin-top: auto;
}

/* Blog Newsletter Strip */
.blog-newsletter-strip {
    margin-top: 48px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.90) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
}

.dispatch-info {
    max-width: 620px;
}

.dispatch-info h3 {
    margin: 10px 0 6px;
    font-size: 1.35rem;
}

.dispatch-info p {
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}

.dispatch-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Blog Sidebar & Article Layout */
.blog-sidebar-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(112, 70, 232, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.blog-cat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-cat-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-secondary);
    background: rgba(112, 70, 232, 0.03);
    border: 1px solid transparent;
    transition: all 0.2s var(--ease);
}

.blog-cat-item a:hover,
.blog-cat-item a.active {
    background: rgba(112, 70, 232, 0.09);
    border-color: rgba(112, 70, 232, 0.22);
    color: var(--brand-violet);
    transform: translateX(3px);
}

.blog-newsletter-card {
    padding: 26px 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        rgba(246, 243, 255, 0.95);
    border: 1px solid rgba(112, 70, 232, 0.2);
    border-radius: var(--radius);
}

.article-body-wrapper {
    line-height: 1.85;
    color: var(--ink-secondary);
    font-size: 1.06rem;
}

.article-body-wrapper p {
    margin-bottom: 24px;
    line-height: 1.85;
}

.article-lead-dropcap::first-letter {
    font-family: var(--font-heading);
    float: left;
    font-size: 3.4rem;
    line-height: 0.85;
    padding-top: 4px;
    padding-right: 12px;
    padding-bottom: 2px;
    color: var(--brand-violet);
    font-weight: 800;
}

.article-pullquote {
    margin: 36px 0;
    padding: 24px 28px;
    background:
        radial-gradient(circle at 10% 20%, rgba(112, 70, 232, 0.06) 0%, transparent 60%),
        rgba(246, 243, 255, 0.9);
    border-left: 4px solid var(--brand-violet);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-style: italic;
    color: var(--ink-primary);
    line-height: 1.6;
    box-shadow: var(--shadow-sm);
}

.article-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    margin: 32px 0;
    border-top: 1px solid rgba(112, 70, 232, 0.12);
    border-bottom: 1px solid rgba(112, 70, 232, 0.12);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink-secondary);
    background: rgba(112, 70, 232, 0.05);
    border: 1px solid rgba(112, 70, 232, 0.14);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.share-btn:hover {
    background: rgba(112, 70, 232, 0.12);
    color: var(--brand-violet);
    border-color: var(--brand-violet);
    transform: translateY(-2px);
}

.article-author-card {
    padding: 28px;
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.05) 0%, transparent 60%),
        rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(112, 70, 232, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 44px;
}

@media (max-width: 980px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-newsletter-strip { flex-direction: column; align-items: flex-start; }
}

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

/* ==========================================================================
   CTA Band
   ========================================================================== */
.cta-band {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
        linear-gradient(135deg, #7046E8 0%, #4B8CFF 100%);
    border-radius: var(--radius-lg);
    padding: 64px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    color: #FFFFFF;
    box-shadow: 0 24px 60px rgba(112, 70, 232, 0.28);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    right: -100px;
    top: -150px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.05);
}

.cta-band h2 {
    color: #FFFFFF;
    max-width: 620px;
}

.cta-band .btn-primary {
    background: #FFFFFF;
    color: var(--brand-violet);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-band .btn-primary:hover {
    background: #F8F9FE;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Contact Page & Form System
   ========================================================================== */
.contact-form-glass-card {
    padding: 44px;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(112, 70, 232, 0.08);
    border: 1px solid rgba(112, 70, 232, 0.14);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--brand-violet);
}

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

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

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(112, 70, 232, 0.16);
    border-radius: var(--radius-sm);
    color: var(--ink-primary);
    font-size: 0.94rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s var(--ease);
}

.form-control:focus {
    background: #FFFFFF;
    border-color: var(--brand-violet);
    box-shadow: 0 0 0 4px rgba(112, 70, 232, 0.15);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-top: 12px;
    line-height: 1.4;
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
}

.info-card {
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(112, 70, 232, 0.12), rgba(75, 140, 255, 0.14));
    border: 1px solid rgba(112, 70, 232, 0.18);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.info-card .icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--brand-violet);
}

.contact-link {
    color: var(--brand-violet);
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Timeline & Evolution Section
   ========================================================================== */
.evolution-timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-spine {
    position: absolute;
    left: 110px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-violet) 0%, var(--brand-blue) 50%, rgba(75, 140, 255, 0.2) 100%);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(112, 70, 232, 0.35);
}

.evolution-node {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 36px;
    margin-bottom: 36px;
    position: relative;
    align-items: flex-start;
}

.evolution-year-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 14px;
    position: relative;
}

.evolution-year-pill {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    border: 1.5px solid rgba(112, 70, 232, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(112, 70, 232, 0.08);
    letter-spacing: -0.01em;
}

.evolution-pulse-node {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(112, 70, 232, 0.15);
    border: 1.5px solid rgba(112, 70, 232, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 14px rgba(112, 70, 232, 0.4);
}

.evolution-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-violet);
    box-shadow: 0 0 8px var(--brand-violet);
}

.evolution-card {
    padding: 24px 28px;
    background:
        radial-gradient(circle at 95% 10%, rgba(112, 70, 232, 0.04) 0%, transparent 60%),
        rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(112, 70, 232, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px -8px rgba(28, 42, 85, 0.08), 0 4px 12px rgba(112, 70, 232, 0.05);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.evolution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -10px rgba(112, 70, 232, 0.18), 0 6px 18px rgba(112, 70, 232, 0.1);
    border-color: rgba(112, 70, 232, 0.35);
}

.evolution-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.evolution-phase-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
}

.evolution-status-dot {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-faint);
}

.evolution-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink-primary);
    margin-bottom: 8px;
}

.evolution-desc {
    font-size: 0.94rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-spine {
        left: 20px;
    }
    .evolution-node {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-left: 44px;
    }
    .evolution-year-wrap {
        justify-content: flex-start;
        position: absolute;
        left: 0;
        top: 0;
    }
    .evolution-pulse-node {
        position: absolute;
        left: 9px;
        top: 6px;
    }
    .evolution-year-pill {
        margin-left: 44px;
    }
}

.timeline {
    position: relative;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-violet), var(--brand-blue));
    opacity: 0.3;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding-bottom: 44px;
    position: relative;
}

.timeline-item .year {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-violet);
}

.timeline-item .dot {
    position: absolute;
    left: 75px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-violet);
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 10px var(--brand-violet);
}

.timeline-item h4 {
    margin-bottom: 6px;
}

.job-card {
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.job-card .tags {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.job-card .tag {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--brand-violet);
    background: rgba(112, 70, 232, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: linear-gradient(135deg, #F8F9FE 0%, #EEF2FC 100%);
    border-top: 1px solid rgba(112, 70, 232, 0.08);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-card {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
        linear-gradient(135deg, #7046E8 0%, #4B8CFF 100%);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    box-shadow: var(--shadow-lg);
}

.footer-cta-content h3 {
    color: #FFFFFF;
    margin-bottom: 6px;
}

.footer-cta-content p {
    color: rgba(255, 255, 255, 0.85);
}

.footer-cta-actions .btn-primary {
    background: #FFFFFF;
    color: var(--brand-violet);
}

/* ==========================================================================
   Modernized Footer Styles
   ========================================================================== */
.footer-assurance-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 32px;
    margin-bottom: 54px;
    background:
        radial-gradient(circle at 90% 20%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 255, 0.90) 100%);
    border: 1px solid rgba(112, 70, 232, 0.16);
}

.f-assurance-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.f-assurance-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(112, 70, 232, 0.08);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.f-assurance-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink-primary);
}

.f-assurance-item small {
    display: block;
    font-size: 0.76rem;
    color: var(--ink-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 44px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(112, 70, 232, 0.1);
}

@media (max-width: 1080px) {
    .footer-assurance-bar { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .footer-assurance-bar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-col p {
    margin: 16px 0 20px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-secondary);
}

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

.footer-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background:
        radial-gradient(circle at 90% 50%, rgba(112, 70, 232, 0.06) 0%, transparent 60%),
        rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(112, 70, 232, 0.14);
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    color: var(--ink-secondary);
    margin-bottom: 20px;
}

.status-indicator-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-glass-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(112, 70, 232, 0.14);
    display: grid;
    place-items: center;
    color: var(--brand-violet);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s var(--ease);
}

.social-glass-btn:hover {
    background: var(--brand-violet);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.social-glass-btn svg {
    width: 18px;
    height: 18px;
}

.site-footer h5 {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-violet);
    margin-bottom: 18px;
    font-weight: 700;
}

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

.footer-link-item {
    font-size: 0.92rem;
    color: var(--ink-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s var(--ease);
}

.footer-link-item:hover {
    color: var(--brand-violet);
    transform: translateX(4px);
}

.link-bullet {
    font-size: 0.7rem;
    color: var(--brand-violet);
    opacity: 0.75;
}

/* Footer Contact Card */
.footer-contact-card {
    padding: 20px;
    display: grid;
    gap: 16px;
    background:
        radial-gradient(circle at 90% 10%, rgba(112, 70, 232, 0.06) 0%, transparent 60%),
        rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(112, 70, 232, 0.14);
    border-radius: var(--radius);
}

.footer-office-block strong {
    display: block;
    font-size: 0.84rem;
    color: var(--ink-primary);
    margin-bottom: 4px;
}

.footer-office-block p {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--ink-muted);
    margin: 0;
}

.footer-direct-rows {
    padding-top: 12px;
    border-top: 1px solid rgba(112, 70, 232, 0.1);
    display: grid;
    gap: 8px;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
}

.footer-contact-row a {
    color: var(--brand-violet);
    font-weight: 600;
    transition: color 0.2s var(--ease);
}

.footer-contact-row a:hover {
    color: var(--brand-blue);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0 10px;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.84rem;
}

.footer-copy p {
    color: var(--ink-secondary);
    font-weight: 600;
    margin: 0;
}

.footer-copy small {
    display: block;
    font-size: 0.74rem;
    color: var(--ink-muted);
    margin-top: 2px;
}

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

.footer-bottom-links a {
    color: var(--ink-muted);
    font-size: 0.82rem;
    transition: color 0.2s var(--ease);
}

.footer-bottom-links a:hover {
    color: var(--brand-violet);
}

/* ==========================================================================
   Floating Quick Action Dock & Scroll-to-Top
   ========================================================================== */
.floating-dock {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 900;
}

.dock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background:
        radial-gradient(circle at 80% 50%, rgba(112, 70, 232, 0.08) 0%, transparent 60%),
        rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.dock-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 36px rgba(112, 70, 232, 0.25);
}

.dock-contact {
    padding: 10px 18px;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-violet);
}

.dock-scroll-top {
    width: 44px;
    height: 44px;
    position: relative;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.dock-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    stroke: rgba(112, 70, 232, 0.12);
}

.progress-ring-circle {
    stroke: var(--brand-violet);
    stroke-dasharray: 100.5;
    stroke-dashoffset: 100.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.15s ease-out;
}

.arrow-up {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-violet);
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Scroll Reveal & Animation Utilities
   ========================================================================== */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal.reveal-armed {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.reveal-armed.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Services Assurance Band
   ========================================================================== */
.services-assurance-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 32px;
    margin-top: 40px;
}

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

.assurance-icon {
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(112, 70, 232, 0.08);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.assurance-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink-primary);
}

.assurance-item small {
    display: block;
    font-size: 0.76rem;
    color: var(--ink-muted);
}

@media (max-width: 1080px) {
    .services-assurance-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .services-assurance-band { grid-template-columns: 1fr; }
}
