/* ============================================================
   DECIPHER CONSULTANCY - THEME CSS (2026 Redesign)
   Foundation: Bootstrap 5.3.3 + Custom Design System
   ============================================================ */

/* ---- CSS VARIABLES / DESIGN TOKENS ---- */
:root {
    /* Primary Palette */
    --dcs-primary: #1a1a5e;
    --dcs-primary-light: #2a2a7e;
    --dcs-primary-dark: #0e0e3a;

    /* Accent - Electric Blue */
    --dcs-accent: #2584f4;
    --dcs-accent-light: #4a9df7;
    --dcs-accent-dark: #1a6dd4;

    /* Gradient */
    --dcs-gradient: linear-gradient(135deg, #2584f4 0%, #00c4e0 100%);
    --dcs-gradient-hover: linear-gradient(135deg, #1a6dd4 0%, #00a8c4 100%);
    --dcs-gradient-ai: linear-gradient(135deg, #ef5523 0%, #f7941e 100%);
    --dcs-gradient-dark: linear-gradient(135deg, #0c1842 0%, #1a1a5e 100%);
    --dcs-gradient-hero: linear-gradient(160deg, rgba(37, 132, 244, 0.06) 0%, rgba(0, 196, 224, 0.06) 50%, rgba(239, 85, 35, 0.04) 100%);

    /* AI Accent - Orange */
    --dcs-ai: #ef5523;
    --dcs-ai-light: #f7941e;
    --dcs-ai-glow: rgba(239, 85, 35, 0.15);

    /* Neutrals */
    --dcs-dark: #0c1842;
    --dcs-text: #1a2d3d;
    --dcs-text-muted: #6b7b8d;
    --dcs-text-light: #94a3b8;
    --dcs-border: #e2e8f0;
    --dcs-border-light: #f1f5f9;

    /* Backgrounds */
    --dcs-bg: #ffffff;
    --dcs-bg-soft: #f7f9fc;
    --dcs-bg-muted: #f1f5f9;
    --dcs-bg-dark: #0c1842;
    --dcs-bg-dark-2: #091230;
    --dcs-bg-card: #ffffff;

    /* Glass */
    --dcs-glass-bg: rgba(255, 255, 255, 0.82);
    --dcs-glass-border: rgba(255, 255, 255, 0.25);
    --dcs-glass-shadow: 0 8px 32px rgba(12, 24, 66, 0.08);

    /* Typography */
    --dcs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --dcs-font-display: 'Inter', sans-serif;

    /* Sizing */
    --dcs-radius-sm: 8px;
    --dcs-radius: 12px;
    --dcs-radius-lg: 16px;
    --dcs-radius-xl: 24px;
    --dcs-radius-pill: 100px;

    /* Shadows */
    --dcs-shadow-sm: 0 1px 3px rgba(12, 24, 66, 0.06);
    --dcs-shadow: 0 4px 16px rgba(12, 24, 66, 0.08);
    --dcs-shadow-lg: 0 12px 40px rgba(12, 24, 66, 0.12);
    --dcs-shadow-xl: 0 24px 64px rgba(12, 24, 66, 0.16);
    --dcs-shadow-glow: 0 8px 32px rgba(37, 132, 244, 0.2);

    /* Transitions */
    --dcs-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dcs-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Navbar */
    --dcs-nav-height: 72px;
    --dcs-nav-top: 16px;
}


/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--dcs-font);
    color: var(--dcs-text);
    background: var(--dcs-bg);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--dcs-accent);
    text-decoration: none;
    transition: color var(--dcs-transition);
}
a:hover {
    color: var(--dcs-accent-dark);
}


/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--dcs-font-display);
    font-weight: 700;
    color: var(--dcs-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dcs-accent); }

p {
    color: var(--dcs-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--dcs-text-muted);
    line-height: 1.8;
}


/* ---- SECTION UTILITIES ---- */
.section {
    padding: 100px 0;
}
.section-sm {
    padding: 60px 0;
}
.section-lg {
    padding: 140px 0;
}

.section-dark {
    background: var(--dcs-bg-dark);
    color: #fff;
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
    color: #fff;
}
.section-dark p,
.section-dark .lead {
    color: rgba(255, 255, 255, 0.7);
}

.section-soft {
    background: var(--dcs-bg-soft);
}

