/* =========================================================
   CYBASCO — Governance · Compliance · Efficiency
   Obsidian & Gold — Premium Palette
   ========================================================= */

:root {
    /* ── Brand Colors (unchanged) ── */
    --accent-primary: #00C2FF;
    --accent-secondary: #7B5EA7;
    --gradient-primary: linear-gradient(135deg, #00C2FF, #7B5EA7);
    --gradient-hero: linear-gradient(160deg, #F0F7FF 0%, #F8FAFF 50%, #F3F0FF 100%);

    /* ── Skill-recommended: Trust & Authority palette (light) ── */
    --bg-primary: #F8FAFF;
    --bg-secondary: #EFF4FB;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.65);
    --bg-glass-strong: rgba(255, 255, 255, 0.85);

    --text-primary: #0D1117;
    --text-secondary: #374151;
    --text-muted: #6B7280;

    --border: rgba(0, 0, 0, 0.08);
    --border-accent: rgba(0, 194, 255, 0.25);

    /* ── Glassmorphism tokens (skill: backdrop-filter: blur 10-20px) ── */
    --glass-blur: blur(16px);
    --glass-blur-sm: blur(8px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* ── Motion tokens (skill: 300-400ms, GPU accelerated) ── */
    --anim-fast: 200ms;
    --anim-base: 320ms;
    --anim-slow: 600ms;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Shadows ── */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 0 1px rgba(0, 194, 255, 0.15), 0 8px 32px rgba(0, 194, 255, 0.12);
    --shadow-glow-sm: 0 0 0 3px rgba(0, 194, 255, 0.1), 0 4px 15px rgba(0, 194, 255, 0.08);

    /* ── Typography (skill: Playfair Display + Inter + JetBrains Mono) ── */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* ── Type scale ── */
    --text-hero: clamp(2.8rem, 5.5vw, 4.5rem);
    --text-h2: clamp(1.9rem, 3vw, 2.8rem);
    --text-h3: clamp(1.3rem, 2vw, 1.6rem);
    --text-body: 1rem;
    --text-small: 0.875rem;
    --text-label: 0.72rem;

    /* ── Spacing & Radius ── */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* ── Backdrop ── */
    --backdrop-blur: blur(16px);
    --backdrop-blur-sm: blur(8px);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ─── PREMIUM MOTION & UTILITY SYSTEM ─── */
/* Input focus glowing outline */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-primary) !important;
    box-shadow: var(--shadow-glow-sm) !important;
    transform: translateY(-1px);
    transition: all var(--anim-fast) var(--ease-out);
}

/* Skeleton Loading State Shimmer */
.skeleton-loading {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-glass-strong) 37%, var(--bg-secondary) 63%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
    border-radius: var(--radius-sm);
    color: transparent !important;
}

@keyframes skeleton-shimmer {
    0% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Error validation shake */
.shake-error {
    animation: shake-error-keyframes 0.5s ease-in-out;
}

@keyframes shake-error-keyframes {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-6px); }
    20%, 40%, 60%, 80% { transform: translateX(6px); }
}

/* Success state popping animation */
.success-pop {
    animation: success-pop-keyframes 0.6s var(--ease-spring);
}

@keyframes success-pop-keyframes {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Table Row slide up transition (staggered loading) */
.table-row-reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: table-row-reveal-keyframes 0.45s var(--ease-out) forwards;
}

@keyframes table-row-reveal-keyframes {
    to { opacity: 1; transform: translateY(0); }
}

/* Subtle luxury mesh texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-mesh);
    pointer-events: none;
    z-index: 0;
}

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

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

a:hover {
    color: var(--accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.005em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    margin-bottom: 1rem;
    font-family: var(--font-sans-display);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans-display);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Gold divider ornament */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.25rem 0;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prestige-gold), transparent);
}

