/* ─── EXTRACTED FROM DETAIL BLADE TEMPLATE ─── */

  /* Ultra-Premium Bento Custom Style Overrides */
  body.page-services-detail {
    background: #030712 !important;
    color: #f9fafb !important;
    font-family: 'Inter', sans-serif !important;
  }
  
  :root {
    --bg0: #030712 !important;
    --bg1: #080d1a !important;
    --bg2: rgba(17, 24, 39, 0.45) !important;
    --bg3: rgba(31, 41, 55, 0.35) !important;
    --bdr: rgba(255, 255, 255, 0.05) !important;
    --bdrh: rgba(6, 182, 212, 0.35) !important;
    --a: #06b6d4 !important; /* Neon Teal */
    --ah: #0891b2 !important;
    --b: #8b5cf6 !important; /* Neon Violet */
    --bh: #7c3aed !important;
    --txs: #9ca3af !important;
    --txm: #6b7280 !important;
  }

  .page-hero {
    padding: 180px 5% 100px !important;
    background: 
      radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.16), transparent 55%),
      radial-gradient(circle at 15% 75%, rgba(139, 92, 246, 0.12), transparent 50%),
      #030712 !important;
    position: relative;
    border-bottom: 1px solid var(--bdr);
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px) !important;
    background-size: 48px 48px !important;
    mask-image: radial-gradient(ellipse 60% 60% at 70% 30%, black, transparent 75%) !important;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 70% 30%, black, transparent 75%) !important;
    pointer-events: none;
  }

  .breadcrumb {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    width: auto !important;
  }

  .breadcrumb a {
    color: var(--txs) !important;
    font-size: 13px !important;
    text-decoration: none;
    transition: color 0.2s;
  }
  .breadcrumb a:hover {
    color: var(--a) !important;
  }
  .breadcrumb span {
    color: var(--txm) !important;
    display: inline-flex;
    align-items: center;
  }
  .breadcrumb .cur {
    color: var(--a) !important;
    font-weight: 700;
  }

  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.08) !important;
    border: 1px solid rgba(6, 182, 212, 0.25) !important;
    color: var(--a) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
  }

  .page-hero h1 {
    font-size: clamp(36px, 5vw, 60px) !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    color: #fff !important;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-desc {
    font-size: 17px !important;
    color: var(--txs) !important;
    line-height: 1.8 !important;
    max-width: 580px;
    margin-bottom: 36px !important;
  }

  .btn-main {
    background: var(--a) !important;
    color: #030712 !important;
    font-weight: 800 !important;
    font-size: 14.5px !important;
    padding: 14px 32px !important;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0) !important;
    text-decoration: none;
  }
  .btn-main:hover {
    background: var(--a) !important;
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3) !important;
    color: #030712 !important;
  }
  .btn-outline {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--bdr) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    padding: 13px 28px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
    text-decoration: none;
  }
  .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
  }

  /* Mock IDE Styles */
  .mock-ide {
    background: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
  .ide-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .ide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .ide-dot.red { background: #ef4444; }
  .ide-dot.yellow { background: #f59e0b; }
  .ide-dot.green { background: #10b981; }
  .ide-title {
    color: var(--txs);
    font-size: 11px;
    margin-left: 10px;
    font-family: sans-serif;
  }
  .ide-body {
    padding: 20px;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }
  .ide-body pre { margin: 0; }
  .ide-body .keyword { color: #f43f5e; }
  .ide-body .function { color: #3b82f6; }
  .ide-body .tag { color: #06b6d4; }
  .ide-body .attr { color: #a855f7; }
  .ide-body .string { color: #10b981; }

  /* Mock Dashboard Styles */
  .mock-dash {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
  }
  .dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .dash-search {
    width: 120px;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
  }
  .dash-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--a);
  }
  .dash-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .dash-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
    text-align: left;
  }
  .dc-title {
    font-size: 10.5px;
    color: var(--txs);
    text-transform: uppercase;
    font-weight: 700;
  }
  .dc-value {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 4px 0 8px;
  }
  .dc-value .up {
    font-size: 10px;
    color: #10b981;
    margin-left: 4px;
  }
  .dc-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
  }
  .dc-bar-chart span {
    flex: 1;
    background: var(--a);
    border-radius: 2px;
    display: block;
    opacity: 0.8;
  }

  /* Mock Phone Styles */
  .mock-phone-wrap {
    position: relative;
    width: 220px;
    margin: 0 auto;
  }
  .mock-phone {
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-radius: 36px;
    background: #030712;
    overflow: hidden;
    aspect-ratio: 9 / 19;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  }
  .phone-screen {
    padding: 16px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .phone-app {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .app-balance {
    margin-bottom: 16px;
  }
  .app-balance span {
    font-size: 9px;
    color: var(--txs);
  }
  .app-balance h3 {
    font-size: 18px;
    color: #fff;
    margin-top: 2px;
    font-weight: 700;
  }
  .app-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .app-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .item-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--b);
  }
  .app-item h4 {
    font-size: 10px;
    color: #fff;
    margin: 0;
  }
  .app-item p {
    font-size: 8px;
    color: var(--txs);
    margin: 0;
  }
  .app-item .val {
    font-size: 9px;
    color: #10b981;
    font-weight: bold;
  }
  .app-item .val-sec {
    color: var(--a);
  }
  .floating-badge {
    position: absolute;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  .badge-1 { top: 20%; left: -60px; border-color: var(--a); }
  .badge-2 { bottom: 30%; right: -60px; border-color: var(--b); }

  /* Mock Brand Guidelines */
  .mock-brand {
    background: rgba(17,24,39,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: left;
  }
  .brand-swatches {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
  }
  .swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
  }
  .swatch.color-a { background: var(--a); }
  .swatch.color-b { background: var(--b); }
  .swatch.color-c { background: #fff; }
  .brand-canvas {
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brand-logo-mark {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--a), var(--b));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .brand-meta {
    position: absolute;
    bottom: 12px;
    left: 12px;
  }
  .bm-line {
    height: 4px;
    width: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-bottom: 4px;
  }
  .bm-line.short { width: 35px; }

  /* Mock Funnel */
  .mock-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .funnel-stage {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  .stage-1 { background: linear-gradient(90deg, rgba(6,182,212,0.2), rgba(6,182,212,0.05)); border: 1px solid rgba(6,182,212,0.3); width: 100%; }
  .stage-2 { background: linear-gradient(90deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05)); border: 1px solid rgba(139,92,246,0.3); width: 80%; }
  .stage-3 { background: linear-gradient(90deg, rgba(236,72,153,0.2), rgba(236,72,153,0.05)); border: 1px solid rgba(236,72,153,0.3); width: 60%; }

  /* Mock Network */
  .mock-network {
    position: relative;
    height: 200px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .node {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 2;
  }
  .central-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--b);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.2);
  }
  .leaf-node {
    background: rgba(17,24,39,0.8);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .node-1 { top: 15%; left: 15%; border-color: var(--a); }
  .node-2 { top: 15%; right: 15%; border-color: var(--a); }
  .node-3 { bottom: 15%; left: 15%; border-color: var(--a); }
  .node-4 { bottom: 15%; right: 15%; border-color: var(--a); }
  .network-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .network-svg line {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 1.5;
    stroke-dasharray: 4;
  }

  /* Alternating Detailed Rows */
  .detail-section {
    padding: 50px 0;
  }
  .detail-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
  }
  .detail-row:last-child {
    margin-bottom: 0;
  }
  .detail-row.flex-row-reverse {
    flex-direction: row-reverse;
  }
  .detail-content {
    flex: 1.2;
    text-align: left;
  }
  .detail-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .detail-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.5px;
  }
  .detail-content p {
    font-size: 15.5px;
    color: var(--txs);
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .detail-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .detail-bullets li {
    font-size: 13.5px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .detail-bullets li i {
    color: var(--a);
    font-size: 16px;
  }

  /* Why Us Row Grid */
  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .why-card {
    background: rgba(17, 24, 39, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s ease;
  }
  .why-card:hover {
    border-color: rgba(6, 182, 212, 0.25);
    transform: translateY(-3px);
  }
  .why-card i {
    font-size: 24px;
    color: var(--a);
    margin-bottom: 18px;
    display: inline-block;
  }
  .why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  .why-card p {
    font-size: 13px;
    color: var(--txs);
    line-height: 1.6;
    margin: 0;
  }

  .tag {
    background: rgba(6, 182, 212, 0.04) !important;
    border: 1px solid rgba(6, 182, 212, 0.15) !important;
    color: #06b6d4 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    display: inline-block;
  }
  .tag:hover {
    background: rgba(6, 182, 212, 0.12) !important;
    border-color: #06b6d4 !important;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
  }

  /* Dynamic Process Grid */
  .proc-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    background: transparent !important;
    border: none !important;
    gap: 20px !important;
    margin-top: 40px;
  }
  .proc-step {
    background: rgba(17, 24, 39, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    transition: all 0.3s ease !important;
    text-align: left;
  }
  .proc-step:hover {
    background: rgba(139, 92, 246, 0.04) !important;
    border-color: rgba(139, 92, 246, 0.25) !important;
    transform: translateY(-3px) !important;
  }
  .ps-n {
    font-size: 12px !important;
    color: var(--b) !important;
    font-weight: 800 !important;
    opacity: 1 !important;
  }
  .ps-ic {
    width: 40px !important;
    height: 40px !important;
    background: rgba(139, 92, 246, 0.08) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    color: var(--b) !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 12px 0;
  }
  .proc-step h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
  }
  .proc-step p {
    font-size: 13.5px !important;
    color: var(--txs) !important;
    line-height: 1.7 !important;
  }

  /* Other Capabilities */
  .other-svcs {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    margin-top: 30px;
  }
  .os-card {
    background: rgba(17, 24, 39, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 14px !important;
    padding: 24px 16px !important;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: all 0.3s ease;
  }
  .os-card:hover {
    border-color: rgba(6, 182, 212, 0.3) !important;
    background: rgba(6, 182, 212, 0.02) !important;
    transform: translateY(-3px) !important;
    color: #fff;
  }
  .os-ic {
    background: rgba(6, 182, 212, 0.06) !important;
    border: 1px solid rgba(6, 182, 212, 0.12) !important;
    color: var(--a) !important;
    width: 44px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px;
  }

  /* Premium CTA Box */
  .cta-box {
    background: rgba(17, 24, 39, 0.45) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(6, 182, 212, 0.15) !important;
    border-radius: 24px !important;
    padding: 80px 48px !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(6, 182, 212, 0.05) !important;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.1), transparent 60%) !important;
    pointer-events: none;
  }

  .hero-visual-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  @media(max-width:991px) {
    .detail-row { flex-direction: column !important; gap: 40px; }
    .why-us-grid { grid-template-columns: 1fr 1fr !important; }
    .tech-row { grid-template-columns: 1fr !important; }
    .proc-grid { grid-template-columns: 1fr 1fr !important; }
    .other-svcs { grid-template-columns: repeat(3, 1fr) !important; }
    .hero-visual-wrapper { display: none !important; }
  }
  @media(max-width:768px) {
    .why-us-grid { grid-template-columns: 1fr !important; }
    .proc-grid { grid-template-columns: 1fr !important; }
    .other-svcs { grid-template-columns: 1fr 1fr !important; }
    .cta-box { padding: 50px 24px !important; }
  }
