/* =====================================================
   AvancerApp Global Styles - 2026 Design
   ===================================================== */

:root {
    --navy: #0F172A;
    --blue: #2563EB;
    --cyan: #06B6D4;
    --light-bg: #F8FAFC;
    --white: #ffffff;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --card-bg: #ffffff;
    --gradient: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
    --blue-gradient: linear-gradient(135deg, #2563EB, #06B6D4);
    --font: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 56px;
}

.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
    border: none;
}

.btn-primary {
    background: var(--blue-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,.45); }

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

.btn-dark {
    background: var(--navy);
    color: white;
}
.btn-dark:hover { background: var(--blue); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15,23,42,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.navbar-brand .logo-icon {
    width: 36px; height: 36px;
    background: var(--blue-gradient);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900; color: white;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.navbar-nav a {
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all .2s;
}
.navbar-nav a:hover { color: white; background: rgba(255,255,255,.08); }

.navbar-cta {
    background: var(--blue-gradient);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}
.navbar-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.25) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 40% at 30% 80%, rgba(6,182,212,.12) 0%, transparent 60%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,.2);
    border: 1px solid rgba(37,99,235,.4);
    color: #93C5FD;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: .5px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 500;
}
.hero-stat .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

/* Dashboard Mockup — hero-visual container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 500px;
    padding-left: 20px;
    overflow: visible;
}

/* ── LAPTOP DEVICE ── */
.hero-laptop {
    position: relative;
    z-index: 3;
    width: 490px;
    animation: floatUp 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 70px rgba(0,0,0,.6));
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0) perspective(1000px) rotateY(-2deg); }
    50%       { transform: translateY(-14px) perspective(1000px) rotateY(-1deg); }
}