.section-header {
    max-width: 680px;
    margin-bottom: 56px;
}
.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-header h6 {
    margin-bottom: 12px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-header p {
    margin-bottom: 0;
}


/* ---- BUTTONS ---- */
.btn {
    font-family: var(--dcs-font);
    font-weight: 600;
    font-size: 0.938rem;
    padding: 12px 28px;
    border-radius: var(--dcs-radius-pill);
    transition: all var(--dcs-transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0;
}

.btn-primary {
    background: var(--dcs-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(37, 132, 244, 0.3);
}
.btn-primary:hover {
    background: var(--dcs-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 132, 244, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--dcs-dark);
    border-color: var(--dcs-border);
}
.btn-outline:hover {
    border-color: var(--dcs-accent);
    color: var(--dcs-accent);
    transform: translateY(-2px);
}

.btn-ai {
    background: var(--dcs-gradient-ai);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(239, 85, 35, 0.3);
}
.btn-ai:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 85, 35, 0.4);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--dcs-dark);
    border-color: transparent;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--dcs-shadow-lg);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8125rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


/* ---- CARDS ---- */
.dcs-card {
    background: var(--dcs-bg-card);
    border: 1px solid var(--dcs-border-light);
    border-radius: var(--dcs-radius-lg);
    padding: 32px;
    transition: all var(--dcs-transition);
    position: relative;
    overflow: hidden;
}
.dcs-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dcs-shadow-lg);
    border-color: transparent;
}

.dcs-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--dcs-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: var(--dcs-bg-soft);
    color: var(--dcs-accent);
}

.dcs-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dcs-dark);
}

.dcs-card .card-text {
    color: var(--dcs-text-muted);
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.dcs-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dcs-accent);
    margin-top: 16px;
    transition: gap var(--dcs-transition);
}
.dcs-card-link:hover {
    gap: 12px;
    color: var(--dcs-accent-dark);
}

/* AI Card variant */
.dcs-card-ai {
    border: 1px solid rgba(239, 85, 35, 0.15);
    background: linear-gradient(135deg, rgba(239, 85, 35, 0.03) 0%, rgba(247, 148, 30, 0.03) 100%);
}
.dcs-card-ai:hover {
    border-color: rgba(239, 85, 35, 0.3);
    box-shadow: 0 12px 40px rgba(239, 85, 35, 0.1);
}
.dcs-card-ai .dcs-card-icon {
    background: rgba(239, 85, 35, 0.1);
    color: var(--dcs-ai);
}


/* Dark Card — for use inside dark/particle sections */
.dcs-card-dark {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--dcs-radius-lg);
    padding: 32px;
    transition: all var(--dcs-transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.dcs-card-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.dcs-card-dark .card-title {
    color: #fff;
}
.dcs-card-dark .card-text {
    color: rgba(255, 255, 255, 0.6);
}
.dcs-card-dark .dcs-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--dcs-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}


/* ---- NAVBAR (Glassmorphic Floating) ---- */
.dcs-navbar {
    position: fixed;
    top: var(--dcs-nav-top);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1320px;
    height: var(--dcs-nav-height);
    z-index: 9999;
    background: var(--dcs-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--dcs-glass-border);
    border-radius: var(--dcs-radius-xl);
    box-shadow: var(--dcs-glass-shadow);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--dcs-transition);
}

.dcs-navbar.scrolled {
    top: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(12, 24, 66, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}

.dcs-navbar .nav-logo img {
    height: 36px;
    width: auto;
    transition: height var(--dcs-transition);
}

.dcs-navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dcs-navbar .nav-item {
    position: relative;
}

.dcs-navbar .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dcs-text);
    padding: 8px 16px;
    border-radius: var(--dcs-radius-sm);
    transition: all var(--dcs-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.dcs-navbar .nav-link:hover {
    color: var(--dcs-accent);
    background: rgba(37, 132, 244, 0.06);
}

.dcs-navbar .nav-link .dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--dcs-transition);
}

.dcs-navbar .nav-cta {
    margin-left: 8px;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid var(--dcs-border-light);
    border-radius: var(--dcs-radius-lg);
    box-shadow: var(--dcs-shadow-xl);
    padding: 24px;
    min-width: 520px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--dcs-transition);
    z-index: 100;
}
.nav-item:hover .mega-menu,
.nav-item.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mega-menu-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: var(--dcs-radius-sm);
    transition: background var(--dcs-transition);
    text-decoration: none;
    color: inherit;
}
.mega-menu-item:hover {
    background: var(--dcs-bg-soft);
    color: inherit;
}
.mega-menu-item .mm-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--dcs-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
    background: var(--dcs-bg-soft);
    color: var(--dcs-accent);
}
.mega-menu-item .mm-text h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dcs-dark);
    margin: 0 0 2px;
    letter-spacing: 0;
    text-transform: none;
}
.mega-menu-item .mm-text p {
    font-size: 0.8125rem;
    color: var(--dcs-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* AI mega menu variant */
.mega-menu-item.ai-item .mm-icon {
    background: rgba(239, 85, 35, 0.1);
    color: var(--dcs-ai);
}

/* Dropdown (simple) */
.dropdown-menu-simple {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    border: 1px solid var(--dcs-border-light);
    border-radius: var(--dcs-radius);
    box-shadow: var(--dcs-shadow-lg);
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--dcs-transition);
    z-index: 100;
}
.nav-item:hover .dropdown-menu-simple {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu-simple a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--dcs-text);
    border-radius: var(--dcs-radius-sm);
    transition: background var(--dcs-transition);
    text-decoration: none;
}
.dropdown-menu-simple a:hover {
    background: var(--dcs-bg-soft);
    color: var(--dcs-accent);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dcs-dark);
    border-radius: 2px;
    transition: all var(--dcs-transition);
    position: absolute;
    left: 8px;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 24, 66, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--dcs-transition);
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 24px;
    overflow-y: auto;
    transition: right var(--dcs-transition-slow);
}
.mobile-nav.active {
    right: 0;
}

