/* ============================================================
   Hexasolv — Master Stylesheet v1.0
   Brand: Navy #0A1E42 | Blue #1E5AA8 | Cyan #00B4D8 | Orange #FF6B35
   Font: Clash Display + Plus Jakarta Sans
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    /* Brand Colors */
    --navy:          #0A1E42;
    --navy-dark:     #060F22;
    --navy-light:    #112250;
    --blue:          #1E5AA8;
    --blue-light:    #2D6ECC;
    --cyan:          #00B4D8;
    --cyan-light:    #48CAE4;
    --cyan-dark:     #0096B7;
    --orange:        #FF6B35;
    --orange-light:  #FF8B5E;
    --orange-dark:   #E85520;

    /* Neutral Colors */
    --white:         #FFFFFF;
    --off-white:     #F8FAFF;
    --gray-50:       #F0F4FF;
    --gray-100:      #E4EAF8;
    --gray-200:      #C8D3EE;
    --gray-300:      #9AACD8;
    --gray-400:      #6B82B8;
    --gray-500:      #4A5E8A;
    --gray-600:      #3A4B72;
    --gray-700:      #2A3558;
    --gray-800:      #1A2240;
    --gray-900:      #0D1428;
    --text-primary:  #0E1F3E;
    --text-secondary:#4A5E8A;
    --text-muted:    #6B82B8;

    /* Gradients */
    --grad-navy:     linear-gradient(135deg, #060F22 0%, #0A1E42 40%, #112250 100%);
    --grad-blue:     linear-gradient(135deg, #0A1E42 0%, #1E5AA8 100%);
    --grad-cyan:     linear-gradient(135deg, #1E5AA8 0%, #00B4D8 100%);
    --grad-orange:   linear-gradient(135deg, #FF6B35 0%, #FF8B5E 100%);
    --grad-hero:     linear-gradient(135deg, #060F22 0%, #0A1E42 45%, #0D2B5C 75%, #0A3666 100%);
    --grad-cta:      linear-gradient(135deg, #0A1E42 0%, #1E5AA8 50%, #00B4D8 100%);
    --grad-card:     linear-gradient(180deg, rgba(30,90,168,0.05) 0%, rgba(0,180,216,0.08) 100%);

    /* Shadows */
    --shadow-sm:     0 2px 8px rgba(10,30,66,0.08);
    --shadow-md:     0 8px 24px rgba(10,30,66,0.12);
    --shadow-lg:     0 16px 48px rgba(10,30,66,0.18);
    --shadow-xl:     0 24px 64px rgba(10,30,66,0.25);
    --shadow-orange: 0 8px 32px rgba(255,107,53,0.35);
    --shadow-cyan:   0 8px 32px rgba(0,180,216,0.3);
    --shadow-blue:   0 8px 32px rgba(30,90,168,0.4);
    --glow-cyan:     0 0 40px rgba(0,180,216,0.25), 0 0 80px rgba(0,180,216,0.1);
    --glow-orange:   0 0 40px rgba(255,107,53,0.25);

    /* Typography */
    --font-display:  'Clash Display', 'Plus Jakarta Sans', sans-serif;
    --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;
    --font-mono:     'JetBrains Mono', 'Fira Code', monospace;

    /* Font Sizes */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;
    --text-7xl:  4.5rem;
    --text-8xl:  6rem;

    /* Spacing */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Borders */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   16px;
    --radius-xl:   24px;
    --radius-2xl:  32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1280px;
    --header-h: 96px;
    --section-pad: 100px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) var(--navy);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; }

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--cyan);
    color: var(--white);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

/* Load Clash Display via CDN fallback */
@font-face {
    font-family: 'Clash Display';
    src: url('/assets/fonts/ClashDisplay-Variable.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { color: var(--text-secondary); line-height: 1.75; }

.text-gradient {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-light) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: var(--grad-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.75;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container { padding: 0 var(--space-4); }
}

.section {
    padding: var(--section-pad) 0;
}

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

.section-dark {
    background: var(--grad-hero);
    color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section-gray {
    background: var(--off-white);
}

/* Grid */
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-bounce);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 52px;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform var(--transition-slow);
}

.btn:hover::before { transform: translateX(200%) skewX(-15deg); }

/* Primary (Orange) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: #01b4d8;
    color: #ffffff;
    border: 2px solid #01b4d8;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary:hover {
    background: #019ab8;
    border-color: #019ab8;
}

/* Secondary (Outlined Navy) */
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Outline White (for dark sections) */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Cyan */
.btn-cyan {
    background: var(--grad-cyan);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-cyan);
}
.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,180,216,0.5);
    color: var(--white);
}

/* Ghost (transparent with border) */
.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    color: var(--white);
}

/* Sizes */
.btn-sm { padding: 10px 20px; font-size: var(--text-sm); min-height: 40px; }
.btn-lg { padding: 18px 36px; font-size: var(--text-lg); min-height: 60px; border-radius: var(--radius-lg); }
.btn-xl { padding: 22px 44px; font-size: var(--text-xl); min-height: 68px; border-radius: var(--radius-lg); }

/* Icon button */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-md);
    min-height: unset;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: auto;
    padding: 12px 0;
    margin: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    background: #ffffff;
 /*   border-bottom: 1px solid #e2e8f0;*/
    height: 100%;
}

.site-header.scrolled .header-inner {
    background: #ffffff;
    border-bottom-color: #e2e8f0;
    box-shadow: 0 4px 24px rgba(10,30,66,0.12);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-6);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
}
.logo-text span { color: var(--cyan); }

.logo-text-fallback {
    display: flex;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    align-items: center;
}
.logo-text-fallback span { color: var(--cyan); }

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: var(--space-3) var(--space-4);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.nav-link:hover, .nav-link.active {
    color: var(--cyan);
    background: rgba(0,180,216,0.08);
}

.nav-link .chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-base);
}

.nav-item:hover .chevron { transform: rotate(180deg); }

/* Header CTA Buttons */
.btn-outline-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    border: 2px solid #cbd5e1;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
}
.btn-outline-nav:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,180,216,0.05);
}

.btn-primary-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0A1E42 0%, #01b4d8 100%);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(1,180,216,0.3);
}
.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1,180,216,0.4);
    color: #fff;
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: calc(var(--header-h)-3px);
    left: 0;
    right: 0;
    transform: translateY(-8px);
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-xl);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    box-shadow: 0 20px 60px rgba(10,30,66,0.15), 0 4px 16px rgba(0,0,0,0.06);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: var(--space-5);
}

.nav-item:hover .mega-menu,
.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* ============================================================
   SIMPLE DROPDOWN (About menu)
   ============================================================ */
.nav-item.has-dropdown {
    position: relative;
}

.simple-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(10,30,66,0.14);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-item.has-dropdown:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.simple-dropdown-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #0A1E42;
    transition: background 0.12s;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.simple-dropdown-link i {
    width: 18px;
    text-align: center;
    color: #01b4d8;
    font-size: 13px;
    flex-shrink: 0;
}

.simple-dropdown-link span {
    display: block;
}

.simple-dropdown-link:hover {
    background: #f1f9fc;
    color: #01b4d8;
}

.simple-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

/* ============================================================
   FOOTER LOGO — white bg + border-radius (like screenshot)
   ============================================================ */
.footer-logo-wrap {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: 8px 16px;
    margin-bottom: 16px;
}
.footer-logo-wrap img {
    display: block;
    height: 36px;
    width: auto;
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mega-col {
    padding: 0 var(--space-3);
    border-right: 1px solid #f1f5f9;
}
.mega-col:last-child { border-right: none; }
.mega-col:first-child { padding-left: 0; }

.mega-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid rgba(0,180,216,0.15);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 5px var(--space-2);
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    margin-bottom: 1px;
}