.gold-divider span {
    color: var(--prestige-gold);
    font-size: 0.5rem;
    transform: rotate(45deg);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 194, 255, 0.15);
    border-bottom-color: var(--border-accent);
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    border: none;
    background: transparent;
    box-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--anim-base) var(--ease-out);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: var(--gradient-primary);
    color: #FFFFFF !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    font-size: 0.78rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
    color: #FFFFFF !important;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 260px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dropdown a:hover {
    background: rgba(0, 194, 255, 0.08);
    color: var(--accent-primary);
}

.dropdown a::after {
    display: none !important;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prestige-gold), transparent);
    opacity: 0.4;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-accent);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: var(--font-sans-display);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.1);
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 12px transparent;
    }
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--ivory);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-tagline {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.82rem;
    letter-spacing: 0.35em;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.45);
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
}

.btn-secondary:hover {
    background: rgba(0, 194, 255, 0.08);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ==================== SECTION ==================== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ==================== STATS ==================== */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    position: relative;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.3;
}

.stats-section::before {
    top: 0;
}

.stats-section::after {
    bottom: 0;
}

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

.stat-item {
    padding: 1rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-mono);
}

/* ==================== SERVICE CARDS ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 194, 255, 0.08);
    background: var(--bg-elevated);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-mono);
}

.service-card .card-link:hover {
    gap: 0.85rem;
    color: var(--accent-hover);
}

/* ==================== FEATURE GRID ==================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    border-left: 2px solid var(--border-accent);
}

.feature-item h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==================== SPLIT SECTION ==================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse>* {
    direction: ltr;
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-visual .visual-glow {
    /* ADD or REPLACE existing */
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.2) 0%, rgba(123, 94, 167, 0.1) 40%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 0;
}

.split-visual .visual-icon {
    font-size: 6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
}

.split-visual .visual-logo {
    width: 70%;
    max-width: 320px;
    z-index: 1;
    filter: drop-shadow(0 10px 40px rgba(201, 168, 76, 0.2));
    position: relative;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* ==================== LIST CHECKED ==================== */
.list-checked {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.list-checked li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-secondary);
}

.list-checked li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Diamond bullet */
.list-diamond {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.list-diamond li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-secondary);
}

.list-diamond li::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    transform: rotate(45deg);
}

/* ==================== INDUSTRIES ==================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.industry-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    background: var(--bg-elevated);
}

.industry-item i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.industry-item h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-primary);
    font-family: var(--font-sans-display);
}

/* ==================== PROCESS ==================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 2.25rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    counter-increment: step;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--border-accent);
    background: var(--bg-elevated);
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    font-style: italic;
}

.process-step h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--graphite) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.cta-section>* {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    max-width: 720px;
    margin: 0 auto 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prestige-gold), transparent);
    opacity: 0.4;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--ivory);
}

.page-header h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.page-header p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--accent-primary);
}

.breadcrumbs .sep {
    color: var(--prestige-gold);
}

/* ==================== SERVICE DETAIL ==================== */
.service-hero {
    padding: 10rem 0 5rem;
    background: var(--gradient-hero);
    position: relative;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 194, 255, 0.08);
    border: 1px solid var(--border-accent);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.service-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    margin-bottom: 1.5rem;
    color: var(--ivory);
}

.service-hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.service-icon-large {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-glow), transparent 70%);
}

.service-icon-large i {
    font-size: 6rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
}

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

.offering-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.offering-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-elevated);
    transform: translateY(-4px);
}

.offering-card .offering-number {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--prestige-gold);
    margin-bottom: 1rem;
    display: block;
}

.offering-card h4 {
    color: var(--ivory);
    margin-bottom: 0.75rem;
}

.offering-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Frameworks / Standards tags */
.frameworks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.framework-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 194, 255, 0.06);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-info .info-item:last-child {
    border-bottom: none;
}