.mobile-nav .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--dcs-border-light);
}
.mobile-nav .mobile-nav-header img {
    height: 32px;
}
.mobile-nav-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--dcs-bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--dcs-text);
    transition: all var(--dcs-transition);
}
.mobile-nav-close:hover {
    background: var(--dcs-accent);
    color: #fff;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-menu > li {
    border-bottom: 1px solid var(--dcs-border-light);
}
.mobile-nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--dcs-dark);
    text-decoration: none;
}
.mobile-nav-menu .mobile-submenu {
    list-style: none;
    padding: 0 0 12px 16px;
    margin: 0;
    display: none;
}
.mobile-nav-menu .mobile-submenu.open {
    display: block;
}
.mobile-nav-menu .mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--dcs-text-muted);
    text-decoration: none;
}
.mobile-nav-menu .mobile-submenu a:hover {
    color: var(--dcs-accent);
}


/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--dcs-gradient-hero);
}

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

.hero h1 {
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dcs-dark);
}
.hero h1 .gradient-text {
    background: var(--dcs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 .ai-text {
    background: var(--dcs-gradient-ai);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .lead {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Typing effect */
.typing-wrapper {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--dcs-accent);
    margin-bottom: 24px;
    min-height: 2em;
}
.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--dcs-accent);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero floating shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(60px);
}
.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(37, 132, 244, 0.12);
    top: -10%;
    right: -5%;
    animation: float1 10s ease-in-out infinite;
}
.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 196, 224, 0.1);
    bottom: 10%;
    left: -5%;
    animation: float2 12s ease-in-out infinite;
}
.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(239, 85, 35, 0.08);
    top: 30%;
    right: 20%;
    animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.05); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.08); }
}
@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(0.95); }
}

/* Social proof strip */
.hero-proof {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-proof-item .proof-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dcs-dark);
    line-height: 1;
}
.hero-proof-item .proof-label {
    font-size: 0.8125rem;
    color: var(--dcs-text-muted);
    line-height: 1.3;
}
.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--dcs-border);
}


/* ---- CLIENT LOGOS (Marquee) ---- */
.logo-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--dcs-bg) 0%, transparent 100%);
}
.logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--dcs-bg) 0%, transparent 100%);
}
.section-soft .logo-marquee::before {
    background: linear-gradient(90deg, var(--dcs-bg-soft) 0%, transparent 100%);
}
.section-soft .logo-marquee::after {
    background: linear-gradient(270deg, var(--dcs-bg-soft) 0%, transparent 100%);
}

.logo-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.logo-track img {
    height: 46px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--dcs-transition);
}
.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ---- STATS / NUMBERS ---- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item {
    text-align: center;
    padding: 24px 16px;
}
.stat-number {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    background: var(--dcs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--dcs-text-muted);
    line-height: 1.4;
}
.section-dark .stat-number {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.6);
}


/* ---- HOW WE WORK / STEPS ---- */
.step-card {
    position: relative;
    padding: 32px;
    border-radius: var(--dcs-radius-lg);
    background: var(--dcs-bg-card);
    border: 1px solid var(--dcs-border-light);
    transition: all var(--dcs-transition);
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dcs-shadow);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dcs-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 20px;
}
.step-card h4 {
    margin-bottom: 12px;
}


/* ---- TESTIMONIALS ---- */
.testimonial-card {
    background: var(--dcs-bg-card);
    border: 1px solid var(--dcs-border-light);
    border-radius: var(--dcs-radius-lg);
    padding: 32px;
    transition: all var(--dcs-transition);
}
.testimonial-card:hover {
    box-shadow: var(--dcs-shadow);
}
.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--dcs-accent);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}
.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dcs-text);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author .author-name {
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--dcs-dark);
    margin: 0;
}
.testimonial-author .author-role {
    font-size: 0.8125rem;
    color: var(--dcs-text-muted);
    margin: 0;
}


