/* ==============================================================================
   OBK_Web - Dedicated Mobile & Tablet UI Stylesheet
   Meniscus Liquid Morph Dock Navigation & Mobile App Interface
   Strictly Scoped for Mobile/Tablet Breakpoints (<= 991px)
   © 2026 Ömer Berat Keser
   ============================================================================== */

/* Hide mobile-specific components on Desktop */
@media (min-width: 992px) {
    .mobile-only-header,
    .meniscus-dock-wrap,
    .mobile-bottom-nav,
    .mob-hub-drawer,
    .mob-hub-toggle,
    .burger,
    .drawer,
    .backdrop {
        display: none !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
}

/* ==============================================================================
   MOBILE & TABLET BREAKPOINTS (<= 991px)
   Strictly Scoped — Desktop version (>= 992px) is 100% untouched
   ============================================================================== */
@media (max-width: 991px) {

    /* Global Body Adjustments for Mobile */
    body {
        overflow-x: hidden !important;
        background-color: var(--bg-page, #ffffff) !important;
        padding-top: 64px !important;
        padding-bottom: 0 !important; /* Zero padding to eliminate white gaps */
    }

    body.mob-hub-open {
        overflow: hidden !important;
    }

    /* Hide ALL desktop-only navbars, tickers, and compact floating pills */
    #navbar,
    .navbar-custom,
    #floatingCompactWrapper,
    .navbar-floating-compact-wrapper,
    #floatingCompactPill,
    .navbar-floating-compact-pill,
    .scroll-progress {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        top: -9999px !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       1. MOBILE TOP GLASS HEADER & HUB TOGGLE
       ════════════════════════════════════════════════════════════════════════ */
    .mobile-only-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 60px !important;
        background: rgba(255, 255, 255, 0.92) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(226, 232, 240, 0.85) !important;
        z-index: 99999 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    }

    .mob-brand-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text-heading);
    }

    .mob-logo-img {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
    }

    .mob-brand-text {
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: -0.2px;
        color: #0f172a;
    }

    .mob-verified-badge {
        color: #06b6d4;
        font-size: 0.85rem;
        margin-left: 4px;
    }

    .mob-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mob-contact-cta,
    .mob-btn-cta {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 7px 15px !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 45%, #ec4899 100%) !important;
        border-radius: 20px !important;
        text-decoration: none !important;
        box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35) !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }

    .mob-contact-cta:active,
    .mob-btn-cta:active {
        transform: scale(0.96) !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       1. HAMBURGER TRIGGER & CIRCULAR REVEAL DRAWER (FROM obk-hamburger-menu.html)
       ════════════════════════════════════════════════════════════════════════ */
    :root {
      --panel-bg: #0d0e1f;
      --panel-bg-2: #14152c;
      --card-bg: #15132e;
      --line: rgba(255,255,255,.08);
      --ink: #f5f5f7;
      --muted: #8b8fa3;
      --muted-2: #a6a9d6;
      --grad: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
      --cyan: #22d3ee;
      --amber: #fbbf24;
      --violet: #c084fc;
      --emerald: #34d399;
      --indigo: #818cf8;
      --red: #f87171;
      --green: #22c55e;
    }

    /* HAMBURGER TRIGGER */
    .burger {
      position: relative;
      z-index: 60;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: rgba(18,18,36,.65);
      box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 0 0 3px rgba(99,102,241,.12), 0 8px 22px rgba(99,102,241,.22);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 0;
      margin: 0;
      -webkit-tap-highlight-color: transparent;
      transition: transform 0.2s ease;
    }
    .burger:active {
      transform: scale(0.92);
    }
    .burger::after {
      content: '';
      position: absolute;
      inset: -7px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, #6366f1,#a855f7,#ec4899,#6366f1);
      opacity: 0;
      pointer-events: none;
    }
    .burger.pulse::after {
      animation: burgerPulse .65s ease-out;
    }
    @keyframes burgerPulse {
      0% { opacity: .55; transform: scale(.75); }
      100% { opacity: 0; transform: scale(1.55); }
    }
    .burger-lines {
      position: relative;
      width: 18px;
      height: 13px;
    }
    .burger-lines i {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background: #f5f5f7;
      transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .2s ease, top .35s cubic-bezier(.4,0,.2,1);
    }
    .burger-lines i:nth-child(1) { top: 0; }
    .burger-lines i:nth-child(2) { top: 5.5px; }
    .burger-lines i:nth-child(3) { top: 11px; }
    .burger.open .burger-lines i:nth-child(1) { top: 5.5px; transform: rotate(45deg); }
    .burger.open .burger-lines i:nth-child(2) { opacity: 0; }
    .burger.open .burger-lines i:nth-child(3) { top: 5.5px; transform: rotate(-45deg); }
    .burger:focus-visible { outline: 2px solid var(--indigo); outline-offset: 4px; }

    /* BACKDROP */
    .backdrop {
      position: fixed;
      inset: 0;
      z-index: 999990;
      background: rgba(4,4,12,.6);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .5s ease;
    }
    .backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }

    /* DRAWER */
    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      height: 100dvh;
      width: min(430px, 92vw);
      z-index: 999995;
      background: linear-gradient(180deg, var(--panel-bg-2), var(--panel-bg) 40%);
      border-left: 1px solid var(--line);
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      transform-origin: 100% 0%;
      clip-path: circle(0% at 100% 0%);
      transform: scale(.94);
      transition: clip-path .62s cubic-bezier(.16,1,.3,1), transform .62s cubic-bezier(.16,1,.3,1);
      box-sizing: border-box;
    }
    .drawer.open {
      clip-path: circle(150% at 100% 0%);
      transform: scale(1);
    }
    .drawer-scan {
      position: absolute;
      left: -1px;
      width: 4px;
      height: 150px;
      top: -15%;
      background: linear-gradient(180deg, transparent, var(--cyan), var(--violet), #f472b6, transparent);
      filter: blur(2px);
      opacity: 0;
      border-radius: 4px;
      pointer-events: none;
    }
    .drawer.open .drawer-scan {
      animation: scanSweep .9s cubic-bezier(.4,0,.2,1) .05s forwards;
    }
    @keyframes scanSweep {
      0% { top: -15%; opacity: 0; }
      12% { opacity: 1; }
      82% { opacity: 1; }
      100% { top: 100%; opacity: 0; }
    }

    .drawer-inner {
      padding: calc(18px + env(safe-area-inset-top, 0px)) 18px calc(28px + env(safe-area-inset-bottom, 0px));
      box-sizing: border-box;
    }
    .drawer-inner > * {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .45s ease, transform .5s cubic-bezier(.16,1,.3,1);
      transition-delay: calc(var(--i, 0) * 50ms);
    }
    .drawer.open .drawer-inner > * {
      opacity: 1;
      transform: translateY(0);
    }

    /* Header Profile */
    .d-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }
    .d-header-left {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex: 1;
    }
    .drawer-back-btn {
      width: 38px !important;
      height: 38px !important;
      min-width: 38px !important;
      max-width: 38px !important;
      min-height: 38px !important;
      max-height: 38px !important;
      aspect-ratio: 1 / 1 !important;
      flex-shrink: 0 !important;
      border-radius: 50% !important;
      border: 1px solid var(--line) !important;
      background: rgba(255, 255, 255, 0.06) !important;
      color: var(--muted-2) !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer !important;
      padding: 0 !important;
      margin: 0 !important;
      line-height: 1 !important;
      box-sizing: border-box !important;
      -webkit-tap-highlight-color: transparent !important;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .drawer-back-btn:active {
      transform: scale(0.9) translateX(3px) !important;
      background: rgba(99, 102, 241, 0.25) !important;
      border-color: rgba(129, 140, 248, 0.6) !important;
      color: #ffffff !important;
    }
    .drawer-back-btn svg {
      width: 18px !important;
      height: 18px !important;
      transition: transform 0.2s ease;
    }
    .avatar-wrap {
      position: relative;
      width: 52px;
      height: 52px;
      flex: none;
    }
    .avatar-img-custom {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      box-shadow: 0 0 0 2px rgba(129,140,248,.55), 0 0 18px rgba(129,140,248,.35);
    }
    .online-dot {
      position: absolute;
      right: -1px;
      bottom: -1px;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--green);
      border: 2.5px solid var(--panel-bg-2);
    }
    .online-dot::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--green);
      animation: dotPulse 1.8s ease-out infinite;
    }
    @keyframes dotPulse {
      0% { transform: scale(1); opacity: .6; }
      100% { transform: scale(2.4); opacity: 0; }
    }

    .d-name {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 800;
      font-size: 16px;
      color: var(--ink);
    }
    .d-name svg {
      width: 15px;
      height: 15px;
      color: #0d0e1f;
      background: #fff;
      border-radius: 50%;
      padding: 2px;
      box-sizing: border-box;
    }
    .d-role {
      color: var(--muted);
      font-size: 12.5px;
      margin-top: 2px;
    }

    /* AI Card */
    .ai-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(129,140,248,.35);
      border-radius: 20px;
      background: var(--card-bg);
      padding: 16px;
      margin-bottom: 18px;
    }
    .ai-card::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -25%;
      width: 70%;
      height: 90%;
      background: radial-gradient(circle, rgba(168,85,247,.28), transparent 70%);
      pointer-events: none;
    }
    .ai-top {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }
    .bot-avatar {
      position: relative;
      width: 56px !important;
      height: 56px !important;
      min-width: 56px !important;
      min-height: 56px !important;
      flex: none;
      border-radius: 50% !important;
      background: transparent !important;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 !important;
      box-sizing: border-box;
    }
    .bot-avatar-img {
      width: 52px !important;
      height: 52px !important;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.55));
    }
    .bot-avatar::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50% !important;
      border: 1.5px dashed var(--cyan);
      opacity: .85;
      animation: spin 7s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .ai-name-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .ai-name-row strong {
      font-size: 15px;
      font-weight: 800;
      color: var(--ink);
    }
    .badge-online {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: .03em;
      color: var(--green);
      background: rgba(34,197,94,.12);
      border: 1px solid rgba(34,197,94,.4);
      padding: 3px 9px 3px 8px;
      border-radius: 999px;
    }
    .badge-online i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      display: block;
    }
    .ai-sub {
      color: var(--muted-2);
      font-size: 12.5px;
      margin-top: 2px;
    }
    .chat-bubble {
      position: relative;
      margin-top: 14px;
      background: #0a0b18;
      border-radius: 14px;
      padding: 12px 14px;
      font-size: 13.5px;
      line-height: 1.55;
      color: #e7e7ee;
    }
    .chat-bubble b {
      color: var(--cyan);
      font-weight: 700;
    }
    .ai-actions {
      display: flex;
      gap: 10px;
      margin-top: 12px;
      position: relative;
    }
    .ai-actions .btn-ghost,
    .ai-actions .btn-grad {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-family: inherit;
      font-weight: 700;
      font-size: 13px;
      border-radius: 12px;
      padding: 11px 10px;
      cursor: pointer;
      border: 1px solid transparent;
      text-decoration: none;
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }
    .ai-actions .btn-ghost:active,
    .ai-actions .btn-grad:active {
      transform: scale(0.96);
    }
    .ai-actions svg {
      width: 15px;
      height: 15px;
    }
    .btn-ghost {
      background: rgba(99,102,241,.14);
      border-color: rgba(129,140,248,.4) !important;
      color: var(--ink);
    }
    .btn-grad {
      background: var(--grad);
      color: #fff;
      box-shadow: 0 6px 18px rgba(168,85,247,.3);
    }
    @media (max-width: 380px) {
      .ai-actions { flex-direction: column; }
    }

    /* Menu Card */
    .menu-card {
      border: 1px solid var(--line);
      border-radius: 20px;
      background: var(--panel-bg);
      overflow: hidden;
      margin-bottom: 18px;
    }
    .menu-item {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 14px 16px;
      border-bottom: 1px solid var(--line);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s ease;
      box-sizing: border-box;
    }
    .menu-item:last-child {
      border-bottom: none;
    }
    .menu-item:active {
      background: rgba(255,255,255,.05);
    }
    .m-icon {
      width: 40px;
      height: 40px;
      flex: none;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ac);
      background: color-mix(in srgb, var(--ac) 14%, transparent);
      box-shadow: 0 0 14px color-mix(in srgb, var(--ac) 35%, transparent);
      color: var(--ac);
      font-size: 1.15rem;
    }
    .m-icon i {
      font-size: 1.15rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .m-icon svg {
      width: 19px;
      height: 19px;
    }
    .m-text {
      min-width: 0;
      flex: 1;
      text-align: left;
    }
    .m-text strong {
      display: block;
      font-size: 14.5px;
      font-weight: 800;
      color: var(--ink);
    }
    .m-text span {
      display: block;
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .m-right {
      flex: none;
      color: var(--ac);
      display: flex;
      align-items: center;
    }
    .m-right svg {
      width: 17px;
      height: 17px;
    }
    .m-pill {
      font-size: 11px;
      font-weight: 800;
      color: var(--ac);
      background: color-mix(in srgb, var(--ac) 16%, transparent);
      border: 1px solid color-mix(in srgb, var(--ac) 55%, transparent);
      padding: 4px 10px;
      border-radius: 999px;
      white-space: nowrap;
    }

    /* CTA & Socials */
    .cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 14px;
      background: var(--grad);
      color: #fff;
      font-weight: 800;
      font-size: 14.5px;
      cursor: pointer;
      box-shadow: 0 10px 26px rgba(168,85,247,.35);
      font-family: inherit;
      text-decoration: none;
      box-sizing: border-box;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .cta:active {
      transform: scale(0.97);
    }
    .cta svg {
      width: 16px;
      height: 16px;
    }
    .socials {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
    }
    .socials a {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.03);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .socials a:active {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.2);
    }
    .socials svg {
      width: 18px;
      height: 18px;
    }

    .mob-hub-social-row a {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #cbd5e1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mob-hub-social-row a:active {
        transform: scale(0.9);
        color: #ffffff;
        background: rgba(99, 102, 241, 0.3);
    }


    /* ════════════════════════════════════════════════════════════════════════
       2. LUXURY GLASS FLOATING BOTTOM NAVIGATION BAR
       ============================================================================== */
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: calc(14px + env(safe-area-inset-bottom, 12px)) !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        display: flex !important;
        justify-content: center !important;
        pointer-events: none !important;
        padding: 0 16px !important;
    }

    .mobile-bottom-nav__inner {
        position: relative;
        width: min(390px, 100%);
        height: 62px;
        background: rgba(14, 10, 22, 0.86);
        backdrop-filter: blur(28px) saturate(200%);
        -webkit-backdrop-filter: blur(28px) saturate(200%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 34px;
        box-shadow: 0 20px 45px -5px rgba(0, 0, 0, 0.85),
                    inset 0 1px 0 rgba(255, 255, 255, 0.12),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 0 4px;
        pointer-events: auto;
        user-select: none;
        --nav-accent: #c9f24a;
    }

    /* Seamless Sliding Ambient Glow Spotlight (NO harsh border outline) */
    .nav-indicator-pill {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
        z-index: 1;
        background: radial-gradient(circle at 50% 25%, color-mix(in srgb, var(--nav-accent, #c9f24a) 24%, transparent) 0%, transparent 75%);
        transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
                    width 0.3s ease;
        will-change: transform, width;
    }

    /* Top Glowing Neon Light Beam (Dead Centered with left: 50%) */
    .nav-indicator-beam {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 3px;
        border-radius: 0 0 3px 3px;
        background: var(--nav-accent, #c9f24a);
        box-shadow: 0 0 14px 2px var(--nav-accent, #c9f24a), 
                    0 2px 8px var(--nav-accent, #c9f24a);
        transition: background 0.35s ease, box-shadow 0.35s ease;
    }

    /* Individual Navigation Items (Grid Cell Centering) */
    .nav-item {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        background: none;
        border: none;
        cursor: pointer;
        color: #7d788a;
        -webkit-tap-highlight-color: transparent;
        text-decoration: none;
        z-index: 2;
        padding: 0;
        transition: transform 0.15s ease;
    }

    .nav-item:active {
        transform: scale(0.92);
    }

    /* Icon Wrap */
    .nav-item__icon-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 26px;
        transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, filter 0.3s ease;
        color: #7d788a;
    }

    .nav-item__icon-wrap svg {
        width: 22px;
        height: 22px;
        transition: stroke 0.3s ease, fill 0.3s ease;
    }

    /* Active Tab Icon State */
    .nav-item.active .nav-item__icon-wrap {
        transform: translateY(-2px) scale(1.14);
        color: var(--nav-accent, #c9f24a);
        filter: drop-shadow(0 0 12px color-mix(in srgb, var(--nav-accent, #c9f24a) 90%, transparent));
    }

    .nav-item.active .nav-item__icon-wrap svg {
        stroke: var(--nav-accent, #c9f24a);
    }

    /* Active Tab Label */
    .nav-item__label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: #7d788a;
        white-space: nowrap;
        transition: color 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), font-weight 0.2s ease, opacity 0.3s ease;
        transform: translateY(0);
        opacity: 0.75;
    }

    .nav-item.active .nav-item__label {
        color: #ffffff;
        font-weight: 700;
        opacity: 1;
        transform: translateY(-1px);
        text-shadow: 0 0 12px color-mix(in srgb, var(--nav-accent, #c9f24a) 60%, transparent);
    }

    /* ════════════════════════════════════════════════════════════════════════
       3. HERO & SECTION MOBILE RE-LAYOUT
       ════════════════════════════════════════════════════════════════════════ */
    .hero-section {
        padding-top: 15px !important;
        min-height: auto !important;
        text-align: center;
    }

    .hero-container {
        padding: 0 16px !important;
    }

    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    .hero-subtitle {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        margin: 0 auto 20px !important;
    }

    /* Mobile 3D Profile Showcase in Hero Flow */
    .mobile-profile-showcase {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 32px auto 26px auto !important;
        width: 100% !important;
        position: relative !important;
    }

    .mobile-profile-showcase .profile-container {
        width: min(280px, 76vw) !important;
        height: min(280px, 76vw) !important;
        max-width: 280px !important;
        max-height: 280px !important;
        margin: 0 auto !important;
    }

    .mobile-profile-showcase .profile-image-wrapper {
        border-width: 4px !important;
    }

    .mobile-profile-showcase .tech-stack {
        font-size: 0.72rem !important;
        padding: 4px 10px !important;
        border-radius: 20px !important;
    }

    .mobile-profile-showcase .tech-stack.react {
        top: -6px !important;
        left: -10px !important;
    }

    .mobile-profile-showcase .tech-stack.figma {
        top: -6px !important;
        right: -10px !important;
    }

    .mobile-profile-showcase .tech-stack.node {
        bottom: 22px !important;
        left: -12px !important;
    }

    .mobile-profile-showcase .tech-stack.python {
        bottom: 22px !important;
        right: -12px !important;
    }

    .mobile-profile-showcase .profile-bottom-badge {
        bottom: -14px !important;
        font-size: 0.76rem !important;
        padding: 5px 12px !important;
    }

    /* Compact 2x2 Stat Cards */
    .hero-stats-grid,
    .metrics-grid-home {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin: 20px 0 !important;
    }

    .stat-card-item {
        padding: 12px 8px !important;
        border-radius: 14px !important;
    }

    .stat-card-number {
        font-size: 1.5rem !important;
    }

    .stat-card-label {
        font-size: 0.72rem !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       4. HİZMETLER PROMO CARDS (IMAGE 1 SYMMETRY FIX)
       ════════════════════════════════════════════════════════════════════════ */
    .mini-showcase-section {
        padding: 24px 0 !important;
    }

    .mini-showcase-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .mini-showcase-card {
        width: 100% !important;
        padding: 24px 18px !important;
        margin: 0 !important;
        border-radius: 24px !important;
        box-sizing: border-box !important;
    }

    .mini-card-top {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    .mini-floating-pills {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
    }

    .mini-badges-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 16px 0 !important;
    }

    .mini-badges-row .badge-item {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 0.76rem !important;
        padding: 8px 10px !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .mini-card-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        align-items: stretch !important;
        width: 100% !important;
        margin-top: 18px !important;
    }

    .mini-btn-detail,
    .mini-btn-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        border-radius: 14px !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 10px !important;
        white-space: nowrap !important;
        gap: 6px !important;
        box-sizing: border-box !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       5. SOFTWARE KNOWLEDGE ACCORDION (IMAGE 3 SYMMETRY FIX)
       ════════════════════════════════════════════════════════════════════════ */
    .software-knowledge-section {
        width: 100% !important;
        padding: 0 !important;
        margin: 20px auto !important;
    }

    .software-accordion {
        width: 100% !important;
        border-radius: 22px !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: #111422 !important;
        box-sizing: border-box !important;
    }

    .accordion-header {
        padding: 16px 14px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        box-sizing: border-box !important;
        background: transparent !important;
    }

    .accordion-header-left {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        min-width: 0 !important;
        flex: 1 !important;
    }

    .accordion-header-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.25rem !important;
        flex-shrink: 0 !important;
    }

    .accordion-header-text {
        min-width: 0 !important;
        text-align: left !important;
        flex: 1 !important;
    }

    .accordion-title {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        line-height: 1.3 !important;
        display: block !important;
        color: #ffffff !important;
    }

    .accordion-subtitle {
        font-size: 0.72rem !important;
        color: #94a3b8 !important;
        margin-top: 2px !important;
        display: block !important;
        line-height: 1.3 !important;
    }

    .accordion-header-right {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }

    .software-count-badge {
        padding: 6px 10px !important;
        font-size: 0.74rem !important;
        font-weight: 800 !important;
        border-radius: 20px !important;
    }

    .accordion-content {
        padding: 12px 10px 18px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .software-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .software-item {
        width: 100% !important;
        padding: 10px 12px !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        box-sizing: border-box !important;
    }

    .software-item .software-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.1rem !important;
    }

    .software-item .software-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       6. QUICK QUOTE & CONTACT FORM
       ════════════════════════════════════════════════════════════════════════ */
    .contact-section-wrapper,
    .contact-interactive-universe {
        padding: 24px 0 !important;
    }

    .contact-form-card {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 22px 16px !important;
        border-radius: 26px !important;
        box-sizing: border-box !important;
    }

    .service-pill-selector {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .service-pill {
        width: 100% !important;
        padding: 10px 8px !important;
        font-size: 0.78rem !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        box-sizing: border-box !important;
    }

    .service-pill:nth-child(5) {
        grid-column: span 2 !important;
    }

    .form-inputs-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .floating-input-wrap {
        width: 100% !important;
    }

    .budget-pill-group {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .budget-pill {
        width: 100% !important;
        padding: 10px 6px !important;
        font-size: 0.76rem !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .cyber-submit-btn,
    .btn-submit-contact {
        width: 100% !important;
        min-height: 52px !important;
        border-radius: 16px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       7. PROJELERİM SECTION & FILTER BAR (IMAGE 1 SYMMETRY FIX)
       ════════════════════════════════════════════════════════════════════════ */
    .home-projects-heading {
        text-align: left !important;
        margin-bottom: 24px !important;
    }

    .home-projects-title-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        align-items: flex-start !important;
    }

    .home-projects-actions {
        width: 100% !important;
        margin-top: 4px !important;
    }

    .home-projects-contact-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-height: 48px !important;
        padding: 10px 18px !important;
        border-radius: 14px !important;
        font-weight: 700 !important;
        font-size: 0.88rem !important;
        text-align: center !important;
        gap: 8px !important;
        box-sizing: border-box !important;
    }

    .projects-filter-bar {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 8px 2px 14px 2px !important;
        margin: 16px 0 0 0 !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .projects-filter-bar::-webkit-scrollbar {
        display: none !important;
    }

    .filter-pill {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.82rem !important;
        padding: 9px 15px !important;
        border-radius: 20px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       8. PROJECT DETAIL MODAL UI (IMAGE 2 RESPONSIVE FIX)
       ════════════════════════════════════════════════════════════════════════ */
    .project-detail-modal {
        padding: 12px !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }

    .project-detail-dialog {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 92vh !important;
        border-radius: 24px !important;
        margin: 0 auto !important;
    }

    .project-detail-close-btn {
        top: 12px !important;
        right: 12px !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        min-height: 36px !important;
        max-height: 36px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        font-size: 1rem !important;
        background: rgba(15, 23, 42, 0.1) !important;
        z-index: 25 !important;
    }

    .project-detail-body {
        padding: 18px 14px !important;
        max-height: calc(92vh - 20px) !important;
    }

    .modal-project-title {
        font-size: 1.4rem !important;
        line-height: 1.25 !important;
        margin-bottom: 14px !important;
        padding-right: 32px !important;
    }

    .modal-tabs-nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 6px !important;
        width: 100% !important;
        padding: 4px !important;
        border-radius: 12px !important;
        margin-bottom: 16px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .modal-tabs-nav::-webkit-scrollbar {
        display: none !important;
    }

    .modal-tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.78rem !important;
        padding: 8px 12px !important;
        border-radius: 8px !important;
    }

    .modal-gallery-hero {
        border-radius: 14px !important;
        aspect-ratio: 16 / 10 !important;
        margin-bottom: 8px !important;
    }

    .modal-gallery-thumbs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding: 4px 0 10px 0 !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .modal-gallery-thumbs::-webkit-scrollbar {
        display: none !important;
    }

    .modal-thumb-item {
        width: 84px !important;
        height: 52px !important;
        flex-shrink: 0 !important;
        border-radius: 8px !important;
    }

    .modal-feature-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .modal-feature-card {
        padding: 10px 12px !important;
        font-size: 0.84rem !important;
        border-radius: 12px !important;
    }

    .modal-tech-cloud {
        gap: 6px !important;
    }

    .modal-tech-badge {
        font-size: 0.76rem !important;
        padding: 5px 10px !important;
    }

    .modal-action-bar {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: 20px !important;
    }

    .modal-btn-cta,
    .modal-btn-preview {
        width: 100% !important;
        min-height: 48px !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 14px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* ════════════════════════════════════════════════════════════════════════
       9. TOUCH CAROUSELS & GENERAL SECTION CONTROLS
       ════════════════════════════════════════════════════════════════════════ */
    .projects-grid,
    .services-grid-main {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 12px 16px 24px !important;
        margin: 0 -16px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .projects-grid::-webkit-scrollbar,
    .services-grid-main::-webkit-scrollbar {
        display: none;
    }

    .project-card,
    .service-card-main {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        scroll-snap-align: center !important;
        border-radius: 18px !important;
    }

    /* Section Headings on Mobile */
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }

    .section-subtitle {
        font-size: 0.88rem !important;
        padding: 0 10px;
    }

    /* Forms & Estimator Mobile Ergonomics */
    .estimator-container,
    .contact-container {
        padding: 16px !important;
    }

    input, select, textarea, button {
        min-height: 46px !important;
        font-size: 16px !important; /* Prevents auto-zoom on iOS */
    }

    /* ════════════════════════════════════════════════════════════════════════
       10. ULTRA-SYMMETRICAL LUXURY MOBILE FOOTER (#footer)
       ════════════════════════════════════════════════════════════════════════ */
    .cyber-ultimate-footer {
        padding: 48px 16px 120px !important;
        background: #070913 !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .footer-main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
        margin-bottom: 36px !important;
        width: 100% !important;
    }

    /* Sütun 1: Marka & Bio */
    .footer-col.brand-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding-bottom: 24px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .footer-brand-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    .footer-logo-img {
        width: 54px !important;
        height: 54px !important;
        border-radius: 16px !important;
        object-fit: cover !important;
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4) !important;
        margin-bottom: 2px !important;
    }

    .footer-brand-title {
        font-size: 1.35rem !important;
        font-weight: 900 !important;
        color: #ffffff !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .footer-brand-tag {
        font-size: 0.82rem !important;
        color: #a5b4fc !important;
        font-weight: 700 !important;
        text-align: center !important;
        display: block !important;
        margin-top: 2px !important;
    }

    .footer-brand-desc {
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
        color: #94a3b8 !important;
        text-align: center !important;
        max-width: 440px !important;
        margin: 0 auto 16px !important;
    }

    .footer-security-chips {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .footer-security-chips span {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.76rem !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
    }

    /* Sütun Başlıkları - Ortalanmış & Simetrik */
    .footer-col-heading {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin-bottom: 16px !important;
        gap: 8px !important;
    }

    /* Sütun 2: Hızlı Navigasyon 2-Sütunlu Dengeli Izgara */
    .footer-nav-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 14px !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .footer-nav-list li {
        list-style: none !important;
    }

    .footer-nav-list a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 0.88rem !important;
        color: #cbd5e1 !important;
        padding: 4px 0 !important;
    }

    /* Sütun 3: Teknoloji Yığını */
    .footer-tech-cloud {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 7px 9px !important;
        max-width: 440px !important;
        margin: 0 auto !important;
    }

    .footer-tech-chip {
        font-size: 0.78rem !important;
        padding: 0.32rem 0.7rem !important;
        border-radius: 8px !important;
    }

    /* Sütun 4: Canlı İletişim & Sosyal Hub */
    .footer-live-time-card {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        max-width: 320px !important;
        margin: 0 auto 16px !important;
        padding: 10px 18px !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        text-align: left !important;
    }

    .footer-social-hub {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 14px !important;
    }

    .footer-social-btn {
        width: 46px !important;
        height: 46px !important;
        border-radius: 14px !important;
        font-size: 1.25rem !important;
    }

    /* 3. Alt Telif, Hukuki Linkler ve Yukarı Çık Butonu */
    .footer-bottom-bar {
        padding-top: 24px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 16px !important;
    }

    .footer-bottom-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .footer-copyright-text {
        font-size: 0.86rem !important;
        color: #94a3b8 !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .footer-badge-clean {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        font-size: 0.78rem !important;
        padding: 0.3rem 0.8rem !important;
        border-radius: 8px !important;
    }

    .footer-bottom-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px 12px !important;
        max-width: 460px !important;
        margin: 0 auto !important;
    }

    .footer-legal-link {
        font-size: 0.84rem !important;
        color: #94a3b8 !important;
    }

    .footer-link-dot {
        color: #475569 !important;
    }

    .footer-bottom-right {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 4px !important;
    }

    .btn-scroll-to-top {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        min-width: 190px !important;
        padding: 12px 26px !important;
        border-radius: 999px !important;
        font-size: 0.9rem !important;
        font-weight: 800 !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        color: #ffffff !important;
    }
}