.contact-info .info-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.contact-info .info-value {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-info .info-value a {
    color: var(--text-primary);
}

.contact-info .info-value a:hover {
    color: var(--accent-primary);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-success {
    display: none;
    padding: 1rem;
    background: rgba(143, 191, 110, 0.1);
    border: 1px solid var(--success);
    border-radius: var(--radius-sm);
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success.show {
    display: block;
}

/* ==================== BLOG ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.2rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--anim-base) var(--ease-out);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    border-color: var(--accent-primary);
}

.blog-card-image {
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 3.5rem;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--anim-slow) var(--ease-out);
}

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

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-card-category {
    font-size: var(--text-label);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.12em;
    font-family: var(--font-mono);
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0;
    line-height: 1.3;
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto; /* Push metadata to the bottom! */
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.blog-card-author {
    font-weight: 500;
    color: var(--text-secondary);
}

.blog-card-badge {
    background: rgba(0, 194, 255, 0.1);
    color: var(--accent-primary);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==================== VALUES ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.value-card {
    padding: 2.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-elevated);
    transform: translateY(-4px);
}

.value-card i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    color: var(--ivory);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-accent);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    font-family: var(--font-mono);
    font-weight: 500;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

.footer-col ul a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom .tagline {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-primary);
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(180deg, var(--bg-elevated), var(--bg-card));
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.pricing-card h4 {
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.pricing-card .price small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {

    .split-section,
    .contact-grid,
    .footer-grid,
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .service-icon-large {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--border-accent);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: block;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0 0 0 1rem;
        box-shadow: none;
    }

    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .section {
        padding: 4rem 0;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }
}

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

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

.animate-in {
    animation: fadeInUp 0.7s ease forwards;
}

/* ==================== WHATSAPP WIDGET ==================== */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    /* Changed from right to left! */
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 32px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    left: 0;
    /* Changed from right to left! */
    background: var(--bg-elevated);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    /* Changed from right to left! */
    width: 16px;
    height: 16px;
    background: var(--bg-elevated);
    transform: rotate(45deg);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 16px;
        left: 16px;
        /* Keep on left! */
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-btn i {
        font-size: 28px;
    }
}

/* ===== FLOATING ORBS ===== */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    will-change: transform;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.18) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 94, 167, 0.15) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.10) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, 30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 50px) scale(0.95);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 40px) scale(1.08);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -30px);
    }
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    position: relative;
}

.process-step {
    position: relative;
    overflow: visible;
}

.process-number {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    position: absolute;
    top: -1rem;
    right: 1rem;
    line-height: 1;
    transition: opacity 0.3s;
}

.process-step:hover .process-number {
    opacity: 0.6;
}

.process-connector {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 2px;
    height: 0;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    z-index: 2;
}

/* ===== STATS SECTION ENHANCEMENTS ===== */
.stats-section {
    overflow: hidden;
}

.stat-item {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.4), rgba(123, 94, 167, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

/* ===== SERVICE CARD ENHANCEMENTS ===== */
.service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-icon {
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

/* ===== INDUSTRY ITEM ENHANCEMENTS ===== */
.industry-item {
    cursor: default;
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.industry-item:hover::before {
    opacity: 0.08;
}

.industry-item i,
.industry-item h4 {
    position: relative;
    z-index: 1;
}

.industry-item:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: var(--accent-primary);
}

/* ===== CTA SECTION PULSE ===== */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
    animation: ctaPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button {
        cursor: none;
    }

    .cursor-dot {
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--accent-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease, width 0.2s, height 0.2s;
        will-change: transform;
    }

    .cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(0, 194, 255, 0.6);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        will-change: transform;
    }

    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring {
        width: 56px;
        height: 56px;
        border-color: rgba(0, 194, 255, 0.9);
        background: rgba(0, 194, 255, 0.06);
    }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(0, 194, 255, 0.6);
}

/* ============================================================
   CYBASCO — NEXT LEVEL STYLES
   Skill: Glassmorphism + Motion-Driven + Trust & Authority
   ============================================================ */

/* ── Lenis ── */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* ── Scroll Progress ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    animation: shimmerBar 2s linear infinite;
    z-index: 99999;
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.6);
    pointer-events: none;
    transition: width 0.08s linear;
}