.laptop-lid {
    background: linear-gradient(160deg, #1c2235 0%, #121827 100%);
    border-radius: 14px 14px 4px 4px;
    border: 2px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 10px 10px 6px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 -10px 40px rgba(37,99,235,.12);
}

.laptop-camera-row {
    display: flex;
    justify-content: center;
    margin-bottom: 7px;
}
.laptop-camera {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #263050;
    border: 1px solid rgba(255,255,255,.15);
}

.laptop-screen-inner {
    border-radius: 6px;
    overflow: hidden;
    background: #090d1a;
}

.laptop-hinge {
    height: 5px;
    background: linear-gradient(to right, #0c1020, #1c2235, #0c1020);
    border-left: 2px solid rgba(255,255,255,.07);
    border-right: 2px solid rgba(255,255,255,.07);
}

.laptop-base {
    background: linear-gradient(160deg, #191e30 0%, #101520 100%);
    border-radius: 4px 4px 14px 14px;
    border: 2px solid rgba(255,255,255,.1);
    border-top: none;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.laptop-trackpad {
    width: 66px; height: 11px;
    border-radius: 4px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}

/* ── MINI DASHBOARD INSIDE LAPTOP ── */
.mini-dash {
    display: flex;
    height: 270px;
    background: #0D1526;
}

.mini-sidebar {
    width: 84px;
    background: #080f1e;
    border-right: 1px solid rgba(255,255,255,.06);
    padding: 10px 6px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mini-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px 8px;
    color: white;
    font-weight: 700;
    font-size: 7px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
}
.mini-logo-icon {
    width: 16px; height: 16px;
    border-radius: 4px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
}

.mini-nav {
    padding: 5px 7px;
    border-radius: 5px;
    color: rgba(255,255,255,.38);
    font-size: 7.5px;
    white-space: nowrap;
}
.mini-nav.active {
    background: rgba(37,99,235,.28);
    color: #93C5FD;
    font-weight: 700;
}

.mini-content {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    overflow: hidden;
}

.mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mini-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
}
.mini-header-dots { display: flex; gap: 4px; }
.mini-header-dots span {
    width: 16px; height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,.12);
}
.mini-header-dots span:first-child { background: rgba(37,99,235,.5); width: 22px; }

.mini-kpis {
    display: flex;
    gap: 7px;
}
.mini-kpi {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    padding: 7px 9px;
    flex: 1;
}
.mini-kpi-val { font-size: 12px; font-weight: 900; color: white; line-height: 1; }
.mini-kpi-lbl { font-size: 6.5px; color: rgba(255,255,255,.38); margin: 2px 0 1px; }
.mini-kpi-chg { font-size: 7px; color: #10B981; font-weight: 700; }

.mini-charts {
    display: flex;
    gap: 8px;
    align-items: stretch;
    flex: 1;
}
.mini-line-area {
    flex: 1;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 7px;
    overflow: hidden;
    padding: 6px 4px 0;
}
.mini-donut-wrap { flex-shrink: 0; display: flex; align-items: center; }

.mini-row-metrics {
    display: flex;
    gap: 6px;
}
.mini-row-box {
    flex: 1;
    height: 16px;
    border-radius: 5px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

/* ── FLOATING UPTIME BADGE ── */
.hero-uptime-badge {
    position: absolute;
    bottom: -22px;
    left: 14px;
    background: rgba(16,185,129,.15);
    border: 1px solid rgba(16,185,129,.4);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    z-index: 10;
    animation: floatCard 5s 1s ease-in-out infinite;
}
.hero-uptime-badge .uptime-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
    flex-shrink: 0;
}
.uptime-label  { font-size: 10px; color: rgba(255,255,255,.55); }
.uptime-val    { font-size: 18px; font-weight: 800; color: #10B981; line-height: 1.1; }
.uptime-period { font-size: 8px; color: rgba(255,255,255,.35); }

/* ── MOBILE PHONE DEVICE ── */
.hero-mobile {
    position: absolute;
    right: -28px;
    top: -30px;
    z-index: 5;
    width: 122px;
    background: #0e1424;
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,.2);
    box-shadow:
        0 0 0 5px rgba(255,255,255,.04),
        0 24px 70px rgba(0,0,0,.75),
        inset 0 1px 0 rgba(255,255,255,.1);
    overflow: hidden;
    animation: floatPhone 5s .5s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: rotate(1.5deg) translateY(0); }
    50%       { transform: rotate(0deg) translateY(-12px); }
}

.mobile-notch {
    height: 18px;
    background: #080d18;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-notch::after {
    content: '';
    width: 40px; height: 6px;
    background: #1a2035;
    border-radius: 4px;
}

.mobile-screen {
    background: #0D1526;
    overflow: hidden;
}

.mobile-screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px 4px;
}
.mobile-app-name { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .4px; }
.mobile-dots { font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: 1px; }

.mobile-gauge-wrap {
    width: 84px; height: 84px;
    margin: 4px auto 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-gauge-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.mobile-gauge-center { text-align: center; }
.mobile-gauge-value { font-size: 18px; font-weight: 900; color: white; line-height: 1; }
.mobile-gauge-label { font-size: 8px; color: rgba(255,255,255,.45); margin-top: 1px; }

.mobile-bar-rows {
    padding: 4px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-bar-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-bar-row span {
    font-size: 7px;
    color: rgba(255,255,255,.38);
}
.mobile-bar-fill {
    height: 4px;
    border-radius: 2px;
}

.mobile-home-indicator {
    height: 18px;
    background: #080d18;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-home-indicator::after {
    content: '';
    width: 36px; height: 4px;
    background: rgba(255,255,255,.18);
    border-radius: 2px;
}

/* ── DECORATIVE FLOATING DIAMONDS ── */
.hero-deco {
    position: absolute;
    transform: rotate(45deg);
    border-radius: 5px;
    pointer-events: none;
    z-index: 1;
}
.hd-1 {
    width: 16px; height: 16px;
    top: 30px; right: 14px;
    background: rgba(99,102,241,.18);
    border: 1.5px solid rgba(99,102,241,.55);
    animation: demoDance 4s ease-in-out infinite;
}
.hd-2 {
    width: 11px; height: 11px;
    top: -8px; left: 80px;
    background: rgba(6,182,212,.18);
    border: 1.5px solid rgba(6,182,212,.55);
    animation: demoDance 4s 1.2s ease-in-out infinite;
}
.hd-3 {
    width: 20px; height: 20px;
    bottom: 50px; right: 0px;
    background: rgba(139,92,246,.18);
    border: 1.5px solid rgba(139,92,246,.55);
    animation: demoDance 5s 2s ease-in-out infinite;
}
@keyframes demoDance {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: .7; }
    50%       { transform: rotate(45deg) translateY(-9px); opacity: 1; }
}

/* Hero Floating Cards */
.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,.28);
    z-index: 10;
}
.hero-float-card.ai-card {
    top: -30px;
    left: 8px;
    min-width: 210px;
    animation: floatCard 4s ease-in-out infinite;
}
.float-card-icon {
    font-size: 18px;
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.float-card-content { flex: 1; }
.float-card-title { font-size: 12px; font-weight: 700; color: #1E293B; margin-bottom: 2px; }
.float-card-sub   { font-size: 10px; color: #64748B; line-height: 1.4; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50%       { transform: translateY(-10px) rotate(0deg); }
}

/* Why Choose Us Orb element */
.why-orb {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%,
        rgba(192,132,252,.75) 0%,
        rgba(139,92,246,.5) 18%,
        rgba(99,102,241,.3) 38%,
        rgba(37,99,235,.1) 58%,
        transparent 72%
    );
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
    animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
    0%, 100% { opacity: .85; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.06); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
    flex-shrink: 0;
    min-width: 120px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    flex: 1;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s;
    white-space: nowrap;
}
.trust-logo:hover { color: var(--blue); }

.trust-logo .logo-icon-sm {
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    background: #F1F5F9;
}

.trust-logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-we-do {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue-gradient);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(37,99,235,.12);
    border-color: rgba(37,99,235,.2);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(6,182,212,.1));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
    padding: 100px 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all .3s;
    cursor: pointer;
}

.industry-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,23,42,.15);
}