.mega-link:hover {
    color: var(--cyan);
    background: rgba(0,180,216,0.07);
    padding-left: var(--space-3);
}

.mega-link-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    flex-shrink: 0;
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-3);
    transition: gap var(--transition-fast);
}
.mega-view-all:hover { gap: var(--space-2); color: var(--cyan); }

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.location-badge:hover { border-color: var(--cyan); color: var(--cyan); }
.location-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    padding: var(--space-6);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-submenu {
    padding: var(--space-3) 0 var(--space-3) var(--space-4);
    display: none;
}

.mobile-submenu.open { display: block; }

.mobile-sub-link {
    display: block;
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
    transition: color var(--transition-fast);
}
.mobile-sub-link:hover { color: var(--cyan); }

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding-top: var(--header-h);
}

/* Animated Background Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(30,90,168,0.2) 0%, transparent 70%);
    bottom: 0; left: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
    top: 50%; right: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-20) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(0,180,216,0.1);
    border: 1px solid rgba(0,180,216,0.25);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: var(--space-8);
    backdrop-filter: blur(10px);
}

.hero-badge-avatars {
    display: flex;
    margin-right: var(--space-1);
}

.hero-badge-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid var(--navy-dark);
    background: var(--blue);
    margin-left: -8px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.hero-badge-avatar:first-child { margin-left: 0; }

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-6);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 50%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .accent { color: var(--cyan); -webkit-text-fill-color: var(--cyan); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: var(--space-10);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-trust-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: var(--font-display);
}

.hero-trust-number span { color: var(--cyan); }

.hero-trust-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}

.hero-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-main-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    backdrop-filter: blur(20px);
    animation: cardFloat 4s ease-in-out infinite;
}

.hero-float-card-1 {
    top: -30px;
    right: -20px;
    width: 180px;
    animation-delay: 0s;
}

.hero-float-card-2 {
    bottom: -20px;
    left: -20px;
    width: 160px;
    animation-delay: 1.5s;
}

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

/* ============================================================
   STATS / COUNTERS
   ============================================================ */

.stats-bar {
    background: var(--navy);
    padding: var(--space-8) 0;
    border-top: 1px solid rgba(0,180,216,0.1);
    border-bottom: 1px solid rgba(0,180,216,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    text-align: center;
}

.stat-item { position: relative; }

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.stat-item:last-child::after { display: none; }

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: var(--font-display);
}

.stat-number span { color: var(--cyan); }
.stat-label {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
    transform: translateY(-4px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

/* Service Card */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(0,180,216,0.3);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
    transform: translateY(-6px);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    background: var(--grad-cyan);
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform var(--transition-bounce);
}

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

.service-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-3);
    transition: color var(--transition-fast);
}

.service-card:hover .service-card-title { color: var(--blue); }

.service-card-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.service-card-price {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--orange);
    margin-bottom: var(--space-4);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--blue);
    transition: gap var(--transition-fast);
}

.service-card:hover .service-card-link { gap: var(--space-3); }

/* Dark Card (for dark sections) */
.card-dark {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.card-dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,180,216,0.3);
    box-shadow: var(--glow-cyan);
}

.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.65); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: var(--text-3xl);
    color: var(--cyan);
    line-height: 1;
    margin-bottom: var(--space-4);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-100);
}

.testimonial-avatar-placeholder {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grad-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: var(--text-sm);
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-3);
}

.star {
    color: #F59E0B;
    font-size: var(--text-sm);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-steps {
    counter-reset: step;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan) 0%, var(--blue) 50%, transparent 100%);
}

.process-step {
    position: relative;
    padding-left: 80px;
    padding-bottom: var(--space-10);
}

.process-step:last-child { padding-bottom: 0; }

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: var(--grad-cyan);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-display);
    box-shadow: var(--shadow-cyan);
    z-index: 1;
}

.process-step-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-2);
    padding-top: var(--space-3);
}

.process-step-desc {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--cyan);
    background: var(--grad-hero);
    color: var(--white);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-cyan);
}

.pricing-card.featured h3,
.pricing-card.featured h4 { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.7); }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0A1E42 0%, #01b4d8 100%);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-price {
    margin: var(--space-6) 0;
}

.pricing-from { font-size: var(--text-sm); color: var(--text-muted); }
.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.04em;
    font-family: var(--font-display);
    line-height: 1;
}

.pricing-card.featured .pricing-amount { color: var(--white); }

.pricing-amount span { font-size: var(--text-xl); font-weight: 600; }

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-feature-check {
    width: 18px;
    height: 18px;
    background: rgba(0,180,216,0.12);
    color: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */

.accordion-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.accordion-item.open {
    border-color: var(--cyan);
    box-shadow: var(--shadow-sm), 0 0 20px rgba(0,180,216,0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    font-size: var(--text-base);
    transition: color var(--transition-fast);
    gap: var(--space-4);
    user-select: none;
}

.accordion-item.open .accordion-header { color: var(--blue); }

.accordion-icon {
    width: 24px; height: 24px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.accordion-item.open .accordion-icon {
    background: var(--cyan);
    color: var(--white);
    transform: rotate(45deg);
}

.accordion-body {
    height: 0;
    overflow: hidden;
    transition: height var(--transition-base);
}

.accordion-content {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.75;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-label span { color: var(--orange); }

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,180,216,0.15);
}

.form-control::placeholder { color: var(--gray-300); }

.form-control.error { border-color: #EF4444; }

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

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5E8A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-error {
    display: block;
    font-size: var(--text-xs);
    color: #EF4444;
    margin-top: var(--space-1);
}

.form-hint {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-1);
}

/* Honeypot */
.hp-field { display: none !important; visibility: hidden; }

/* ============================================================
   FORM ALIASES (form-input / form-select / form-textarea)
   ============================================================ */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    appearance: none;
    display: block;
    box-sizing: border-box;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(1,180,216,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #94a3b8; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5E8A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-select optgroup { font-weight: 700; color: #0A1E42; }

/* ============================================================
   BUTTON SYSTEM — 3 variants
   ============================================================ */
.btn-style-cyan,
.btn-style-white,
.btn-style-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body);
    white-space: nowrap;
}
.btn-style-cyan  { background: #01b4d8; color: #fff; border-color: #01b4d8; }
.btn-style-cyan:hover  { background: #0298ba; border-color: #0298ba; color: #fff; }
.btn-style-white { background: #fff; color: #0A1E42; border-color: #0A1E42; }
.btn-style-white:hover { background: #0A1E42; color: #fff; }
.btn-style-navy  { background: #0A1E42; color: #fff; border-color: #0A1E42; }
.btn-style-navy:hover  { background: #162d5e; border-color: #162d5e; color: #fff; }

/* ============================================================
   TAGS / BADGES
   ============================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-navy   { background: var(--navy); color: var(--white); }
.badge-cyan   { background: rgba(0,180,216,0.12); color: var(--cyan); border: 1px solid rgba(0,180,216,0.25); }
.badge-orange { background: rgba(255,107,53,0.12); color: var(--orange); border: 1px solid rgba(255,107,53,0.25); }
.badge-green  { background: rgba(16,185,129,0.12); color: #059669; border: 1px solid rgba(16,185,129,0.25); }
.badge-blue   { background: rgba(30,90,168,0.12); color: var(--blue); border: 1px solid rgba(30,90,168,0.25); }

/* Tech Tags */
.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.tech-tag:hover {
    background: rgba(0,180,216,0.08);
    border-color: rgba(0,180,216,0.25);
    color: var(--cyan);
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-header {
    margin-bottom: var(--space-12);
}

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

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    max-width: 600px;
}

.section-header.center p { margin: 0 auto; }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    background: var(--grad-cta);
    position: relative;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-inner h2 { color: var(--white); margin-bottom: var(--space-4); }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: var(--text-lg); margin-bottom: var(--space-8); max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.65);
    padding: var(--space-20) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo img { height: 36px; }

.footer-tagline {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 280px;
    margin-bottom: var(--space-6);
}

.footer-socials {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-fast);
    font-size: 14px;
}

.footer-social-link:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-4);
}

.footer-link {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.footer-link:hover { color: var(--cyan); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    align-items: baseline;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-3);
}

.footer-contact-icon {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) 0;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.footer-bottom-text {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-4);
}

.footer-bottom-link {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.35);
    transition: color var(--transition-fast);
}
.footer-bottom-link:hover { color: var(--cyan); }

/* ============================================================
   BACK TO TOP / STICKY ELEMENTS
   ============================================================ */

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: var(--space-6);
    width: 44px; height: 44px;
    background: var(--navy);
    border: 1px solid rgba(0,180,216,0.3);
    color: var(--cyan);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 500;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--cyan); color: var(--white); }