@keyframes shimmerBar {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── Custom Cursor (skill: pointer: fine only) ── */
@media (pointer: fine) {

    *,
    body,
    a,
    button {
        cursor: none !important;
    }

    .cursor-dot {
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--accent-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        will-change: left, top;
        mix-blend-mode: multiply;
    }

    .cursor-ring {
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1.5px solid rgba(0, 194, 255, 0.45);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transform: translate(-50%, -50%);
        will-change: left, top;
        transition: width var(--anim-base) var(--ease-out),
            height var(--anim-base) var(--ease-out),
            border-color var(--anim-base) var(--ease-out),
            background var(--anim-base) var(--ease-out);
    }

    .cursor-ring.expanded {
        width: 60px;
        height: 60px;
        border-color: var(--accent-primary);
        background: rgba(0, 194, 255, 0.05);
    }

    .cursor-ring.clicking {
        width: 30px;
        height: 30px;
        border-color: var(--accent-secondary);
        background: rgba(123, 94, 167, 0.1);
    }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 7rem 0 5rem;
    background: var(--gradient-hero);
}

/* WebGL canvas */
#hero-webgl {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Orbs — glassmorphism vibrant BG layer */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.13) 0%, transparent 65%);
    top: -250px;
    left: -250px;
    filter: blur(60px);
    animation: orbFloat1 18s ease-in-out infinite;
}

.orb-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(123, 94, 167, 0.11) 0%, transparent 65%);
    bottom: -150px;
    right: -200px;
    filter: blur(70px);
    animation: orbFloat2 22s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.07) 0%, transparent 70%);
    top: 35%;
    left: 40%;
    filter: blur(80px);
    animation: orbFloat3 14s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, 40px) scale(1.06);
    }

    66% {
        transform: translate(-30px, 65px) scale(0.94);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-45px, 55px) scale(1.09);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(28px, -38px);
    }
}

/* Hero layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Ticker */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.65rem 0;
    background: rgba(0, 194, 255, 0.05);
    border-top: 1px solid rgba(0, 194, 255, 0.12);
    overflow: hidden;
    z-index: 3;
}

.ticker-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: tickerMove 28s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ticker-track .sep {
    color: var(--accent-primary);
    opacity: 0.5;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: var(--text-label);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.5);
    animation: dotRipple 2s ease-out infinite;
}

@keyframes dotRipple {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 194, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 194, 255, 0);
    }
}

/* Headline */
.hero-headline {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.headline-gradient {
    display: block;
    background: var(--gradient-primary);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 5s ease infinite;
}

@keyframes gradShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero subtitle */
.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Ghost button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all var(--anim-base) var(--ease-out);
    /* Skill: use transform only, not left/top */
    will-change: transform;
}

.btn-ghost:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(0, 194, 255, 0.06);
    transform: translateY(-1px);
}

/* Trust badges */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    /* Skill: Glassmorphism — backdrop-filter blur, translucent border */
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    box-shadow: var(--glass-shadow);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    transition: transform var(--anim-fast) var(--ease-out);
}

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

.trust-badge i {
    color: var(--accent-primary);
    font-size: 0.7rem;
}

/* Hero visual */
.hero-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ring-outer {
    width: 440px;
    height: 440px;
    border: 1px solid rgba(0, 194, 255, 0.12);
    animation: ringRotate 35s linear infinite;
}

.ring-inner {
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(123, 94, 167, 0.18);
    animation: ringRotate 20s linear infinite reverse;
}

.ring-dot-track {
    width: 390px;
    height: 390px;
    border: none;
    background: transparent;
    animation: ringRotate 25s linear infinite;
    /* Dot on ring */
}

.ring-dot-track::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 12px var(--accent-primary);
    transform: translateX(-50%);
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-visual-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 35px rgba(0, 194, 255, 0.3));
    animation: heroImgFloat 7s ease-in-out infinite;
    will-change: transform;
}

@keyframes heroImgFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-16px) rotateY(3deg);
    }
}