/* ---- CTA BANNER ---- */
.cta-banner {
    background: var(--dcs-gradient-dark);
    border-radius: var(--dcs-radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(37, 132, 244, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}
.cta-banner h2 {
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 32px;
    position: relative;
}
.cta-banner .btn {
    position: relative;
}


/* ---- FOOTER ---- */
.dcs-footer {
    background: var(--dcs-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.dcs-footer .footer-logo img {
    height: 36px;
    margin-bottom: 16px;
}
.dcs-footer .footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dcs-footer .footer-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.dcs-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dcs-footer .footer-links li {
    margin-bottom: 10px;
}
.dcs-footer .footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all var(--dcs-transition);
}
.dcs-footer .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.dcs-footer .footer-social {
    display: flex;
    gap: 12px;
}
.dcs-footer .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--dcs-transition);
    text-decoration: none;
}
.dcs-footer .footer-social a:hover {
    background: var(--dcs-accent);
    color: #fff;
    transform: translateY(-2px);
}

.dcs-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.dcs-footer .footer-bottom span,
.dcs-footer .footer-bottom a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}
.dcs-footer .footer-bottom a {
    text-decoration: none;
    transition: color var(--dcs-transition);
}
.dcs-footer .footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.7);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* Footer certifications */
.footer-certs {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
}
.footer-certs img {
    height: 40px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity var(--dcs-transition);
}
.footer-certs img:hover {
    opacity: 1;
}


/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--dcs-transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: #fff;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}


/* ---- COOKIE BANNER (updated) ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dcs-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 9999;
    font-size: 0.875rem;
    transform: translateY(100%);
    transition: transform var(--dcs-transition-slow);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner a {
    color: var(--dcs-accent-light);
}


/* ---- INDUSTRY CARD ---- */
.industry-card {
    position: relative;
    border-radius: var(--dcs-radius-lg);
    overflow: hidden;
    height: 280px;
    display: block;
    text-decoration: none;
}
.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dcs-transition-slow);
}
.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 24, 66, 0.85) 0%, rgba(12, 24, 66, 0.1) 60%);
    transition: all var(--dcs-transition);
}
.industry-card:hover img {
    transform: scale(1.05);
}
.industry-card:hover::after {
    background: linear-gradient(to top, rgba(12, 24, 66, 0.9) 0%, rgba(12, 24, 66, 0.3) 60%);
}
.industry-card .industry-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
}


/* ---- TECH STACK GRID ---- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 16px;
}
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    border-radius: var(--dcs-radius);
    border: 1px solid var(--dcs-border-light);
    transition: all var(--dcs-transition);
}
.tech-item:hover {
    border-color: var(--dcs-accent);
    transform: translateY(-4px);
    box-shadow: var(--dcs-shadow-sm);
}
.tech-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.tech-item span {
    font-size: 0.6875rem;
    color: var(--dcs-text-muted);
    text-align: center;
    line-height: 1.3;
}


/* ---- PROJECT / CASE STUDY CARDS ---- */
.project-card {
    position: relative;
    border-radius: var(--dcs-radius-lg);
    overflow: hidden;
    transition: all var(--dcs-transition);
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dcs-shadow-xl);
}
.project-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.project-card .project-info {
    padding: 24px;
    background: var(--dcs-bg-card);
    border: 1px solid var(--dcs-border-light);
    border-top: none;
    border-radius: 0 0 var(--dcs-radius-lg) var(--dcs-radius-lg);
}
.project-card .project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dcs-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.project-card .project-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dcs-dark);
    margin-bottom: 0;
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
    .dcs-navbar {
        width: calc(100% - 24px);
    }
}

@media (max-width: 991px) {
    .nav-menu {
        display: none !important;
    }
    .nav-toggle {
        display: block;
    }
    .dcs-navbar .nav-cta {
        display: none;
    }

    .section { padding: 72px 0; }
    .section-lg { padding: 96px 0; }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .mega-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .dcs-navbar {
        height: 60px;
        padding: 0 16px;
        top: 8px;
        width: calc(100% - 16px);
        border-radius: var(--dcs-radius-lg);
    }
    .dcs-navbar .nav-logo img {
        height: 28px;
    }

    .section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }

    .hero { padding: 100px 0 48px; }

    .hero-proof {
        gap: 20px;
    }
    .hero-proof-divider {
        display: none;
    }

    .cta-banner {
        padding: 40px 24px;
        border-radius: var(--dcs-radius-lg);
    }

    .dcs-footer {
        padding: 56px 0 0;
    }
    .dcs-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-item {
        padding: 16px 8px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