/* Floating CTA (mobile) */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--navy-dark);
    border-top: 1px solid rgba(0,180,216,0.2);
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
}

@media (max-width: 768px) {
    .sticky-cta-bar { display: none !important; }
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 500;
}

.chat-btn {
    width: 56px; height: 56px;
    background: #01b4d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-orange);
    cursor: pointer;
    transition: all var(--transition-bounce);
    border: none;
    position: relative;
}

.chat-btn:hover { transform: scale(1.1); }

.chat-notification {
    position: absolute;
    top: -4px; right: -4px;
    width: 16px; height: 16px;
    background: #EF4444;
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

.breadcrumb-item { display: flex; align-items: center; gap: var(--space-2); }
.breadcrumb-link { color: var(--cyan); transition: opacity var(--transition-fast); }
.breadcrumb-link:hover { opacity: 0.7; color: var(--cyan); }
.breadcrumb-sep { color: var(--gray-300); font-size: var(--text-xs); }
.breadcrumb-current { color: var(--text-muted); }

/* ============================================================
   PAGE HERO (Interior pages)
   ============================================================ */

.page-hero {
    background: var(--grad-hero);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,180,216,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,216,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: var(--text-xl);
    max-width: 700px;
    margin-bottom: var(--space-8);
}

/* ============================================================
   TRUST SIGNALS
   ============================================================ */

.trust-bar {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}

.trust-icon {
    color: var(--cyan);
    font-size: var(--text-lg);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white) !important; }
.text-cyan { color: var(--cyan) !important; }
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted { color: var(--text-muted) !important; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.d-none { display: none !important; }

/* Visible on scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   LOADER
   ============================================================ */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.done {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
}

.loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--grad-cyan);
    animation: loaderBar 1.5s ease-in-out forwards;
}

@keyframes loaderBar {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    :root { --section-pad: 80px; }
    .mega-menu { width: 750px; grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
        --section-pad: 60px;
    }

    h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-trust-bar { gap: var(--space-6); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
    .stat-item::after { display: none; }

    .mega-menu { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .process-steps::before { display: none; }
    .process-step { padding-left: 80px; }

    .pricing-card.featured { transform: scale(1); }

    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn { text-align: center; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: var(--text-xs); }
    .hero-trust-bar { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
    .hero-divider { display: none; }
    .btn-lg { padding: 16px 28px; font-size: var(--text-base); }
}

/* ============================================================
   COMING SOON PAGE
   ============================================================ */

.coming-soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-hero);
    text-align: center;
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
}

.coming-soon-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,180,216,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,216,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255,107,53,0.15);
    border: 1px solid rgba(255,107,53,0.3);
    color: var(--orange);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.coming-soon-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-4);
    letter-spacing: -0.04em;
}

.coming-soon-desc {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.65);
    margin-bottom: var(--space-8);
    line-height: 1.75;
}

/* ============================================================
   NOTIFICATION FLASH MESSAGES
   ============================================================ */

.flash-message {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    font-size: var(--text-sm);
    font-weight: 600;
    border: 1px solid transparent;
}