/* Floating chips — glassmorphism */
.hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: var(--bg-glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-pill);
    box-shadow: var(--glass-shadow);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    white-space: nowrap;
    z-index: 5;
    will-change: transform;
}

.hero-chip i {
    color: var(--accent-primary);
}

.chip-1 {
    top: 12%;
    right: -10px;
    animation: chipBob1 7s ease-in-out infinite;
}

.chip-2 {
    bottom: 20%;
    left: -20px;
    animation: chipBob2 9s ease-in-out infinite;
}

.chip-3 {
    top: 58%;
    right: -15px;
    animation: chipBob3 6s ease-in-out infinite;
}

@keyframes chipBob1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes chipBob2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(12px)
    }
}

@keyframes chipBob3 {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-8px)
    }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 4;
    animation: hintBob 2.5s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: linePulse 2.5s ease-in-out infinite;
}

@keyframes hintBob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(7px)
    }
}

@keyframes linePulse {

    0%,
    100% {
        opacity: 0.3
    }

    50% {
        opacity: 1
    }
}

/* ═══════════════════════════════════════
   PROCESS SCROLLYTELLING
   Skill: 3-5 parallax layers, scroll-driven
═══════════════════════════════════════ */
.process-scroll-section {
    padding: 0;
}

.process-sticky-wrap {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 400vh;
    position: relative;
}

.process-sticky-left {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    z-index: 2;
}

.process-main-heading {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    margin: 0.75rem 0 1rem;
    color: var(--text-primary);
}

.process-subhead {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Step tracker */
.process-track {
    position: relative;
}

.process-track-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0%;
    background: var(--gradient-primary);
    transition: height 0.4s var(--ease-out);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 194, 255, 0.4);
}

.process-track-steps {
    padding-left: 1.5rem;
    border-left: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-step {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--anim-base) var(--ease-out),
        transform var(--anim-base) var(--ease-out);
    cursor: default;
}

.track-step.active {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* Right scroll panels */
.process-sticky-right {
    position: relative;
}

.process-panel {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    border-bottom: 1px solid var(--border);
    opacity: 0.18;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
    will-change: transform, opacity;
}

.process-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.process-panel-num {
    font-family: var(--font-mono);
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -0.75rem;
}

.process-panel-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    /* Skill: use transform only for animations */
    will-change: transform;
}

.process-panel h3 {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.process-checklist {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.process-checklist i {
    color: var(--accent-primary);
    font-size: 0.72rem;
}

/* ═══════════════════════════════════════
   INDUSTRIES MARQUEE
═══════════════════════════════════════ */
.industries-marquee-outer {
    overflow: hidden;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.industries-marquee {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: marqueeRoll 30s linear infinite;
    will-change: transform;
}

.industries-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeRoll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ind-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 2rem 2.25rem;
    min-width: 195px;
    /* Skill: glassmorphism card */
    background: var(--bg-glass-strong);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform var(--anim-base) var(--ease-spring),
        box-shadow var(--anim-base) var(--ease-out),
        border-color var(--anim-base) var(--ease-out);
    will-change: transform;
    cursor: default;
}

.ind-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-accent);
}

.ind-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--anim-base) var(--ease-spring);
}

.ind-card:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.ind-card h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-primary);
}

.ind-card span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════
   SERVICE CARDS — glassmorphism upgrade
═══════════════════════════════════════ */
.service-card {
    background: var(--bg-glass-strong);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transform-style: preserve-3d;
    transition: transform var(--anim-slow) var(--ease-out),
        box-shadow var(--anim-slow) var(--ease-out),
        border-color var(--anim-base) var(--ease-out);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-14px) rotateX(4deg);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    border-color: var(--border-accent);
}

.service-icon {
    transition: transform var(--anim-base) var(--ease-spring);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-6deg);
}