.industry-card:hover .industry-icon { background: rgba(255,255,255,.1); filter: brightness(5); }
.industry-card:hover .industry-name { color: white; }

.industry-icon {
    width: 48px; height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: all .3s;
}

.industry-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    transition: color .3s;
}

/* ============================================================
   FEATURED SOLUTIONS
   ============================================================ */
.solutions {
    padding: 100px 0;
    background: var(--light-bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.solution-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

.solution-img {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.solution-card:hover .solution-img img {
    transform: scale(1.06);
}

.solution-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,.55));
    pointer-events: none;
    z-index: 1;
}

.solution-body {
    padding: 20px;
}

.solution-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.solution-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.solution-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.solution-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px; right: -150px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
        rgba(139,92,246,.55) 0%,
        rgba(99,102,241,.35) 28%,
        rgba(37,99,235,.2) 50%,
        transparent 68%
    );
    filter: blur(18px);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    top: 15%; right: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,.45) 0%, rgba(99,102,241,.2) 40%, transparent 65%);
    filter: blur(8px);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: start;
    position: relative; z-index: 1;
}

.why-left .section-title { color: white; }
.why-left .section-subtitle { color: rgba(255,255,255,.6); text-align: left; margin: 0 0 32px; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s;
}
.stat-box:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }

.stat-number {
    font-size: 44px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-box {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .3s;
}
.feature-box:hover { background: rgba(255,255,255,.08); }

.feature-box .feat-icon { font-size: 22px; }
.feature-box .feat-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(100% / 14);
    right: calc(100% / 14);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.process-step:hover .step-icon {
    background: var(--blue-gradient);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,99,235,.3);
}

.step-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   CASE STUDY + TESTIMONIALS + CTA
   ============================================================ */
.social-proof {
    padding: 100px 0;
    background: var(--light-bg);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* Case Study */
.case-study-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
}

.case-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.case-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.case-item {
    margin-bottom: 16px;
}

.case-item-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.case-item-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.case-result {
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.08));
    border-radius: 10px;
    padding: 14px;
    margin-top: 16px;
    border: 1px solid rgba(37,99,235,.12);
}

.case-result .result-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    transition: gap .2s;
}
.case-link:hover { gap: 10px; }

/* Testimonials */
.testimonials-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
}

.test-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}

.quote-mark {
    font-size: 60px;
    line-height: .8;
    color: var(--blue);
    opacity: .3;
    font-family: Georgia, serif;
    margin-bottom: 16px;
}

.quote-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--blue-gradient);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

.test-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.test-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .2s;
}
.test-dots span.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* CTA Card */
.cta-card {
    background: var(--gradient);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.4), transparent 70%);
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,.3), transparent 70%);
}

.cta-title {
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative; z-index: 1;
}

.cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 28px;
    line-height: 1.6;
    position: relative; z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative; z-index: 1;
}

.btn-white {
    background: white;
    color: var(--navy);
    font-weight: 700;
}
.btn-white:hover { background: var(--light-bg); transform: translateY(-2px); }

.btn-ghost {
    background: rgba(255,255,255,.1);
    color: white;
    border: 1px solid rgba(255,255,255,.3);
    font-weight: 600;
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

/* ============================================================
   TECHNOLOGY ECOSYSTEM
   ============================================================ */
.tech-ecosystem {
    padding: 100px 0;
    background: var(--white);
}

.tech-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tech-tab {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    background: var(--light-bg);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.tech-tab.active, .tech-tab:hover {
    background: var(--blue-gradient);
    color: white;
    border-color: transparent;
}

.tech-logos-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-logo-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: var(--light-bg);
    border-radius: 14px;
    border: 1px solid var(--border);
    min-width: 90px;
    transition: all .3s;
}

.tech-logo-badge:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15,23,42,.15);
}

.tech-logo-badge:hover .tech-name { color: rgba(255,255,255,.8); }
.tech-logo-badge:hover .tech-emoji { filter: brightness(1.3); }

.tech-emoji { font-size: 32px; }
.tech-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
.tech-logo-badge:hover .tech-logo-img { filter: brightness(1.15) saturate(1.2); }

.tech-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color .3s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 60px 0 0;
    color: rgba(255,255,255,.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    color: rgba(255,255,255,.5);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,.7);
    transition: all .2s;
}
.social-link:hover { background: var(--blue); color: white; }

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    transition: color .2s;
}
.footer-col ul li a:hover { color: white; }

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: white;
    font-size: 13px;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: var(--blue); }

.newsletter-form button {
    padding: 10px 16px;
    background: var(--blue-gradient);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: opacity .2s;
}
.newsletter-form button:hover { opacity: .85; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    transition: color .2s;
}
.footer-links a:hover { color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(4, 1fr); }
    .solutions-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .features-row { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .process-steps::before { display: none; }
    .social-proof-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-ecosystem .tech-logos-row { gap: 14px; }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(4, 1fr); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-logos { gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .cta-buttons { flex-direction: column; }
}