.flash-success { background: rgba(16,185,129,0.1); color: #059669; border-color: rgba(16,185,129,0.2); }
.flash-error   { background: rgba(239,68,68,0.1); color: #DC2626; border-color: rgba(239,68,68,0.2); }
.flash-warning { background: rgba(245,158,11,0.1); color: #D97706; border-color: rgba(245,158,11,0.2); }
.flash-info    { background: rgba(0,180,216,0.1); color: var(--cyan); border-color: rgba(0,180,216,0.2); }

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */

.portfolio-filter {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.filter-btn {
    padding: 8px 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,15,34,0.95) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-item-category {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: var(--space-2);
}

.portfolio-item-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
}

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */

.industry-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.industry-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.industry-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--grad-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.industry-content h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-1);
}

.industry-content p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================================ */

/* ---- HERO ---- */
.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding: 50px 0 0px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--blue); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--cyan); bottom: 50px; left: 10%; animation-delay: 3s; }
.hero-orb-3 { width: 200px; height: 200px; background: var(--cyan); top: 40%; right: 30%; animation-delay: 5s; opacity: 0.2; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero-container { position: relative; z-index: 2; text-align: center; }

/* Social Proof Strip */
.hero-proof-strip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 10px 20px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.proof-avatars { display: flex; }
.proof-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid var(--navy-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff;
    margin-left: -8px;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-stars { color: gold; font-size: 13px; letter-spacing: 1px; }
.proof-text { font-size: 13px; color: rgba(255,255,255,0.8); }
.proof-text strong { color: #fff; }

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1,180,216,0.12);
    border: 1px solid rgba(1,180,216,0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #01b4d8;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* Hero Headline */
.hero-headline {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-headline-gradient {
    display: block;
    background: linear-gradient(135deg, var(--cyan), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-sub strong { color: rgba(255,255,255,0.95); }

/* Service Tags */
.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s;
}
.hero-tag:hover { background: rgba(0,180,216,0.15); border-color: rgba(0,180,216,0.4); color: var(--cyan); }
.hero-tag i { color: var(--cyan); }

/* CTAs */
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-btn-primary {
    background: linear-gradient(135deg, #0A1E42, #01b4d8) !important;
    box-shadow: 0 4px 16px rgba(1,180,216,0.3) !important;
    animation: ctaPulse 3s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(255,107,53,0.35); }
    50% { box-shadow: 0 8px 48px rgba(255,107,53,0.6); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 22px 40px;
    max-width: 860px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    width: 100%;
}
.hero-stat { text-align: center; padding: 0 32px; }
.hero-stat-value {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-display);
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}
.hero-scroll span { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; }

/* ---- TRUST BAR ---- */
.trust-bar { padding: 28px 0; background: var(--off-white); border-bottom: 1px solid var(--gray-100); }
.trust-bar-label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
.trust-logo {
    font-size: 14px; font-weight: 800;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.trust-logo:hover { color: var(--blue); }
.trust-logo span { color: var(--gray-200); }

/* ---- SERVICES GRID ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cyan);
    text-decoration: none;
    color: inherit;
}
.service-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,180,216,0.03), rgba(255,107,53,0.03));
    opacity: 0;
    transition: opacity 0.35s;
}
.service-card:hover .service-card-glow { opacity: 1; }
.service-card.service-card-featured,
.service-card-featured {
    background: linear-gradient(135deg, #0A1E42 0%, #1a3a7a 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    grid-column: span 1;
}
.service-card-featured h3,
.service-card-featured p,
.service-card-featured .service-card-title,
.service-card-featured .service-card-desc {
    color: rgba(255, 255, 255, 0.95) !important;
}
.service-card-featured .service-meta-item {
    color: rgba(255, 255, 255, 0.7) !important;
}
.service-card-featured .service-card-cta {
    color: #00B4D8 !important;
}
.service-card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-lg);
    background: var(--grad-cyan);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}
.service-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255,107,53,0.1);
    color: var(--orange);
    border: 1px solid rgba(255,107,53,0.2);
    margin-bottom: 12px;
    align-self: flex-start;
}
.service-card-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.service-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.service-meta-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.service-meta-item i { color: var(--cyan); font-size: 10px; }
.service-card-cta {
    font-size: 14px; font-weight: 600;
    color: var(--blue);
    display: flex; align-items: center; gap: 6px;
    margin-top: auto;
    transition: gap 0.3s;
}
.service-card:hover .service-card-cta { gap: 10px; }
.service-price-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}
.service-card-featured .service-price-badge {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

/* ---- PAIN POINTS ---- */
.section-dark { background: var(--navy-dark); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pain-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: border-color 0.3s;
}
.pain-card:hover { border-color: rgba(0,180,216,0.3); }
.pain-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: rgba(0,180,216,0.1);
    border: 1px solid rgba(0,180,216,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 16px;
}
.pain-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.pain-desc, .pain-solution { font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.pain-desc { color: rgba(255,255,255,0.6); }
.pain-solution { color: rgba(255,255,255,0.8); }
.pain-problem { color: #FF7575; font-weight: 600; }
.pain-fix { color: #4ADE80; font-weight: 600; }

/* ---- CASE STUDIES ---- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.case-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.35s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.case-card-header { padding: 32px; position: relative; }
.case-type-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}
.case-icon { font-size: 2rem; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.case-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.case-subtitle { font-size: 13px; color: rgba(255,255,255,0.6); }
.case-body { padding: 24px 32px; }
.case-challenge { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.case-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.case-metric { text-align: center; padding: 12px; background: var(--gray-50); border-radius: var(--radius-md); }
.case-metric-value { font-size: 1.4rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.case-metric-label { font-size: 11px; color: var(--text-muted); }
.case-solution { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.case-testimonial {
    background: var(--gray-50);
    border-left: 3px solid var(--cyan);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 4px;
}
.case-author { font-size: 12px; color: var(--text-muted); margin-top: 6px; font-style: normal; font-weight: 600; }
.case-cta {
    display: block;
    padding: 16px 32px;
    border-top: 1px solid var(--gray-100);
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: all 0.3s;
}
.case-cta:hover { background: var(--gray-50); color: var(--blue); gap: 10px; text-decoration: none; }

/* ---- WHY US ---- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-list { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: var(--grad-cyan);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Visual Card */
.why-us-visual { position: relative; }
.why-visual-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.wvc-header {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: rgba(255,255,255,0.5);
}
.wvc-dot { width: 10px; height: 10px; border-radius: 50%; }
.wvc-dot.red { background: #FF5F57; }
.wvc-dot.yellow { background: #FEBC2E; }
.wvc-dot.green { background: #28C840; }
.wvc-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.wvc-project { display: flex; align-items: center; gap: 16px; }
.wvc-project-info { flex: 1; min-width: 0; }
.wvc-project-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.wvc-project-type { font-size: 11px; color: rgba(255,255,255,0.4); }
.wvc-progress-wrap { display: flex; align-items: center; gap: 8px; min-width: 140px; }
.wvc-progress { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.wvc-progress-bar { height: 100%; border-radius: 3px; transition: width 1s ease; }
.wvc-progress-wrap span { font-size: 12px; color: rgba(255,255,255,0.6); min-width: 40px; }
.wvc-footer {
    display: flex; gap: 16px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: rgba(255,255,255,0.5);
}
.wvc-stat { display: flex; align-items: center; gap: 6px; }
.text-success { color: #4ADE80; }

/* Float Badges */
.why-float-badge {
    position: absolute;
    display: flex; align-items: center; gap: 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
}
.why-float-badge strong { display: block; font-weight: 700; color: var(--navy); }
.why-float-badge small { color: var(--text-muted); }
.why-float-1 { bottom: -20px; left: -30px; }
.why-float-2 { top: -20px; right: -30px; }

/* ---- TECH GRID ---- */
.tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.tech-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.tech-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cyan); }
.tech-item i { font-size: 2rem; }
.tech-item span { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

/* ---- PROCESS ---- */
.process-timeline { position: relative; display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; }
.process-line {
    position: absolute;
    top: 24px; left: 56px; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--cyan), transparent);
}
.process-step { display: flex; flex-direction: column; align-items: center; min-width: 200px; flex: 1; }
.process-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grad-cyan);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; color: #fff;
    margin-bottom: 16px;
    position: relative; z-index: 2;
    box-shadow: var(--shadow-cyan);
}
.process-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.process-icon { font-size: 1.5rem; color: var(--blue); margin-bottom: 12px; }
.process-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.process-time { font-size: 12px; color: var(--cyan); font-weight: 600; }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: all 0.35s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card-featured {
    background: var(--grad-blue);
    border-color: transparent;
    color: #fff;
}
.pricing-card-featured .pricing-tier,
.pricing-card-featured .pricing-desc,
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card-featured .pricing-amount { color: #fff; }
.pricing-card-featured .pricing-features i { color: var(--cyan-light); }
.pricing-popular-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-card-icon { font-size: 2rem; color: var(--blue); margin-bottom: 16px; }
.pricing-card-featured .pricing-card-icon { color: var(--cyan-light); }
.pricing-tier { font-size: 14px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-amount { font-size: 2.4rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; font-family: var(--font-display); }
.pricing-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.pricing-features i { color: var(--cyan); }

/* ROI Teaser */
.roi-teaser {
    display: flex; align-items: center; gap: 24px;
    background: linear-gradient(135deg, var(--gray-50), rgba(0,180,216,0.05));
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 28px 36px;
}
.roi-icon { font-size: 2rem; color: var(--cyan); flex-shrink: 0; }
.roi-teaser h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.roi-teaser p { font-size: 14px; color: var(--text-secondary); }
.roi-teaser .btn { flex-shrink: 0; margin-left: auto; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(0,180,216,0.3); background: rgba(255,255,255,0.06); }
.testimonial-stars { color: gold; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.5); }
.testimonial-platform { font-size: 12px; color: var(--cyan); }
.testimonial-platform i { margin-right: 4px; }

/* ---- LOCATIONS ---- */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.35s;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.location-card-featured { background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%); border-color: transparent; }
.location-card-featured .location-city,
.location-card-featured .location-desc,
.location-card-featured .location-contact { color: rgba(255,255,255,0.85); }
.location-card-featured .location-specialty { color: var(--cyan); }
.location-flag { font-size: 2rem; margin-bottom: 12px; }
.location-city { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.location-specialty { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 12px; }
.location-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.location-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.location-contact div { font-size: 13px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.location-contact i { color: var(--cyan); margin-top: 2px; flex-shrink: 0; }
.location-contact a { color: inherit; text-decoration: none; }
.location-contact a:hover { color: var(--blue); }
.location-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.location-tags span {
    font-size: 11px; font-weight: 600;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 100px;
    padding: 3px 10px;
    color: var(--text-secondary);
}
.location-card-featured .location-tags span {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
.location-cta {
    font-size: 14px; font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: gap 0.3s;
}
.location-cta:hover { gap: 10px; text-decoration: none; }
.location-card-featured .location-cta { color: var(--cyan); }

/* ---- FINAL CTA ---- */
.cta-final { padding: 0 0 80px; }
.cta-final-inner {
    position: relative;
    background: var(--grad-hero);
    border: 1px solid rgba(0,180,216,0.2);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}
.cta-final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,180,216,0.15) 0%, transparent 70%);
}
.cta-final-content { position: relative; z-index: 2; }
.cta-final-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-final-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 36px; line-height: 1.6; }
.cta-final-sub strong { color: rgba(255,255,255,0.95); }
.cta-final-features {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
    margin-bottom: 40px;
}
.cta-feature { font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 8px; }
.cta-feature i { color: #4ADE80; }
.cta-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-final-note { font-size: 13px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; justify-content: center; }
.cta-final-note i { color: rgba(0,180,216,0.6); }

/* ---- SECTION HELPERS ---- */
.section-light { background: var(--off-white); }
.section-badge {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    background: rgba(0,180,216,0.1);
    color: var(--cyan-dark);
    border: 1px solid rgba(0,180,216,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 16px;
}
.section-badge-cyan { background: rgba(0,180,216,0.15); color: var(--cyan); border-color: rgba(0,180,216,0.3); }
.section-badge-orange { background: rgba(255,107,53,0.15); color: var(--orange); border-color: rgba(255,107,53,0.3); }
.section-cta-center { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.text-gradient {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-orange {
    background: linear-gradient(135deg, #0A1E42 0%, #01b4d8 100%);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(1,180,216,0.4); color: #fff; }
.btn-xl { padding: 18px 36px; font-size: 1rem; }
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    font-weight: 600;
}
.btn-ghost:hover { color: var(--blue); }

/* ---- RESPONSIVE HOMEPAGE ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-float-1, .why-float-2 { display: none; }
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
    .case-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; }
    .hero-stats { padding: 20px; gap: 0; }
    .hero-stat { padding: 0 16px; }
    .hero-stat-value { font-size: 1.8rem; }
    .hero-stat-divider { height: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .process-timeline { flex-direction: column; }
    .process-line { display: none; }
    .cta-final-inner { padding: 40px 24px; }
    .roi-teaser { flex-direction: column; text-align: center; }
    .roi-teaser .btn { margin: 0; }
}

/* ============================================================
   UPDATES - Feb 2026
   ============================================================ */

/* Mobile menu styles */
.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
}
.mobile-logo span { color: var(--cyan); }

.mobile-has-sub {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-sub-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    margin: 14px 0 6px;
}

.mobile-ctas {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* Responsive header */
@media (max-width: 1200px) {
    .btn-outline-nav { display: none; }
}

@media (max-width: 968px) {
    .main-nav { display: none; }
    .header-right .btn-primary-nav { display: none; }
}

/* Process steps improvements */
.process-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    min-height: 280px;
}
.process-step-card:hover,
.process-step-card.active {
    border-color: var(--cyan);
    box-shadow: 0 8px 40px rgba(1,180,216,0.15);
    transform: translateY(-4px);
}

/* Remove pricing display */
.pricing-badge,
.price-tag,
[class*="price-"] {
    display: none !important;
}

/* Better mobile responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .case-studies-grid {
        grid-template-columns: 1fr !important;
    }
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    .process-grid {
        grid-template-columns: 1fr !important;
    }
    .locations-grid {
        grid-template-columns: 1fr !important;
    }
    .tech-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .section-title { font-size: 1.8rem !important; }
    .container { padding: 0 16px !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem !important; }
    .tech-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Hamburger fix for white header */
.hamburger {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: none;
}
@media (max-width: 968px) {
    .hamburger { display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Sticky CTA bar fix */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 16px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .sticky-cta-bar { display: none !important; }
}

/* Section badge update */
.section-badge {
    display: inline-block;
    background: rgba(0,180,216,0.1);
    border: 1px solid rgba(0,180,216,0.25);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}


/* ============================================================
   PROCESS STEPS GRID - New Design
   ============================================================ */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 48px 0 40px;
    position: relative;
}

.process-steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), #1E5AA8);
    z-index: 0;
    opacity: 0.3;
}

.process-step-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 40px rgba(1,180,216,0.12);
    transform: translateY(-4px);
}

.process-step-num {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0A1E42, #01b4d8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin: 0 auto 16px;
    flex-shrink: 0;
}

.process-step-icon {
    width: 52px;
    height: 52px;
    background: rgba(1,180,216,0.08);
    border: 1px solid rgba(1,180,216,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--cyan);
    flex-shrink: 0;
}

.process-step-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0A1E42;
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-step-item p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.process-step-time {
    font-size: 12px;
    color: var(--cyan);
    font-weight: 600;
    background: rgba(1,180,216,0.08);
    border: 1px solid rgba(1,180,216,0.2);
    border-radius: 50px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .process-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-steps-grid::before { display: none; }
}

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

/* Fix btn-primary-nav - single color #01b4d8 */
.btn-primary-nav {
    background: #01b4d8 !important;
    box-shadow: 0 4px 16px rgba(1,180,216,0.35) !important;
}
.btn-primary-nav:hover {
    background: #019ab8 !important;
    box-shadow: 0 8px 24px rgba(1,180,216,0.45) !important;
}

/* Fix hero headline gradient color (remove orange) */
.hero-headline-gradient {
    background: linear-gradient(135deg, #00B4D8, #1E5AA8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fix hero badge dot */
.badge-dot {
    background: #00B4D8 !important;
}

/* Header no extra margin/padding */
body { margin: 0; padding: 0; }
.site-header + * { margin-top: 0; }

/* Fix hero section no top padding needed */
.hero {
    /* padding-top: 60px !important; */
}

/* Remove orange from hero orb */
.hero-orb-3 {
    background: var(--cyan) !important;
    opacity: 0.15 !important;
}

/* Coming soon page - fix orange buttons */
.coming-soon-ctas .btn,
.coming-soon-section .btn {
    background: #01b4d8 !important;
    color: #fff !important;
    border-color: #01b4d8 !important;
}

/* Mega menu box shadow and padding */
.mega-menu {
    border-top: 3px solid var(--cyan) !important;
}

.mega-menu-inner {
    padding: 28px 32px !important;
}


/* ============================================================
   PAIN CARDS - Problem/Solution Blocks
   ============================================================ */
.pain-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pain-card-new {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.pain-problem-block,
.pain-solution-block {
    padding: 28px 28px 24px;
}

.pain-problem-block {
    background: rgba(220, 38, 38, 0.12);
    border-bottom: 1px solid rgba(220,38,38,0.15);
}

.pain-solution-block {
    background: rgba(16, 185, 129, 0.1);
}

.pain-block-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
}

.pain-problem-block .pain-block-icon {
    background: rgba(220,38,38,0.2);
    color: #FCA5A5;
}

.pain-solution-block .pain-block-icon {
    background: rgba(16,185,129,0.2);
    color: #6EE7B7;
}

.pain-problem-block h3,
.pain-solution-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pain-problem-block p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

.pain-solution-block p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

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

/* ============================================================
   TECH GRID - Colorful Icons
   ============================================================ */
.tech-grid-colored {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.tech-item-colored {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 16px 18px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: default;
}

.tech-item-colored:hover {
    border-color: var(--tc, #01b4d8);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.tech-item-colored i {
    font-size: 36px;
    color: var(--tc, #01b4d8);
    display: block;
    margin-bottom: 10px;
    transition: transform 0.25s ease;
}

.tech-item-colored:hover i {
    transform: scale(1.1);
}

.tech-item-colored span {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

@media (max-width: 1024px) {
    .tech-grid-colored { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .tech-grid-colored { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   BLOG PREVIEW SECTION
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0 40px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 12px 40px rgba(10,30,66,0.12);
    transform: translateY(-4px);
    border-color: #01b4d8;
}

.blog-card-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: rgba(255,255,255,0.9);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    display: inline-block;
    background: rgba(1,180,216,0.1);
    color: #01b4d8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(1,180,216,0.2);
    width: max-content;
}

.blog-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0A1E42;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #94a3b8;
}

.blog-card-read {
    color: #01b4d8;
    font-weight: 600;
    font-size: 13px;
}

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



/* ============================================================
   BUTTON SYSTEM - 3 Variants (White | Cyan | Navy)
   ============================================================ */

/* Variant 1: White background, navy text, navy border */
.btn-style-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    color: #0A1E42;
    border: 2px solid #0A1E42;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-style-white:hover {
    background: #0A1E42;
    color: #ffffff;
}

/* Variant 2: Cyan background, white text */
.btn-style-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #01b4d8;
    color: #ffffff;
    border: 2px solid #01b4d8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-style-cyan:hover {
    background: #019ab8;
    border-color: #019ab8;
    color: #ffffff;
}

/* Variant 3: Navy background, white text */
.btn-style-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0A1E42;
    color: #ffffff;
    border: 2px solid #0A1E42;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-style-navy:hover {
    background: #0d2760;
    border-color: #0d2760;
    color: #ffffff;
}

/* Header buttons */
.btn-header-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: #ffffff;
    color: #0A1E42;
    border: 2px solid rgba(10,30,66,0.25);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-header-outline:hover {
    border-color: #0A1E42;
    background: #0A1E42;
    color: #ffffff;
}

.btn-header-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: #01b4d8;
    color: #ffffff;
    border: 2px solid #01b4d8;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-header-primary:hover {
    background: #019ab8;
    border-color: #019ab8;
}

/* Mega menu new styles */
.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 0;
}

.mega-col {
    padding: 24px 20px;
    border-right: 1px solid #f1f5f9;
}
.mega-col:last-child { border-right: none; }

.mega-col-featured {
    background: linear-gradient(160deg, #f8fafc 0%, #f0f7ff 100%);
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
}

.mega-col-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.mega-col-title {
    font-size: 13px;
    font-weight: 800;
    color: #0A1E42;
    line-height: 1.2;
}
.mega-col-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.15s;
}
.mega-link i {
    font-size: 11px;
    color: #01b4d8;
    width: 14px;
    flex-shrink: 0;
}
.mega-link:hover {
    background: rgba(1,180,216,0.08);
    color: #0A1E42;
}

.mega-view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #01b4d8;
    text-decoration: none;
    border-top: 1px solid #e2e8f0;
}
.mega-view-all i { font-size: 10px; }
.mega-view-all:hover { color: #0A1E42; }

/* Mobile section label */
.mobile-section-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    padding: 12px 0 4px;
}

/* ── Footer Newsletter ─────────────────────────────── */
.footer-newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
}
.footer-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-btn {
    padding: 12px 16px;
    background: #01b4d8;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.footer-newsletter-btn:hover { background: #019ab8; }
.footer-newsletter-msg {
    font-size: 13px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Coming Soon Fix ─────────────────────────────── */
.coming-soon-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE FIX
   Fixes all inline-grid pages: contact, quote, about, blog,
   portfolio, CEO, and all section grids
   ============================================================ */

/* --- Page Hero --- */
@media (max-width: 768px) {
    .page-hero { padding: 80px 0 48px !important; }
    .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
    .page-hero p  { font-size: 15px !important; }
}

/* --- Generic inline grid override --- */
@media (max-width: 768px) {

    /* Any 2-col grid → 1 col */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Any grid with fixed right sidebar (contact, quote) */
    [style*="grid-template-columns:1fr 400px"],
    [style*="grid-template-columns:1fr 420px"],
    [style*="grid-template-columns:1fr 340px"],
    [style*="grid-template-columns:1fr 360px"],
    [style*="grid-template-columns:1fr 380px"],
    [style*="grid-template-columns: 1fr 400px"],
    [style*="grid-template-columns: 1fr 420px"],
    [style*="grid-template-columns: 1fr 340px"],
    [style*="grid-template-columns: 1fr 360px"] {
        grid-template-columns: 1fr !important;
    }

    /* 3-col grids → 1 col on mobile */
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3,1fr)"],
    [style*="grid-template-columns:repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* 4-col stats → 2x2 on mobile */
    [style*="grid-template-columns:repeat(4,1fr)"],
    [style*="grid-template-columns: repeat(4,1fr)"],
    [style*="grid-template-columns:repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

    /* 5-col → 2 col */
    [style*="grid-template-columns:repeat(5,1fr)"],
    [style*="grid-template-columns: repeat(5,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Gap reduce on mobile */
    [style*="gap:64px"], [style*="gap: 64px"],
    [style*="gap:72px"], [style*="gap: 72px"],
    [style*="gap:48px"], [style*="gap: 48px"] {
        gap: 24px !important;
    }

    /* Position sticky — remove on mobile */
    [style*="position:sticky"],
    [style*="position: sticky"] {
        position: relative !important;
        top: auto !important;
    }

    /* Section padding reduce */
    [style*="padding:80px 0"],  [style*="padding: 80px 0"],
    [style*="padding:90px 0"],  [style*="padding: 90px 0"] {
        padding: 48px 0 !important;
    }
    [style*="padding:60px 0"],  [style*="padding: 60px 0"] {
        padding: 40px 0 !important;
    }
}

/* --- CEO Page specific --- */
@media (max-width: 768px) {
    /* Hero grid in CEO page */
    [style*="grid-template-columns:1fr 340px"],
    [style*="grid-template-columns:1fr 360px"] {
        grid-template-columns: 1fr !important;
    }

    /* Credential tags wrapping */
    [style*="display:flex"][style*="flex-wrap:wrap"] {
        flex-wrap: wrap !important;
    }

    /* Quick facts bar → 2 col */
    [style*="grid-template-columns:repeat(5,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* --- About page team grid --- */
@media (max-width: 640px) {
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* --- Blog grid --- */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Portfolio grid --- */
@media (max-width: 768px) {
    /* Featured portfolio items — remove span */
    [style*="grid-column:span 2"],
    [style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
}

/* --- Contact & Quote forms --- */
@media (max-width: 768px) {
    /* Form 2-col name/email row → stack */
    .form-row-2col {
        grid-template-columns: 1fr !important;
    }
}

/* --- Section headers center on mobile --- */
@media (max-width: 768px) {
    .section-header { text-align: center; }
    .section-badge  { margin: 0 auto 12px; display: block; text-align: center; }
    .section-title  { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
    .section-sub    { font-size: 14px; }
}

/* --- About page story 2-col → 1 col --- */
@media (max-width: 900px) {
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* --- Timeline on CEO page --- */
@media (max-width: 768px) {
    .ceo-timeline-item { flex-direction: column; }
}

/* --- Hexasolv stats bar on CEO page --- */
@media (max-width: 500px) {
    [style*="grid-template-columns:repeat(5,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }
    [style*="grid-template-columns:1fr 1fr"][style*="border-right"] {
        border-right: none !important;
    }
}

/* --- CTA sections --- */
@media (max-width: 768px) {
    [style*="padding:48px"][style*="background:linear-gradient"] {
        padding: 28px 20px !important;
    }
    [style*="padding:40px 48px"] {
        padding: 24px 20px !important;
    }
    [style*="padding:40px"] {
        padding: 24px 16px !important;
    }
}

/* --- Blockquote on CEO vision --- */
@media (max-width: 768px) {
    blockquote { padding: 16px 20px !important; font-size: 1rem !important; }
}

/* --- Contact sidebar sticky → normal flow --- */
@media (max-width: 768px) {
    [style*="position:sticky;top:24px"] {
        position: static !important;
    }
}

/* --- Logo in header mobile --- */
@media (max-width: 480px) {
    .site-header .logo img { max-width: 140px; }
}

/* --- Flex rows → column on mobile --- */
@media (max-width: 640px) {
    [style*="display:flex"][style*="gap:64px"],
    [style*="display:flex"][style*="gap:48px"] {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

/* --- Quick facts flex → wrap 2-col on mobile --- */
@media (max-width: 768px) {
    [style*="display:flex;gap:0;flex-wrap:wrap"] > div {
        min-width: 45% !important;
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9;
    }
}

/* ============================================================
   CONTACT / QUOTE / FORM RESPONSIVE LAYOUTS
   ============================================================ */
@media (max-width: 900px) {
    .contact-layout,
    .quote-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .form-grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   ABOUT PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .about-story-grid {
        grid-template-columns: 1fr !important;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .locations-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 500px) {
    .team-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .about-stats-bar {
        grid-template-columns: 1fr 1fr !important;
    }
    .about-stats-bar > div {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0;
    }
}

/* ============================================================
   CEO PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
    .ceo-hero-grid {
        grid-template-columns: 1fr !important;
    }
    .ceo-hero-photo { order: -1; margin-bottom: 24px; }
    .ceo-hero-photo > div { width: 220px !important; margin: 0 auto !important; }
    .ceo-content-grid {
        grid-template-columns: 1fr !important;
    }
    .ceo-stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .ceo-facts-bar > div {
        min-width: 45% !important;
        flex: 1 1 45% !important;
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9;
    }
    .ceo-speaking-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 600px) {
    .ceo-speaking-grid {
        grid-template-columns: 1fr !important;
    }
    .ceo-stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ============================================================
   PORTFOLIO RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .portfolio-grid,
    [style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }
    [style*="grid-column:span 2"],
    [style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
}
@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   BLOG RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    .blog-featured-grid {
        grid-template-columns: 1fr !important;
    }
    .blog-featured-grid > div:first-child {
        height: 200px !important;
    }
}

/* ============================================================
   UNIVERSAL MOBILE POLISH
   ============================================================ */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body { overflow-x: hidden; }
    
    /* All sections reduce padding */
    .section { padding: 48px 0 !important; }
    
    /* CTA gradient boxes */
    .cta-gradient-box {
        padding: 32px 20px !important;
        text-align: center;
    }
    .cta-gradient-box .btn-row {
        flex-direction: column !important;
        align-items: center;
    }
    
    /* Headings */
    h1 { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
    h2 { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
    
    /* Prevent text overflow */
    p, li, span { word-break: break-word; }
    
    /* Form inputs full width */
    .form-input, .form-select, .form-textarea {
        font-size: 16px !important; /* Prevents iOS zoom */
    }
    
    /* Buttons */
    .btn-style-cyan,
    .btn-style-white,
    .btn-style-navy {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Section badge */
    .section-badge { margin: 0 auto 10px; display: table; }
    
    /* Bottom padding for sticky CTA bar */
    main, .site-main { padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px !important; }
    
    /* Stats grids → 2 col */
    [style*="grid-template-columns:repeat(4,1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }
    [style*="border-right:1px solid #e2e8f0"] {
        border-right: none !important;
    }
}

/* ============================================================
   HAMBURGER BUTTON — replaces old .hamburger
   ============================================================ */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.15s;
    z-index: 1001;
}
.hamburger-btn:hover { background: #f1f5f9; }
.ham-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #0A1E42;
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}
.hamburger-btn.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 968px) {
    .hamburger-btn { display: flex; }
    .main-nav, .header-ctas { display: none !important; }
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
    backdrop-filter: blur(2px);
}
.mob-overlay.open { display: block; }

/* ============================================================
   MOBILE MENU PANEL
   ============================================================ */
.mob-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mob-menu.open { transform: translateX(0); }

/* Menu Head */
.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}
.mob-logo img { height: 36px; width: auto; display: block; }
.mob-close {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    transition: all 0.15s;
    flex-shrink: 0;
}
.mob-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

/* CTA Row */
.mob-cta-row {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}
.mob-cta-outline, .mob-cta-fill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.mob-cta-outline {
    background: #fff;
    border: 1.5px solid #0A1E42;
    color: #0A1E42;
}
.mob-cta-fill {
    background: #01b4d8;
    border: 1.5px solid #01b4d8;
    color: #fff;
}

/* Scrollable Nav */
.mob-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}
.mob-nav::-webkit-scrollbar { width: 3px; }
.mob-nav::-webkit-scrollbar-track { background: transparent; }
.mob-nav::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 2px; }

/* Top-level link */
.mob-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0A1E42;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.12s;
}
.mob-link:hover, .mob-link.mob-active {
    background: #f8fafc;
    color: #01b4d8;
    border-left-color: #01b4d8;
}
.mob-icon {
    width: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    flex-shrink: 0;
}
.mob-link:hover .mob-icon,
.mob-link.mob-active .mob-icon { color: #01b4d8; }

/* Accordion trigger */
.mob-accordion { border-bottom: 1px solid #f8fafc; }
.mob-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0A1E42;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    text-align: left;
    transition: all 0.12s;
    gap: 10px;
}
.mob-acc-trigger span { display: flex; align-items: center; gap: 10px; }
.mob-acc-trigger:hover { background: #f8fafc; color: #01b4d8; border-left-color: #01b4d8; }
.mob-acc-trigger.open { background: #f0f9ff; color: #01b4d8; border-left-color: #01b4d8; }

/* Sub-trigger (2nd level) */
.mob-acc-sub {
    padding: 10px 16px 10px 20px;
    font-size: 13px;
    background: transparent;
    border-left: none;
    border-top: 1px solid #f8fafc;
}
.mob-acc-sub:hover { background: #f8fafc; border-left: none; }
.mob-acc-sub.open  { background: #f0f9ff; border-left: none; }

.mob-acc-chevron {
    font-size: 10px;
    color: #94a3b8;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.mob-acc-trigger.open .mob-acc-chevron { transform: rotate(180deg); }

/* Accordion body */
.mob-acc-body {
    display: none;
    background: #fafbfc;
    border-top: 1px solid #f1f5f9;
}
.mob-acc-body.open { display: block; }

/* Section within body */
.mob-acc-section {
    border-bottom: 1px solid #f1f5f9;
}
.mob-acc-section:last-child { border-bottom: none; }

/* Sub links */
.mob-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px 9px 36px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.1s;
}
.mob-sub-link i { width: 16px; text-align: center; color: #94a3b8; font-size: 11px; flex-shrink: 0; }
.mob-sub-link:hover { background: #f0f9ff; color: #01b4d8; padding-left: 40px; border-left-color: #01b4d8; }
.mob-sub-link:hover i { color: #01b4d8; }

/* View all link */
.mob-view-all {
    font-weight: 700;
    color: #01b4d8;
    background: #f0f9ff;
    border-bottom: 1px solid #e0f2fe;
    padding: 10px 20px 10px 36px;
}
.mob-view-all:hover { background: #e0f2fe; color: #0298ba; padding-left: 36px; }
.mob-view-all i { color: #01b4d8 !important; }

/* Nested sub-body (3rd level) indentation */
#acc-mob-custom .mob-sub-link,
#acc-mob-ai .mob-sub-link,
#acc-mob-shopify .mob-sub-link,
#acc-mob-wp .mob-sub-link,
#acc-mob-more .mob-sub-link { padding-left: 48px; }
#acc-mob-custom .mob-view-all,
#acc-mob-ai .mob-view-all,
#acc-mob-shopify .mob-view-all,
#acc-mob-wp .mob-view-all,
#acc-mob-more .mob-view-all { padding-left: 48px; }

/* Menu Footer */
.mob-menu-foot {
    flex-shrink: 0;
    padding: 14px 20px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
}

/* ============================================================
   HEADER RESPONSIVE — hide nav + ctas on mobile
   ============================================================ */
@media (max-width: 968px) {
    .main-nav   { display: none !important; }
    .header-ctas { display: none !important; }
    .hamburger-btn { display: flex !important; }
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-brand { grid-column: auto; }
    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================================
   STICKY BOTTOM BAR — proper sizing
   ============================================================ */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 990;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 10px 12px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    align-items: center;
}
@media (max-width: 768px) {
    .sticky-cta-bar { display: flex; }
    .sticky-cta-bar a {
        flex: 1;
        font-size: 12px !important;
        padding: 10px 8px !important;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        border-radius: 8px !important;
    }
}

/* ============================================================
   HEADER LOGO — responsive size
   ============================================================ */
@media (max-width: 480px) {
    .site-logo img { max-width: auto !important; }
    .header-inner .container { padding: 0 14px !important; }
}

/* ============================================================
   HERO PROOF STRIP — MOBILE FIX
   ============================================================ */
@media (max-width: 600px) {
    .hero-proof-strip {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        border-radius: 20px !important;
        padding: 14px 16px !important;
        gap: 8px !important;
        width: 100%;
        box-sizing: border-box;
    }
    .proof-avatars {
        justify-content: center;
    }
    .proof-text {
        width: 100%;
        text-align: center;
        font-size: 13px !important;
        line-height: 1.5;
    }
    .proof-stars {
        font-size: 16px !important;
    }
    .hero-badge {
        text-align: center;
        font-size: 11px !important;
        padding: 8px 16px !important;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
        border-radius: 14px !important;
    }
}

/* ============================================================
   HERO STATS BAR — MOBILE FIX (Issue 1)
   Counter section overflow fixed
   ============================================================ */
.hero-stats {
    flex-wrap: wrap !important;
}

@media (max-width: 640px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        padding: 16px 20px !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-stat {
        padding: 14px 12px !important;
        border-right: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    /* Remove borders from right column and bottom row */
    .hero-stat:nth-child(2),   /* 2nd stat (divider before it) */
    .hero-stat:nth-child(4) {  /* 4th stat (divider before it) */
        border-right: none !important;
    }
    .hero-stat:nth-child(3),
    .hero-stat:nth-child(4) {
        border-bottom: none !important;
    }
    .hero-stat-divider {
        display: none !important;
    }
    .hero-stat-value {
        font-size: 1.8rem !important;
    }
    .hero-stat-label {
        font-size: 10px !important;
    }
}

/* ============================================================
   WHY US SECTION — RESPONSIVE (Issue 2)
   Visual card + float badges on mobile
   ============================================================ */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    /* Float badges cause overflow — hide on tablet/mobile */
    .why-float-badge {
        display: none !important;
    }
    .why-us-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Why us content buttons */
    .why-us-content [style*="display:flex;gap:12px"] {
        flex-direction: column !important;
    }
    .why-us-content .btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center;
    }
    /* Why card inner */
    .wvc-project {
        flex-wrap: wrap;
        gap: 8px;
    }
    .wvc-progress-wrap {
        min-width: 100% !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wvc-body {
        padding: 14px !important;
    }
    .wvc-footer {
        flex-direction: column;
        gap: 6px !important;
        padding: 10px 14px !important;
    }
}

.bp-hero-right {
        padding-bottom: 135px !important;
        }
        
        .bp-hero-img {
          margin-bottom: 0px !important;
        }

/* ── Dark Mode Overrides for Homepage ── */
html.dark {
    --white: #05020c;
    --off-white: #0a0616;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --navy: #ffffff;
    --gray-50: rgba(255,255,255,0.05);
    --gray-100: rgba(255,255,255,0.08);
    --gray-200: rgba(255,255,255,0.12);
    --gray-300: rgba(255,255,255,0.2);
    --gray-400: rgba(255,255,255,0.3);
    --border: rgba(255,255,255,0.08);
}
html.dark body {
    background-color: var(--white);
    color: var(--text-primary);
}
html.dark .section-light {
    background-color: var(--off-white) !important;
}
html.dark .portfolio-project-card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}
html.dark .portfolio-project-card h3 {
    color: #ffffff !important;
}
html.dark .portfolio-project-card p {
    color: #94a3b8 !important;
}
html.dark .nav-mega-panel {
    background: #0a0616;
    border-color: rgba(255, 255, 255, 0.08);
}
html.dark .nav-mega-col a {
    color: #94a3b8;
}
html.dark .nav-mega-col a:hover {
    color: var(--accent-1, #7c3aed);
}
html.dark .services-overview {
    background: #0a0616 !important;
}
html.dark .service-card {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
}
html.dark .service-card-title {
    color: #ffffff !important;
}
html.dark .service-card-desc {
    color: #94a3b8 !important;
}
html.dark .site-header {
    background: rgba(5, 2, 12, 0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
html.dark .mob-menu {
    background: #0a0616;
}
html.dark .mob-menu-head {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
html.dark .mob-logo span {
    color: #ffffff !important;
}
html.dark .mob-link {
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
html.dark .mob-close {
    color: #ffffff;
}
html.dark .team-card {
    background: rgba(255,255,255,0.02) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
html.dark .team-card h3 {
    color: #ffffff !important;
}
html.dark .team-card p {
    color: #94a3b8 !important;
}
html.dark .contact-form-card, html.dark .contact-info-card {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
}
html.dark .form-control, html.dark .form-select {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: #ffffff;
}
html.dark .form-control::placeholder {
    color: #64748b;
}
html.dark .site-header.scrolled {
    background: rgba(5, 2, 12, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ── Dedicated Video Showcases Styles ── */
.video-showcase-grid,
#featuredVideosGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.video-showcase-grid .video-thumb-container,
#featuredVideosGrid .video-thumb-container {
    height: 280px;
}
@media (max-width: 768px) {
    .video-showcase-grid,
    #featuredVideosGrid {
        grid-template-columns: repeat(1, 1fr);
    }
    .video-showcase-grid .video-thumb-container,
    #featuredVideosGrid .video-thumb-container {
        height: 220px;
    }
}
.video-showcase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 1 !important;
    visibility: visible !important;
}
html.dark .video-showcase-card {
    background: #0d0722;
    border-color: rgba(124, 58, 237, 0.2);
}
.video-showcase-card:hover {
    transform: translateY(-8px);
    border-color: #7c3aed;
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.18);
}
.video-thumb-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #000;
}
.video-thumb-img,
.video-thumb-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.video-showcase-card:hover .video-thumb-img,
.video-showcase-card:hover .video-thumb-media {
    transform: scale(1.08);
}
.video-play-overlay {
    display: none !important;
}
.play-button-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #00B4D8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 3px;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    transition: transform 0.3s ease;
}
.video-showcase-card:hover .play-button-icon {
    transform: scale(1.18);
}
.play-text-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.video-duration-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}
.video-platform-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 10, 30, 0.85);
    backdrop-filter: blur(10px);
    color: #a78bfa;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    z-index: 2;
}
.video-platform-badge.shopify { color: #96bf48; border-color: rgba(150, 191, 72, 0.4); }
.video-platform-badge.wordpress { color: #38bdf8; border-color: rgba(56, 189, 248, 0.4); }
.video-platform-badge.wix { color: #f43f5e; border-color: rgba(244, 63, 94, 0.4); }

.video-card-content {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.video-category-label {
    font-size: 11px;
    font-weight: 800;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}
.video-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #0f0a1e);
}
html.dark .video-card-title { color: #ffffff !important; }
.video-card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary, #475569);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}
html.dark .video-card-desc { color: #94a3b8 !important; }
.video-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}
.v-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.15);
}
.video-card-action {
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
}
.video-showcase-card:hover .video-card-action {
    gap: 0.7rem;
}

/* Video Filter Buttons */
.video-filter-btns {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.video-filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    color: var(--text-secondary, #64748b);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.video-filter-btn:hover,
.video-filter-btn.active {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}