/* ═══════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════ */
.stat-item {
    transition: transform var(--anim-base) var(--ease-out),
        box-shadow var(--anim-base) var(--ease-out);
    will-change: transform;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

/* ═══════════════════════════════════════
   PAGE HEADERS (inner pages)
═══════════════════════════════════════ */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 194, 255, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 90%, rgba(123, 94, 167, 0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   VALUE CARDS
═══════════════════════════════════════ */
.value-card {
    position: relative;
    overflow: hidden;
    transition: transform var(--anim-base) var(--ease-out),
        box-shadow var(--anim-base) var(--ease-out);
    will-change: transform;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.06), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s var(--ease-out);
}

.value-card:hover::after {
    left: 150%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.info-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--anim-base) var(--ease-out),
        box-shadow var(--anim-base) var(--ease-out);
    will-change: transform;
}

.info-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease-out);
}

.info-item:hover::after {
    left: 150%;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.10);
    outline: none;
    transition: all var(--anim-base) var(--ease-out);
}

/* ═══════════════════════════════════════
   FILTER PILLS
═══════════════════════════════════════ */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    padding: 1.1rem;
    background: var(--bg-glass-strong);
    backdrop-filter: var(--glass-blur-sm);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
}

.filter-pill {
    transition: transform var(--anim-fast) var(--ease-spring),
        box-shadow var(--anim-fast) var(--ease-out);
    will-change: transform;
}

.filter-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-sm);
}

.filter-pill.active {
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.25);
}

/* ═══════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════ */
.blog-card {
    transition: transform var(--anim-base) var(--ease-out),
        box-shadow var(--anim-base) var(--ease-out);
    will-change: transform;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

/* ═══════════════════════════════════════
   CTA SECTIONS
═══════════════════════════════════════ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.07) 0%, transparent 70%);
    animation: ctaBreathe 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaBreathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════
   WHATSAPP WIDGET
═══════════════════════════════════════ */
.whatsapp-widget {
    animation: waBounce 0.8s var(--ease-spring) 2.5s both;
    will-change: transform;
}

@keyframes waBounce {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }

    70% {
        transform: scale(1.15) translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════
   ABOUT PAGE VISUAL BOX
═══════════════════════════════════════ */
.about-visual-box {
    background: var(--bg-glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--glass-shadow), var(--shadow-glow-sm);
    position: relative;
    overflow: hidden;
}

.about-visual-box>img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.about-stat-row {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.about-big-num {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-stat-row small {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════
   SKILL REQUIREMENT: prefers-reduced-motion
   Severity: HIGH — must implement
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    .orb,
    .ticker-track,
    .industries-marquee,
    .hero-visual-img,
    .hero-chip,
    .eyebrow-dot,
    .hero-ring,
    .ring-dot-track,
    .scroll-line,
    .hero-scroll-hint,
    .whatsapp-widget,
    .cta-section::before {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .lenis.lenis-smooth {
        scroll-behavior: smooth;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual-wrap {
        display: none;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .process-sticky-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .process-sticky-left {
        position: relative;
        height: auto;
        padding: 3rem 1.5rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .process-panel {
        height: auto;
        opacity: 1;
        transform: none;
        padding: 2.5rem 1.5rem;
    }

    .hero-ticker {
        display: none;
    }
}

/* ── Service Hero Image Styles ── */
.service-hero-img {
    width: 100%;
    max-width: 360px;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(0, 194, 255, 0.28));
    animation: heroImgFloat 7s ease-in-out infinite;
    will-change: transform;
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVENESS OVERRIDES (< 576px)
   Elevates small device layouts (iPhone/Android)
═══════════════════════════════════════ */
@media (max-width: 576px) {
    /* Container Padding Squeeze */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Compacting Paddings */
    .section {
        padding: 2.5rem 0 !important;
    }

    .hero {
        padding: 5.5rem 0 2rem !important;
    }

    /* Grid layout overrides (Force 1 Column on small screens to prevent overflow) */
    .blog-grid,
    .products-grid,
    .values-grid,
    .service-grid,
    .footer-grid,
    .contact-grid,
    .offering-grid,
    .process-grid,
    .about-stat-row,
    .cs-at-a-glance-grid,
    .share-buttons-grid,
    .related-grid,
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Hero Typography Rescale */
    .hero-headline,
    h1 {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
    }

    h2 {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    /* Layout Adaptations */
    .hero-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Floating Widgets Collisions Prevention */
    .whatsapp-widget {
        bottom: 82px !important; /* Move WhatsApp button up on mobile to avoid overlapping floating cart widget! */
    }

    /* Filters Stack Better */
    .filter-pills {
        padding: 0.75rem !important;
        gap: 0.4rem !important;
        justify-content: center !important;
    }

    .filter-pill {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.8rem !important;
    }

    /* Details layouts */
    .product-grid,
    .service-hero-grid,
    .article-layout-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Hide redundant decorative or oversized assets on mobile */
    .orb,
    .hero-scroll-hint {
        display: none !important;
    }

    /* Full-screen menu enhancements */
    .nav-menu.active {
        height: 100vh !important;
        overflow-y: auto !important;
    }
}

/* ═══════════════════════════════════════
   ELITE HORIZONTAL FOOTER CONTACT LINEUP (Desktop)
═══════════════════════════════════════ */
@media (min-width: 993px) {
    /* Restore footer columns grid (4 columns: Brand, Company, Store, Services) */
    .footer-grid {
        display: grid !important;
        grid-template-columns: 2fr repeat(3, 1fr) !important;
        gap: 3rem !important;
    }
    
    .footer-brand {
        display: block !important;
    }
    
    .footer-brand p {
        display: block !important; /* Restore brand details */
    }
    
    .footer-col {
        display: block !important;
    }
    
    .footer-col h4 {
        display: block !important; /* Restore column headers */
    }
    
    .footer-col ul {
        display: block !important;
    }
    
    .footer-col ul li {
        margin-bottom: 0.75rem !important;
    }
    
    /* Make the Contact section (last column with mailto) span full-width horizontally at the bottom */
    .footer-col:has(a[href^="mailto:"]) {
        grid-column: 1 / -1 !important;
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid var(--border) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 2rem !important;
    }
    
    .footer-col:has(a[href^="mailto:"]) h4 {
        margin-bottom: 0 !important;
        font-size: 0.85rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        color: var(--accent-primary) !important;
        font-family: var(--font-mono) !important;
    }
    
    .footer-col:has(a[href^="mailto:"]) ul {
        display: flex !important;
        align-items: center !important;
        gap: 2rem !important;
        margin: 0 !important;
        flex-wrap: wrap !important;
    }
    
    .footer-col:has(a[href^="mailto:"]) ul li {
        margin-bottom: 0 !important;
        font-size: 0.9rem !important;
    }
}

/* ═══════════════════════════════════════
   CONSULTATION MOBILE FILTERS TOGGLE DROPDOWN
═══════════════════════════════════════ */
.filters-panel {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.mobile-filter-toggle-btn {
    display: none; /* Hidden on desktop */
}

.filters-dropdown-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    flex: 2;
}

@media (max-width: 768px) {
    .filters-panel {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        gap: 0.75rem !important;
        padding: 0.85rem !important;
    }
    
    .mobile-filter-toggle-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        padding: 0.85rem 1rem !important;
        background: var(--bg-primary) !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius-sm) !important;
        cursor: pointer !important;
        color: var(--text-primary) !important;
        font-size: 0.95rem !important;
        transition: all var(--anim-fast) var(--ease-out) !important;
    }
    
    .mobile-filter-toggle-btn:hover {
        background: var(--bg-secondary) !important;
        border-color: var(--accent-primary) !important;
    }
    
    .filters-dropdown-group {
        display: none !important; /* Collapsed on mobile */
        grid-column: span 2 !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
        padding-top: 0.75rem !important;
        border-top: 1px solid var(--border) !important;
        width: 100% !important;
    }
    
    .filters-dropdown-group.show {
        display: flex !important; /* Open toggle state */
    }
    
    .filters-dropdown-group select {
        width: 100% !important;
        min-width: unset !important;
    }
}
