
    /* =========================================================
       VIBRANT, IMAGE-HEAVY, SHAPE-DRIVEN THEME
       ========================================================= */
    body.enterprise-theme {
      background: #F4F7FB; /* Clean, very light blue/white */
      color: #0B1120; /* Deep navy instead of grey */
      overflow-x: hidden;
    }

    /* Navbar Pill */
    .enterprise-theme .navbar {
      background: #ffffff !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: none !important;
      border: 1px solid rgba(255, 255, 255, 0.5) !important;
      box-shadow: 0 20px 40px rgba(0, 87, 255, 0.05) !important;
      border-radius: 100px !important;
      margin: 0 30px !important;
      width: calc(100% - 60px) !important;
      top: 30px !important;
      padding: 12px 30px !important;
    }
    .enterprise-theme .navbar .nav-link,
    .enterprise-theme .navbar .logo-text { color: #0B1120 !important; }
    .enterprise-theme .navbar .nav-link svg { stroke: #0B1120 !important; }
    .enterprise-theme .navbar .logo-accent { color: #255bbd !important; } 

    /* Text Gradients */
    .text-gradient-vibrant {
      background: linear-gradient(135deg, #255bbd, #00F0FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    /* --- HERO SECTION --- */
    .creative-hero {
      position: relative;
      padding: 160px 0 100px;
      overflow: hidden;
      background: linear-gradient(180deg, #E6F0FF 0%, #F4F7FB 100%);
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }

    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 900;
      line-height: 1.2;
      color: #0B1120;
      margin-bottom: 24px;
    }

    /* Dynamic Shapes in Hero */
    .hero-visual-area {
      position: relative;
      height: 600px;
    }
    .hero-main-img {
      width: 80%;
      height: 70%;
      object-fit: cover;
      border-radius: 40px 10px 40px 10px;
      position: absolute;
      top: 10%; left: 0;
      box-shadow: 0 30px 60px rgba(0, 87, 255, 0.2);
      border: 4px solid #FFFFFF;
      z-index: 5;
      animation: float-creative 8s infinite ease-in-out alternate;
    }
    .hero-secondary-img {
      width: 50%;
      height: 50%;
      object-fit: cover;
      border-radius: 50%;
      position: absolute;
      bottom: 0; right: 0;
      box-shadow: 0 20px 40px rgba(0, 87, 255, 0.15);
      border: 4px solid #FFFFFF;
      z-index: 6;
      animation: float-creative 10s infinite ease-in-out alternate-reverse;
    }

    .floating-shape-text {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 16px 24px;
      border-radius: 100px;
      box-shadow: 0 20px 40px rgba(0, 87, 255, 0.1);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
      color: #255bbd;
      font-size: 1.1rem;
    }
    .fst-1 { top: 10%; right: 0%; animation-delay: -2s; animation: float-bounce 6s infinite alternate; }
    .fst-2 { bottom: 15%; left: 0%; animation-delay: -4s; animation: float-bounce 7s infinite alternate-reverse; }

    @keyframes float-creative {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-20px); }
    }
    @keyframes float-bounce {
      0% { transform: translateY(0px) scale(1); }
      100% { transform: translateY(-15px) scale(1.05); }
    }

    /* Floating Orbs */
    .bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 1;
      animation: float-orb 15s infinite ease-in-out alternate;
    }
    .orb-blue { width: 40vw; height: 40vw; background: rgba(0, 87, 255, 0.15); top: -10%; right: -5%; }
    .orb-cyan { width: 35vw; height: 35vw; background: rgba(0, 240, 255, 0.15); bottom: -10%; left: -5%; animation-delay: -5s; }

    @keyframes float-orb {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(5vw, -5vw) scale(1.1); }
    }

    /* --- LAYOUT BLOCKS --- */
    .section-wrap {
      padding: 120px 0;
      position: relative;
      z-index: 10;
    }
    
    .glass-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid #FFFFFF;
      border-radius: 32px;
      padding: 50px;
      box-shadow: 0 20px 40px rgba(0, 87, 255, 0.05);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .glass-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 87, 255, 0.15);
    }
    
    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 900;
      color: #0B1120;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    
    /* Replaced all grey texts with deep navy blue */
    .body-text {
      font-size: 1.15rem;
      color: #1E293B; /* Deep slate/navy, not grey */
      line-height: 1.8;
      margin-bottom: 20px;
      font-weight: 500;
    }

    /* Solutions Grid with Images inside */
    .solutions-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .solution-card {
      background: #FFFFFF;
      border-radius: 32px;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(0, 87, 255, 0.05);
      border: 1px solid rgba(0,0,0,0.03);
      display: flex;
      flex-direction: column;
      gap: 24px;
      transition: transform 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .solution-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 60px rgba(0, 240, 255, 0.15);
    }
    .sc-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 16px;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .solution-card:hover .sc-img {
      transform: scale(1.08) rotate(-1deg);
    }
    .sc-content h3 { font-size: 1.8rem; font-weight: 900; color: #0B1120; margin-bottom: 12px; font-family: 'Space Grotesk', sans-serif; }
    .sc-content p { color: #1E293B; font-size: 1.1rem; line-height: 1.7; font-weight: 500; }

    /* Process Zigzag Layout */
    .process-step {
      display: flex;
      align-items: center;
      gap: 60px;
      margin-bottom: 60px;
    }
    .process-step:nth-child(even) {
      flex-direction: row-reverse;
    }
    .ps-visual {
      flex: 1;
      position: relative;
    }
    .ps-img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: 32px;
      box-shadow: 0 20px 40px rgba(0, 87, 255, 0.1);
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .ps-visual:hover .ps-img {
      transform: scale(1.04) translateY(-10px) rotate(1deg);
      box-shadow: 0 40px 80px rgba(0, 240, 255, 0.25);
    }
    .ps-num-shape {
      position: absolute;
      top: -20px; left: -20px;
      width: 80px; height: 80px;
      background: linear-gradient(135deg, #255bbd, #00F0FF);
      color: white;
      border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem; font-weight: 900; font-family: 'Space Grotesk', sans-serif;
      box-shadow: 0 15px 30px rgba(0, 87, 255, 0.3);
      transform: rotate(-10deg);
    }
    .process-step:nth-child(even) .ps-num-shape {
      left: auto; right: -20px; transform: rotate(10deg);
    }
    .ps-content {
      flex: 1;
    }
    .ps-content h3 { font-size: 2.2rem; font-weight: 900; color: #0B1120; margin-bottom: 16px; font-family: 'Space Grotesk', sans-serif; }

    /* List Styles */
    .vibrant-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .vibrant-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 1.2rem;
      color: #0B1120;
      font-weight: 700;
      background: #FFFFFF;
      padding: 16px 24px;
      border-radius: 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    }
    .vibrant-list li .v-icon {
      width: 32px; height: 32px;
      background: #00F0FF;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #0B1120;
    }

    /* Huge Colorful CTA */
    .huge-cta-wrap {
      background: #0B1120;
      color: white;
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
    }
    .cta-glass-panel {
      position: relative;
      z-index: 10;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(0, 240, 255, 0.2);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      border-radius: 40px;
      padding: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      max-width: 1400px;
      margin: 0 auto;
      box-shadow: 0 40px 80px rgba(0, 240, 255, 0.1);
    }
    .cta-left-content {
      flex: 1;
    }
    .cta-right-box {
      flex: 0 0 400px;
      position: relative;
    }
    .cta-right-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 32px;
      border: 2px solid rgba(0, 240, 255, 0.5);
      animation: float-creative 6s infinite ease-in-out alternate;
    }

    /* --- ANIMATIONS --- */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .hero-container, .process-step { flex-direction: column; }
      .solutions-grid { grid-template-columns: 1fr; }
      .cta-glass-panel { flex-direction: column; padding: 40px 24px; text-align: center; }
      .cta-right-box { width: 100%; }
      .hero-visual-area { height: 400px; width: 100%; }
    }
  
    /* --- NEW HERO VISUALS --- */
    .hero-box {
      position: relative;
      z-index: 10;
    }
    .floating-badge {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 87, 255, 0.2);
      padding: 12px 24px;
      border-radius: 100px;
      font-weight: 700;
      color: #255bbd;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      z-index: 20;
      font-family: 'Space Grotesk', sans-serif;
      animation: float-badge 6s ease-in-out infinite alternate;
      pointer-events: none;
    }
    .fb-1 { top: -20px; left: 5%; animation-delay: 0s; }
    .fb-2 { top: 30%; right: -30px; animation-delay: -2s; border-color: rgba(37, 91, 189, 0.2); color: #1E40AF;}
    .fb-3 { bottom: 10%; left: -40px; animation-delay: -4s; border-color: rgba(234, 88, 12, 0.2); color: #ea580c;}
    .fb-4 { bottom: -20px; right: 10%; animation-delay: -1s; }
    .fb-5 { top: -30px; right: 15%; animation-delay: -3s; border-color: rgba(2, 132, 199, 0.2); color: #0284c7;}

    @keyframes float-badge {
      0% { transform: translateY(0px) rotate(0deg); }
      100% { transform: translateY(-15px) rotate(3deg); }
    }

    /* Browser Mockup */
    .hero-browser-mockup {
      margin-top: 60px;
      background: #0f172a;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 30px 60px rgba(0, 87, 255, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.5);
      overflow: hidden;
      text-align: left;
      transform: perspective(1000px) rotateX(3deg) translateY(0);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      position: relative;
      z-index: 15;
    }
    .hero-browser-mockup:hover {
      transform: perspective(1000px) rotateX(0deg) translateY(-10px);
      box-shadow: 0 40px 80px rgba(0, 87, 255, 0.25), 0 0 0 4px #255bbd;
    }
    .browser-header {
      background: #1e293b;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .browser-dot {
      width: 12px; height: 12px; border-radius: 50%;
    }
    .dot-r { background: #1E3A8A; }
    .dot-y { background: #3B82F6; }
    .dot-g { background: #1E3A8A; }
    .browser-url {
      background: #0f172a;
      border-radius: 6px;
      padding: 4px 12px;
      color: #94a3b8;
      font-size: 12px;
      margin: 0 auto;
      transform: translateX(-24px);
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: monospace;
    }
    .browser-body {
      padding: 30px;
      height: 280px;
      position: relative;
      background: #0f172a;
      overflow: hidden;
      display: flex;
    }
    
    .mockup-code-area {
      flex: 1;
    }
    .code-line {
      font-family: 'Consolas', 'Courier New', monospace;
      font-size: 14px;
      color: #cbd5e1;
      margin-bottom: 10px;
      white-space: nowrap;
      overflow: hidden;
      width: 0;
    }
    .c-p { color: #c084fc; }
    .c-b { color: #60a5fa; }
    .c-g { color: #34d399; }
    .c-y { color: #fbd38d; }
    .c-pk { color: #f472b6; }
    
    .typing-1 { animation: typing 1s steps(30, end) forwards; }
    .typing-2 { animation: typing 1s steps(30, end) forwards; animation-delay: 1s; }
    .typing-3 { animation: typing 1s steps(30, end) forwards; animation-delay: 2s; }
    .typing-4 { animation: typing 1s steps(30, end) forwards; animation-delay: 3s; }
    .typing-5 { animation: typing 1s steps(30, end) forwards; animation-delay: 4s; }
    
    @keyframes typing {
      from { width: 0; border-right: 2px solid #38bdf8; }
      to { width: 100%; border-right: 2px solid transparent; }
    }
    
    .ui-blocks {
      flex: 0.8;
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding-left: 20px;
      border-left: 1px solid rgba(255,255,255,0.05);
    }
    .ui-b {
      background: #1e293b;
      border-radius: 8px;
      height: 40px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    .ui-b::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
      animation: shimmer 3s infinite;
    }
    .ui-b.b2 { width: 80%; animation-delay: 0.5s; }
    .ui-b.b3 { width: 90%; animation-delay: 1s; }
    .ui-b.img-block { flex: 1; border-radius: 12px; }
    @keyframes shimmer { 100% { left: 200%; } }

    @media (max-width: 768px) {
      .floating-badge { display: none; }
      .ui-blocks { display: none; }
      .hero-browser-mockup { margin-top: 40px; }
      .browser-body { height: 200px; padding: 20px; }
    }

  
    /* --- DEVICE MOCKUPS FOR SECTION 4 --- */
    .device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: none;
      margin: 0 auto;
      align-items: stretch;
    }

    .dev-mockup {
      background: #ffffff;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .dev-mockup:hover {
      transform: translateY(-8px);
      box-shadow: 0 40px 80px rgba(0, 87, 255, 0.15), 0 0 0 4px rgba(0,87,255,0.05);
    }

    /* Smartphone */
    .dev-phone {
      border: 14px solid #0f172a;
      border-radius: 40px;
      max-width: 340px;
      margin: 0 auto;
      height: 100%;
    }
    .dev-phone-notch {
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 130px; height: 26px;
      background: #0f172a;
      border-bottom-left-radius: 18px;
      border-bottom-right-radius: 18px;
      z-index: 2;
    }

    /* Desktop/Browser */
    .dev-browser {
      border: 6px solid #e2e8f0;
      border-radius: 16px;
      border-bottom-width: 20px;
      height: 100%;
    }
    .dev-browser-bar {
      background: #f1f5f9;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid #e2e8f0;
    }
    .dev-browser-dot { width: 12px; height: 12px; border-radius: 50%; }

    /* Tablet (Spans Full Width) */
    .dev-tablet {
      border: 14px solid #1e293b;
      border-radius: 28px;
      grid-column: auto;
      max-width: none;
      height: 100%;
    }
    .dev-laptop {
      border: 8px solid #0f172a;
      border-radius: 16px 16px 0 0;
      border-bottom-width: 24px;
      position: relative;
      height: 100%;
    }
    .dev-laptop::after {
      content: '';
      position: absolute;
      bottom: -24px;
      left: -8%;
      width: 116%;
      height: 12px;
      background: #94a3b8;
      border-radius: 0 0 16px 16px;
    }


    /* Content Styling */
    .dev-content {
      padding: 50px 30px;
      flex: 1;
      background: #f8fafc;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }
    .dev-phone .dev-content { padding-top: 60px; }
    .dev-content h3 {
      font-size: 1.6rem;
      color: #0F172A;
      margin-bottom: 16px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
    }
    .dev-content p {
      color: #475569;
      line-height: 1.7;
      font-size: 1.05rem;
    }
    .dev-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }

    @media (max-width: 1024px) {
      .device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: none;
      margin: 0 auto;
      align-items: stretch;
    }
      .dev-tablet {
      border: 14px solid #1e293b;
      border-radius: 28px;
      grid-column: auto;
      max-width: none;
      height: 100%;
    }
    .dev-laptop {
      border: 8px solid #0f172a;
      border-radius: 16px 16px 0 0;
      border-bottom-width: 24px;
      position: relative;
      height: 100%;
    }
    .dev-laptop::after {
      content: '';
      position: absolute;
      bottom: -24px;
      left: -8%;
      width: 116%;
      height: 12px;
      background: #94a3b8;
      border-radius: 0 0 16px 16px;
    }

    }

  
    /* --- SIDE IMAGES FOR SECTION 4 HEADER --- */
    .section-header-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 60px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .header-side-img {
      display: none;
    }
    @media (min-width: 900px) {
      .header-side-img {
        display: block;
        flex-shrink: 0;
      }
    }

  
    /* --- AGGRESSIVE SPACE REDUCTION --- */
    .parallax-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        min-height: auto !important;
    }
    .hero-parallax {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
    }
    .content-box {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .section-wrap {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    .timeline-container {
        margin-top: 30px !important;
    }
    .glass-grid {
        margin-bottom: 30px !important;
    }
    .section-header-wrapper {
        margin-bottom: 30px !important;
    }
    .device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: none;
      margin: 0 auto;
      align-items: stretch;
    }
    
    /* CTA BUBBLES NEW STYLES */
    .cta-bubble {
        border-radius: 50% !important;
        position: absolute;
        bottom: -250px !important;
        top: auto !important;
        animation-name: float-up !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
        pointer-events: none;
        
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 80%) !important;
        box-shadow: 
            inset 0 0 20px rgba(255, 255, 255, 0.6),
            inset 10px 0 30px rgba(255, 255, 255, 0.3),
            inset -10px 0 30px rgba(255, 255, 255, 0.3),
            inset 0 -10px 30px rgba(255, 255, 255, 0.3),
            0 10px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
        backdrop-filter: blur(4px) !important;
    }
    
    @keyframes float-up {
        0% { transform: translateY(0) scale(1); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-800px) scale(1.2); opacity: 0; }
    }

        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(800px) scale(1.1); opacity: 0; }
    }
    
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-500px) scale(1.2); opacity: 0; }
    }
    .cta-bubble.b1 { width: 120px !important; height: 120px !important; left: 5% !important; animation-duration: 12s !important; animation-delay: 0s !important; }
    .cta-bubble.b2 { width: 80px !important; height: 80px !important; left: 15% !important; animation-duration: 15s !important; animation-delay: 3s !important; }
    .cta-bubble.b3 { width: 200px !important; height: 200px !important; left: 30% !important; animation-duration: 20s !important; animation-delay: 1s !important; }
    .cta-bubble.b4 { width: 60px !important; height: 60px !important; left: 45% !important; animation-duration: 10s !important; animation-delay: 5s !important; }
    .cta-bubble.b5 { width: 150px !important; height: 150px !important; left: 60% !important; animation-duration: 18s !important; animation-delay: 2s !important; }
    .cta-bubble.b6 { width: 90px !important; height: 90px !important; left: 75% !important; animation-duration: 14s !important; animation-delay: 6s !important; }
    .cta-bubble.b7 { width: 250px !important; height: 250px !important; left: 85% !important; animation-duration: 25s !important; animation-delay: 0s !important; }
    .cta-bubble.b8 { width: 40px !important; height: 40px !important; left: 95% !important; animation-duration: 8s !important; animation-delay: 4s !important; }
    .cta-bubble.b9 { width: 110px !important; height: 110px !important; left: 25% !important; animation-duration: 16s !important; animation-delay: 8s !important; }
    .cta-bubble.b10 { width: 180px !important; height: 180px !important; left: 65% !important; animation-duration: 22s !important; animation-delay: 7s !important; }
    .cta-bubble.b11 { width: 70px !important; height: 70px !important; left: 10% !important; animation-duration: 11s !important; animation-delay: 9s !important; }
    .cta-bubble.b12 { width: 130px !important; height: 130px !important; left: 55% !important; animation-duration: 17s !important; animation-delay: 4s !important; }
    
/* Fix massive-cta container padding */
    .massive-cta {
        padding: 50px 30px !important;
    }

  
    
    /* --- ANIMATED BACKGROUND ORBS --- */
    .bg-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 0;
        animation: orb-drift 20s infinite alternate ease-in-out;
        pointer-events: none;
    }
    .orb-1 { width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; background: rgba(192, 132, 252, 0.4); top: -10%; left: -10%; }
    .orb-2 { width: 60vw; height: 60vw; max-width: 700px; max-height: 700px; background: rgba(56, 189, 248, 0.3); bottom: -20%; right: -10%; animation-delay: -5s; }
    .orb-3 { width: 40vw; height: 40vw; max-width: 500px; max-height: 500px; background: rgba(232, 121, 249, 0.3); top: 30%; left: 30%; animation-delay: -10s; }
    
    @keyframes orb-drift {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10vw, 5vh) scale(1.1); }
        100% { transform: translate(-5vw, 15vh) scale(0.9); }
    }

    
    
    
    
    
    /* --- SECTION 3 FLEX ACCORDION --- */
    .flex-accordion {
        display: flex;
        gap: 20px;
        height: 360px;
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .flex-panel {
        position: relative;
        border-radius: 32px;
        background-size: cover;
        background-position: center;
        color: white;
        cursor: pointer;
        flex: 1;
        transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.1);
    }
    .flex-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
        z-index: 1;
        transition: opacity 0.5s ease;
    }
    
    .flex-panel.step-1 { background: linear-gradient(135deg, #1a3f8f, #255bbd); }
    .flex-panel.step-2 { background: linear-gradient(135deg, #1e4db7, #3570d4); }
    .flex-panel.step-3 { background: linear-gradient(135deg, #0d2d6e, #1a4fa0); }

    .flex-panel:hover {
        flex: 5;
    }
    .flex-panel:hover::before {
        opacity: 0.3; /* Lighten slightly on hover */
    }

    .panel-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 35px 30px;
        transform: translateY(10px);
        transition: transform 0.5s ease, background 0.5s ease;
    }
    .flex-panel:hover .panel-content {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .panel-icon {
        position: absolute;
        top: -25px;
        right: 25px;
        width: 50px; height: 50px;
        background: linear-gradient(135deg, #60A5FA, #1D4ED8);
        box-shadow: 0 10px 20px rgba(37, 91, 189, 0.3);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.2rem;
        font-weight: 800;
        color: white;
        transition: transform 0.5s ease;
    }
    .flex-panel:hover .panel-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .panel-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 0px;
        white-space: nowrap;
        transition: font-size 0.5s ease, margin-bottom 0.5s ease;
        color: white;
    }
    .flex-panel:hover .panel-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .panel-desc {
        opacity: 0;
        max-height: 0;
        transition: opacity 0.5s ease 0.1s, max-height 0.5s ease 0.1s;
        font-size: 1.1rem;
        line-height: 1.7;
        color: rgba(255,255,255,0.85);
        white-space: normal;
        min-width: 350px;
        overflow: hidden;
    }
    .flex-panel:hover .panel-desc {
        opacity: 1;
        max-height: 250px;
    }

    @media (max-width: 900px) {
        .flex-accordion {
            flex-direction: column;
            height: 700px;
        }
        .panel-desc {
            min-width: 100%;
        }
    }

    /* ---/* --- SECTION 3 STEPPER CARDS --- */
    .stepper-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-top: 60px;
        margin-bottom: 60px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    .step-card {
        position: relative;
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 60px;
        overflow: hidden;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        width: 85%;
    }
    .step-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 40px 80px rgba(37, 91, 189, 0.15);
        border-color: rgba(37, 91, 189, 0.5);
    }
    .step-card.left { align-self: flex-start; }
    .step-card.right { align-self: flex-end; }
    
    .step-bg-number {
        position: absolute;
        top: -30px;
        right: -10px;
        font-size: 16rem;
        font-weight: 900;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 3px rgba(37, 91, 189, 0.15);
        z-index: 0;
        pointer-events: none;
        transition: all 0.6s ease;
        font-family: 'Space Grotesk', sans-serif;
    }
    .step-card:hover .step-bg-number {
        -webkit-text-stroke: 3px rgba(37, 91, 189, 0.7);
        transform: scale(1.05) translateY(-10px);
        text-shadow: 0 0 50px rgba(37, 91, 189, 0.3);
    }
    
    .step-content { position: relative; z-index: 1; max-width: 75%; }
    .step-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 25px;
        background: linear-gradient(90deg, #1e1b4b, #1D4ED8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .step-desc {
        font-size: 1.2rem;
        color: #475569;
        line-height: 1.8;
    }

    @media (max-width: 768px) {
        .step-card { width: 100%; padding: 40px 30px; }
        .step-bg-number { font-size: 10rem; right: 10px; top: 0; opacity: 0.5; }
        .step-content { max-width: 100%; }
        .step-title { font-size: 1.8rem; }
    }

    
    
    /* --- SECTION 5 SOLUTION CARDS --- */
    .custom-solutions-grid {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .solution-card {
        padding: 30px;
        border-radius: 24px;
        height: 100%;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        text-align: left;
        border: 1px solid rgba(255,255,255,0.8);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .solution-card:hover {
        transform: translateY(-10px);
        z-index: 2;
    }
    .solution-card.light-purple { background: linear-gradient(135deg, #ffffff, #ffffff); box-shadow: 0 15px 30px rgba(37, 91, 189, 0.1); }
    .solution-card.light-blue { background: linear-gradient(135deg, #e0f2fe, #f0f9ff); box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1); }
    .solution-card.light-pink { background: linear-gradient(135deg, #ffffff, #ffffff); box-shadow: 0 15px 30px rgba(37, 91, 189, 0.1); }
    
    /* Subtle decorative blobs inside cards */
    .solution-card::after {
        content: '';
        position: absolute;
        top: -20%; right: -20%;
        width: 150px; height: 150px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
        z-index: -1;
    }

    .solution-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: white;
        width: 70px; height: 70px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .solution-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 15px;
    }
    .solution-card p {
        color: #475569;
        line-height: 1.6;
        margin-bottom: 0;
        font-size: 1.05rem;
    }

    /* --- EXPANDED LAYOUT & DECORATIONS --- */
    .container-expanded {
        max-width: 1600px !important;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    .bg-text-vertical {
        position: absolute;
        font-size: 10rem;
        font-weight: 900;
        color: transparent;
        -webkit-text-stroke: 2px rgba(37, 91, 189, 0.08);
        writing-mode: vertical-rl;
        text-transform: uppercase;
        letter-spacing: 20px;
        z-index: 0;
        pointer-events: none;
        user-select: none;
        white-space: nowrap;
    }
    .bg-text-left { left: 1%; top: 5%; animation: float-slow 15s ease-in-out infinite; }
    .bg-text-right { right: 1%; bottom: 5%; transform: rotate(180deg); animation: float-slow 15s ease-in-out infinite reverse; }
    
    .floating-code-snippet {
        position: absolute;
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(37, 91, 189, 0.3);
        border-radius: 12px;
        padding: 15px 20px;
        color: #34d399;
        font-family: 'Courier New', monospace;
        font-size: 0.95rem;
        z-index: 0;
        pointer-events: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        animation: float-tilt 8s ease-in-out infinite;
        white-space: pre;
    }
    .code-1 { top: 20%; right: 5%; }
    .code-2 { bottom: 15%; left: 3%; animation-delay: -2s; }
    .code-3 { top: 40%; left: 2%; color: #60a5fa; border-color: rgba(96, 165, 250, 0.3); }
    .code-4 { bottom: 25%; right: 4%; color: #f472b6; border-color: rgba(244, 114, 182, 0.3); animation-delay: -4s; }

    @media (max-width: 1400px) {
        .bg-text-vertical { display: none; }
        .floating-code-snippet { display: none; }
    }

    /* --- BENTO BOX UI CSS --- */
    .bento-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 220px);
        gap: 24px;
        margin-top: 20px;
        margin-bottom: 60px;
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .bento-card {
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 40px;
        position: relative;
        overflow: hidden;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
        box-shadow: 0 15px 35px rgba(0,0,0,0.04);
        display: flex;
        flex-direction: column;
    }
    .bento-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 40px 80px rgba(37, 91, 189, 0.15);
        border-color: rgba(37, 91, 189, 0.5);
    }
    .bento-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }
    
    /* Card 1: Hero (2x2) */
    .bento-hero {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        background: linear-gradient(135deg, #0f172a 0%, #0a1a3a 100%);
        color: white;
        justify-content: center;
        border: 1px solid rgba(37, 91, 189, 0.3);
    }
    .bento-hero .bento-title {
        color: white;
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    .bento-hero p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.25rem;
        max-width: 90%;
        position: relative;
        z-index: 2;
    }
    .bento-hero::after {
        content: '';
        position: absolute;
        top: -30%; right: -20%;
        width: 80%; height: 80%;
        background: radial-gradient(circle, rgba(37, 91, 189, 0.25) 0%, transparent 60%);
        animation: pulse-slow 10s infinite alternate;
        z-index: 1;
        pointer-events: none;
    }

    /* Card 2: SEO (2x1) */
    .bento-seo {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
        padding-bottom: 20px;
    }
    .bento-seo .seo-chart {
        position: absolute;
        bottom: 0; right: 0;
        width: 100%; height: 50%;
        background: linear-gradient(to top, rgba(37, 91, 189, 0.15), transparent);
        border-top: 3px solid #1E40AF;
        clip-path: polygon(0 100%, 0 80%, 20% 50%, 40% 70%, 60% 30%, 80% 40%, 100% 10%, 100% 100%);
        z-index: 1;
    }

    /* Card 3: UX Tablet (1x2) */
    .bento-ux {
        grid-column: 3 / 4;
        grid-row: 2 / 4;
        background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(241, 245, 249, 0.9));
    }
    .bento-ux .embedded-img {
        position: absolute;
        bottom: -20%; right: -30%;
        width: 140%;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
        z-index: 1;
        transition: transform 0.6s ease;
    }
    .bento-ux:hover .embedded-img {
        transform: scale(1.08) translateY(-5%);
    }

    /* Card 4: Credibility (1x1) */
    .bento-credibility {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .bento-credibility .shield-icon {
        width: 70px; height: 70px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.1);
        color: #255bbd;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 20px;
        animation: pulse-ring 2.5s infinite;
        position: relative;
        z-index: 2;
    }

    /* Card 5: Marketing (2x1) */
    .bento-marketing {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        flex-direction: row;
        align-items: center;
    }
    .bento-marketing .content-wrap { width: 65%; position: relative; z-index: 2;}
    .bento-marketing .shape-wrap {
        position: absolute;
        right: 0; top: 0;
        width: 45%; height: 100%;
        display: flex; align-items: center; justify-content: center;
        z-index: 1;
    }
    .bento-marketing .shape-wrap img {
        width: 80%;
        filter: hue-rotate(120deg) drop-shadow(0 15px 25px rgba(0,0,0,0.1));
        animation: float-slow 8s infinite alternate;
    }

    /* Card 6: E-commerce Phone (1x1) */
    .bento-ecommerce {
        grid-column: 4 / 5;
        grid-row: 3 / 4;
    }
    .bento-ecommerce .embedded-phone {
        position: absolute;
        bottom: -20%; right: -20%;
        width: 120%;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
        z-index: 1;
        transition: transform 0.6s ease;
    }
    .bento-ecommerce:hover .embedded-phone {
        transform: scale(1.08) translateY(-5%);
    }

    @media (max-width: 991px) {
        .bento-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }
        .bento-card {
            grid-column: 1 / -1 !important;
            grid-row: auto !important;
            min-height: 280px;
        }
        .bento-hero .bento-title { font-size: 2.2rem; }
        .bento-ux .embedded-img { width: 100%; bottom: -40%; right: 0; }
        .bento-ecommerce .embedded-phone { width: 90%; bottom: -20%; right: 0; }
        .bento-marketing { flex-direction: column; text-align: center; }
        .bento-marketing .content-wrap { width: 100%; margin-bottom: 20px; }
        .bento-marketing .shape-wrap { position: relative; width: 100%; height: 150px; }
    }

    /* --- SECTION 2 BEAUTIFICATION --- */
    .sec2-tablet {
        position: absolute;
        top: 5%;
        left: -8%;
        width: clamp(250px, 28vw, 450px);
        animation: float-tilt 12s ease-in-out infinite;
        z-index: 10;
        filter: drop-shadow(0 40px 50px rgba(0,0,0,0.3));
    }
    .sec2-phone {
        position: absolute;
        bottom: -5%;
        right: -5%;
        width: clamp(180px, 20vw, 350px);
        animation: float-up-down 9s ease-in-out infinite reverse;
        z-index: 10;
        filter: drop-shadow(0 40px 50px rgba(0,0,0,0.3));
    }
    
    .bg-parallax-2 .glass-grid .glass-card {
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease, border 0.5s ease;
        border: 1px solid rgba(255,255,255,0.5);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.85) !important;
    }
    .bg-parallax-2 .glass-grid .glass-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 40px 80px rgba(192, 132, 252, 0.4) !important;
        border: 1px solid rgba(192, 132, 252, 0.8);
    }
    .bg-parallax-2 .glass-grid .glass-card::before {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(37, 91, 189, 0.15) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
        z-index: 0;
    }
    .bg-parallax-2 .glass-grid .glass-card:hover::before {
        opacity: 1;
    }
    .bg-parallax-2 .glass-grid .glass-card > * {
        position: relative;
        z-index: 1;
    }

    .bg-parallax-2 .deco-sphere-1 {
        width: 350px !important;
        left: 5% !important;
        top: 20% !important;
        opacity: 0.2 !important;
        z-index: 0 !important;
        filter: hue-rotate(60deg) saturate(150%) !important;
    }
    .bg-parallax-2 .deco-cube-1 {
        width: 300px !important;
        right: 2% !important;
        bottom: 10% !important;
        opacity: 0.2 !important;
        z-index: 0 !important;
    }

    @media (max-width: 1200px) {
        .sec2-tablet, .sec2-phone { opacity: 0.15; filter: blur(5px); z-index: 0; pointer-events: none; }
    }

    /* --- FLOATING DECORATIONS --- */
    .hero-left-phone {
        position: absolute;
        top: 35%;
        left: 0%;
        width: clamp(180px, 22vw, 350px);
        animation: float-slow 6s ease-in-out infinite;
        z-index: 10;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    }
    .hero-right-phone {
        position: absolute;
        top: 45%;
        right: 0%;
        width: clamp(180px, 22vw, 350px);
        animation: float-slow 7.5s ease-in-out infinite reverse;
        z-index: 10;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    }
    @media (max-width: 1200px) {
        .hero-left-phone, .hero-right-phone { opacity: 0.15; filter: blur(3px); z-index: 0; pointer-events: none; }
    }
    .deco-sphere-1 {
        position: absolute;
        bottom: 5%;
        left: 2%;
        width: 180px;
        animation: float-up-down 8s ease-in-out infinite;
        opacity: 0.85;
        z-index: 0;
        pointer-events: none;
    }
    .deco-cube-1 {
        position: absolute;
        top: 10%;
        right: 3%;
        width: 140px;
        animation: float-tilt 9s ease-in-out infinite;
        opacity: 0.85;
        z-index: 0;
        pointer-events: none;
    }
    .deco-sphere-2 {
        position: absolute;
        top: 45%;
        right: -2%;
        width: 260px;
        animation: float-up-down 11s ease-in-out infinite reverse;
        opacity: 0.6;
        z-index: 0;
        pointer-events: none;
    }
    .deco-cube-2 {
        position: absolute;
        bottom: 10%;
        left: -2%;
        width: 200px;
        animation: float-tilt 12s ease-in-out infinite reverse;
        opacity: 0.7;
        z-index: 0;
        pointer-events: none;
    }
    @keyframes float-slow {
        0%, 100% { transform: translateY(0) rotate(-2deg); }
        50% { transform: translateY(-25px) rotate(2deg); }
    }
    @keyframes float-up-down {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-30px) scale(1.05); }
    }
    @keyframes float-tilt {
        0%, 100% { transform: translateY(0) rotate(-10deg); }
        50% { transform: translateY(-30px) rotate(5deg); }
    }
    .parallax-section { position: relative; overflow: hidden; }
    .content-box { position: relative; z-index: 2; }

  
    /* --- NEW FOOLPROOF CUSTOM SOLUTIONS --- */
    .custom-solutions-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
        width: 100%;
    }
    .cs-row-top {
        display: flex;
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        width: 100%;
        max-width: 100%; /* Allow it to stretch to the full limits of the parent */
        flex-wrap: nowrap;
    }
    .cs-row-bottom {
        display: none;
    }
    .cs-card {
        flex: 1; /* This is the magic! It forces the cards to expand and evenly fill all the empty breadth space! */
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 24px;
        padding: 40px 30px; /* Restore comfortable padding since they are wide now */
        text-align: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .cs-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    }
    .cs-card.wide {
        width: 100%; /* Spans full width of the 900px row */
        max-width: 600px;
    }
    .cs-card.purple-glow { background: linear-gradient(135deg, #ffffff, #ffffff); border-color: rgba(37, 91, 189, 0.2); }
    .cs-card.purple-glow:hover { border-color: rgba(37, 91, 189, 0.5); box-shadow: 0 20px 45px rgba(37, 91, 189, 0.15); }

    .cs-card.blue-glow { background: linear-gradient(135deg, #e0f2fe, #f0f9ff); border-color: rgba(14, 165, 233, 0.2); }
    .cs-card.blue-glow:hover { border-color: rgba(14, 165, 233, 0.5); box-shadow: 0 20px 45px rgba(14, 165, 233, 0.15); }

    .cs-card.pink-glow { background: linear-gradient(135deg, #ffffff, #ffffff); border-color: rgba(37, 91, 189, 0.2); }
    .cs-card.pink-glow:hover { border-color: rgba(37, 91, 189, 0.5); box-shadow: 0 20px 45px rgba(37, 91, 189, 0.15); }
    
    .cs-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: white;
        width: 70px; height: 70px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .cs-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 15px;
    }
    .cs-card p {
        color: #475569;
        line-height: 1.6;
        margin-bottom: 0;
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        /* Stack all 3 on mobile/tablets */
        .cs-row-top { flex-direction: column; align-items: center; }
        .cs-card { width: 100%; max-width: 450px; }
    }


    /* Blend Sections */
    .section-blend {
      position: relative;
      -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent 100%);
      mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent 100%);
      margin-bottom: -150px;
      padding-bottom: 230px !important;
    }


    /* =========================================================
       LIGHT AI FIXED BACKGROUND THEME
       ========================================================= */
    body.light-ai-theme {
      background: #ffffff;
      color: #0F172A; /* Deep navy text for readability */
      font-family: 'Inter', sans-serif;
    }
    
    /* Fixed Parallax Backgrounds */
    .bg-parallax-1 {
      background-image:
        radial-gradient(circle at 15% 50%, rgba(37, 91, 189, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(0, 0, 0, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 60% 80%, rgba(37, 91, 189, 0.12) 0%, transparent 40%),
        linear-gradient(135deg, #f0f4ff 0%, #ffffff 40%, #e8eef8 70%, #dce6f5 100%);
      background-size: cover;
      background-attachment: fixed;
      background-repeat: no-repeat;
    }
    .bg-parallax-2 {
      background-image: url('../../../assets/images/bg_digital_light_2.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
    }

    /* Content Wrapper to allow background to peek through */
    .parallax-section {
      position: relative;
      padding: 140px 24px;
    }
    
    /* Hero specific padding */
    .hero-parallax {
      padding: 240px 24px 160px;
    }

    /* Content Box (Frosted Glass) */
    .content-box {
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 30px;
      padding: 60px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,255,0.5);
    }
    
    .hero-box {
      text-align: center;
      background: rgba(255, 255, 255, 0.9);
    }

    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(48px, 6vw, 84px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #0F172A;
    }

    .text-gradient {
      background: linear-gradient(135deg, #255bbd, #1E40AF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .hero-subtitle {
      font-size: 1.35rem;
      color: #475569;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto;
    }
    .hero-subtitle span { color: #0F172A; font-weight: 600; }

    /* Glass Cards Grid */
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-header h2 {
      font-size: clamp(32px, 4vw, 56px);
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
      color: #0F172A;
      margin-bottom: 20px;
    }
    .section-header p {
      font-size: 1.2rem; color: #475569; max-width: 800px; margin: 0 auto; line-height: 1.6;
    }

    .glass-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 1);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }
    .glass-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 2px rgba(37, 99, 235, 0.1);
    }

    .glass-card-icon {
      width: 60px; height: 60px;
      border-radius: 16px;
      background: rgba(37, 99, 235, 0.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      color: #255bbd;
    }
    .glass-card h3 {
      font-size: 1.5rem;
      margin-bottom: 16px;
      color: #0F172A;
      font-weight: 700;
    }
    .glass-card p {
      color: #475569;
      line-height: 1.7;
    }

    /* Timeline */
    .timeline-container {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }
    .timeline-container::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0; left: 24px;
      width: 2px;
      background: rgba(37, 99, 235, 0.2);
    }
    .timeline-item {
      position: relative;
      padding-left: 70px;
      margin-bottom: 50px;
    }
    .timeline-dot {
      position: absolute;
      left: 14px; top: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: #255bbd;
      border: 4px solid #fff;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }
    .timeline-content h3 { font-size: 1.5rem; color: #0F172A; margin-bottom: 16px; font-weight: 700;}
    .timeline-content p { color: #475569; line-height: 1.7; font-size: 1.1rem; }

    /* Massive CTA */
    .massive-cta {
      text-align: center;
      padding: 80px 40px;
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      border-radius: 30px;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.2);
    }
    .massive-cta::before {
      content: '';
      position: absolute; top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
      animation: rotate-bg 20s linear infinite;
    }
    @keyframes rotate-bg {
      100% { transform: rotate(360deg); }
    }
    .massive-cta h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; font-family: 'Space Grotesk', sans-serif; position: relative; z-index: 2; margin-bottom: 20px;}
    .massive-cta p { font-size: 1.2rem; color: #cbd5e1; max-width: 700px; margin: 0 auto; position: relative; z-index: 2;}
    .btn-blueprint {
      display: inline-block;
      padding: 18px 40px;
      background: #255bbd;
      color: #fff;
      border-radius: 100px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }
    .btn-blueprint:hover {
      background: #1d4ed8;
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    }
    
    /* Animations */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .timeline-container::before { left: 15px; }
      .timeline-dot { left: 5px; }
      .timeline-item { padding-left: 50px; }
    }
  
    /* --- NEW HERO VISUALS --- */
    .hero-box {
      position: relative;
      z-index: 10;
    }
    .floating-badge {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 87, 255, 0.2);
      padding: 12px 24px;
      border-radius: 100px;
      font-weight: 700;
      color: #255bbd;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      z-index: 20;
      font-family: 'Space Grotesk', sans-serif;
      animation: float-badge 6s ease-in-out infinite alternate;
      pointer-events: none;
    }
    .fb-1 { top: -20px; left: 5%; animation-delay: 0s; }
    .fb-2 { top: 30%; right: -30px; animation-delay: -2s; border-color: rgba(37, 91, 189, 0.2); color: #1E40AF;}
    .fb-3 { bottom: 10%; left: -40px; animation-delay: -4s; border-color: rgba(234, 88, 12, 0.2); color: #ea580c;}
    .fb-4 { bottom: -20px; right: 10%; animation-delay: -1s; }
    .fb-5 { top: -30px; right: 15%; animation-delay: -3s; border-color: rgba(2, 132, 199, 0.2); color: #0284c7;}

    @keyframes float-badge {
      0% { transform: translateY(0px) rotate(0deg); }
      100% { transform: translateY(-15px) rotate(3deg); }
    }

    /* Browser Mockup */
    .hero-browser-mockup {
      margin-top: 60px;
      background: #0f172a;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 30px 60px rgba(0, 87, 255, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.5);
      overflow: hidden;
      text-align: left;
      transform: perspective(1000px) rotateX(3deg) translateY(0);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      position: relative;
      z-index: 15;
    }
    .hero-browser-mockup:hover {
      transform: perspective(1000px) rotateX(0deg) translateY(-10px);
      box-shadow: 0 40px 80px rgba(0, 87, 255, 0.25), 0 0 0 4px #255bbd;
    }
    .browser-header {
      background: #1e293b;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .browser-dot {
      width: 12px; height: 12px; border-radius: 50%;
    }
    .dot-r { background: #1E3A8A; }
    .dot-y { background: #3B82F6; }
    .dot-g { background: #1E3A8A; }
    .browser-url {
      background: #0f172a;
      border-radius: 6px;
      padding: 4px 12px;
      color: #94a3b8;
      font-size: 12px;
      margin: 0 auto;
      transform: translateX(-24px);
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: monospace;
    }
    .browser-body {
      padding: 30px;
      height: 280px;
      position: relative;
      background: #0f172a;
      overflow: hidden;
      display: flex;
    }
    
    .mockup-code-area {
      flex: 1;
    }
    .code-line {
      font-family: 'Consolas', 'Courier New', monospace;
      font-size: 14px;
      color: #cbd5e1;
      margin-bottom: 10px;
      white-space: nowrap;
      overflow: hidden;
      width: 0;
    }
    .c-p { color: #c084fc; }
    .c-b { color: #60a5fa; }
    .c-g { color: #34d399; }
    .c-y { color: #fbd38d; }
    .c-pk { color: #f472b6; }
    
    .typing-1 { animation: typing 1s steps(30, end) forwards; }
    .typing-2 { animation: typing 1s steps(30, end) forwards; animation-delay: 1s; }
    .typing-3 { animation: typing 1s steps(30, end) forwards; animation-delay: 2s; }
    .typing-4 { animation: typing 1s steps(30, end) forwards; animation-delay: 3s; }
    .typing-5 { animation: typing 1s steps(30, end) forwards; animation-delay: 4s; }
    
    @keyframes typing {
      from { width: 0; border-right: 2px solid #38bdf8; }
      to { width: 100%; border-right: 2px solid transparent; }
    }
    
    .ui-blocks {
      flex: 0.8;
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding-left: 20px;
      border-left: 1px solid rgba(255,255,255,0.05);
    }
    .ui-b {
      background: #1e293b;
      border-radius: 8px;
      height: 40px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    .ui-b::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
      animation: shimmer 3s infinite;
    }
    .ui-b.b2 { width: 80%; animation-delay: 0.5s; }
    .ui-b.b3 { width: 90%; animation-delay: 1s; }
    .ui-b.img-block { flex: 1; border-radius: 12px; }
    @keyframes shimmer { 100% { left: 200%; } }

    @media (max-width: 768px) {
      .floating-badge { display: none; }
      .ui-blocks { display: none; }
      .hero-browser-mockup { margin-top: 40px; }
      .browser-body { height: 200px; padding: 20px; }
    }

  
    /* --- DEVICE MOCKUPS FOR SECTION 4 --- */
    .device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: none;
      margin: 0 auto;
      align-items: stretch;
    }

    .dev-mockup {
      background: #ffffff;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .dev-mockup:hover {
      transform: translateY(-8px);
      box-shadow: 0 40px 80px rgba(0, 87, 255, 0.15), 0 0 0 4px rgba(0,87,255,0.05);
    }

    /* Smartphone */
    .dev-phone {
      border: 14px solid #0f172a;
      border-radius: 40px;
      max-width: 340px;
      margin: 0 auto;
      height: 100%;
    }
    .dev-phone-notch {
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 130px; height: 26px;
      background: #0f172a;
      border-bottom-left-radius: 18px;
      border-bottom-right-radius: 18px;
      z-index: 2;
    }

    /* Desktop/Browser */
    .dev-browser {
      border: 6px solid #e2e8f0;
      border-radius: 16px;
      border-bottom-width: 20px;
      height: 100%;
    }
    .dev-browser-bar {
      background: #f1f5f9;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid #e2e8f0;
    }
    .dev-browser-dot { width: 12px; height: 12px; border-radius: 50%; }

    /* Tablet (Spans Full Width) */
    .dev-tablet {
      border: 14px solid #1e293b;
      border-radius: 28px;
      grid-column: auto;
      max-width: none;
      height: 100%;
    }
    .dev-laptop {
      border: 8px solid #0f172a;
      border-radius: 16px 16px 0 0;
      border-bottom-width: 24px;
      position: relative;
      height: 100%;
    }
    .dev-laptop::after {
      content: '';
      position: absolute;
      bottom: -24px;
      left: -8%;
      width: 116%;
      height: 12px;
      background: #94a3b8;
      border-radius: 0 0 16px 16px;
    }


    /* Content Styling */
    .dev-content {
      padding: 50px 30px;
      flex: 1;
      background: #f8fafc;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }
    .dev-phone .dev-content { padding-top: 60px; }
    .dev-content h3 {
      font-size: 1.6rem;
      color: #0F172A;
      margin-bottom: 16px;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
    }
    .dev-content p {
      color: #475569;
      line-height: 1.7;
      font-size: 1.05rem;
    }
    .dev-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }

    @media (max-width: 1024px) {
      .device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: none;
      margin: 0 auto;
      align-items: stretch;
    }
      .dev-tablet {
      border: 14px solid #1e293b;
      border-radius: 28px;
      grid-column: auto;
      max-width: none;
      height: 100%;
    }
    .dev-laptop {
      border: 8px solid #0f172a;
      border-radius: 16px 16px 0 0;
      border-bottom-width: 24px;
      position: relative;
      height: 100%;
    }
    .dev-laptop::after {
      content: '';
      position: absolute;
      bottom: -24px;
      left: -8%;
      width: 116%;
      height: 12px;
      background: #94a3b8;
      border-radius: 0 0 16px 16px;
    }

    }

  
    /* --- SIDE IMAGES FOR SECTION 4 HEADER --- */
    .section-header-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 60px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .header-side-img {
      display: none;
    }
    @media (min-width: 900px) {
      .header-side-img {
        display: block;
        flex-shrink: 0;
      }
    }

  
    /* --- AGGRESSIVE SPACE REDUCTION --- */
    .parallax-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        min-height: auto !important;
    }
    .hero-parallax {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
    }
    .content-box {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .section-wrap {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    .timeline-container {
        margin-top: 30px !important;
    }
    .glass-grid {
        margin-bottom: 30px !important;
    }
    .section-header-wrapper {
        margin-bottom: 30px !important;
    }
    .device-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      width: 100%;
      max-width: none;
      margin: 0 auto;
      align-items: stretch;
    }
    
    /* CTA BUBBLES NEW STYLES */
    .cta-bubble {
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 50% !important;
        position: absolute;
        animation: float-up infinite linear;
        pointer-events: none;
    }
    
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-500px) scale(1.2); opacity: 0; }
    }
    .cta-bubble.b1 { width: 120px !important; height: 120px !important; left: 5% !important; animation-duration: 12s !important; animation-delay: 0s !important; }
    .cta-bubble.b2 { width: 80px !important; height: 80px !important; left: 15% !important; animation-duration: 15s !important; animation-delay: 3s !important; }
    .cta-bubble.b3 { width: 200px !important; height: 200px !important; left: 30% !important; animation-duration: 20s !important; animation-delay: 1s !important; }
    .cta-bubble.b4 { width: 60px !important; height: 60px !important; left: 45% !important; animation-duration: 10s !important; animation-delay: 5s !important; }
    .cta-bubble.b5 { width: 150px !important; height: 150px !important; left: 60% !important; animation-duration: 18s !important; animation-delay: 2s !important; }
    .cta-bubble.b6 { width: 90px !important; height: 90px !important; left: 75% !important; animation-duration: 14s !important; animation-delay: 6s !important; }
    .cta-bubble.b7 { width: 250px !important; height: 250px !important; left: 85% !important; animation-duration: 25s !important; animation-delay: 0s !important; }
    .cta-bubble.b8 { width: 40px !important; height: 40px !important; left: 95% !important; animation-duration: 8s !important; animation-delay: 4s !important; }
    .cta-bubble.b9 { width: 110px !important; height: 110px !important; left: 25% !important; animation-duration: 16s !important; animation-delay: 8s !important; }
    .cta-bubble.b10 { width: 180px !important; height: 180px !important; left: 65% !important; animation-duration: 22s !important; animation-delay: 7s !important; }
    .cta-bubble.b11 { width: 70px !important; height: 70px !important; left: 10% !important; animation-duration: 11s !important; animation-delay: 9s !important; }
    .cta-bubble.b12 { width: 130px !important; height: 130px !important; left: 55% !important; animation-duration: 17s !important; animation-delay: 4s !important; }
    
/* Fix massive-cta container padding */
    .massive-cta {
        padding: 50px 30px !important;
    }

  
    
    /* --- ANIMATED BACKGROUND ORBS --- */
    .bg-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 0;
        animation: orb-drift 20s infinite alternate ease-in-out;
        pointer-events: none;
    }
    .orb-1 { width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; background: rgba(192, 132, 252, 0.4); top: -10%; left: -10%; }
    .orb-2 { width: 60vw; height: 60vw; max-width: 700px; max-height: 700px; background: rgba(56, 189, 248, 0.3); bottom: -20%; right: -10%; animation-delay: -5s; }
    .orb-3 { width: 40vw; height: 40vw; max-width: 500px; max-height: 500px; background: rgba(232, 121, 249, 0.3); top: 30%; left: 30%; animation-delay: -10s; }
    
    @keyframes orb-drift {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10vw, 5vh) scale(1.1); }
        100% { transform: translate(-5vw, 15vh) scale(0.9); }
    }

    
    
    
    
    
    /* --- SECTION 3 FLEX ACCORDION --- */
    .flex-accordion {
        display: flex;
        gap: 20px;
        height: 360px;
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .flex-panel {
        position: relative;
        border-radius: 32px;
        background-size: cover;
        background-position: center;
        color: white;
        cursor: pointer;
        flex: 1;
        transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.1);
    }
    .flex-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
        z-index: 1;
        transition: opacity 0.5s ease;
    }
    
    .flex-panel.step-1 { background: linear-gradient(135deg, #1a3f8f, #255bbd); }
    .flex-panel.step-2 { background: linear-gradient(135deg, #1e4db7, #3570d4); }
    .flex-panel.step-3 { background: linear-gradient(135deg, #0d2d6e, #1a4fa0); }

    .flex-panel:hover {
        flex: 5;
    }
    .flex-panel:hover::before {
        opacity: 0.3; /* Lighten slightly on hover */
    }

    .panel-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 35px 30px;
        transform: translateY(10px);
        transition: transform 0.5s ease, background 0.5s ease;
    }
    .flex-panel:hover .panel-content {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .panel-icon {
        position: absolute;
        top: -25px;
        right: 25px;
        width: 50px; height: 50px;
        background: linear-gradient(135deg, #60A5FA, #1D4ED8);
        box-shadow: 0 10px 20px rgba(37, 91, 189, 0.3);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.2rem;
        font-weight: 800;
        color: white;
        transition: transform 0.5s ease;
    }
    .flex-panel:hover .panel-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .panel-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 0px;
        white-space: nowrap;
        transition: font-size 0.5s ease, margin-bottom 0.5s ease;
        color: white;
    }
    .flex-panel:hover .panel-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .panel-desc {
        opacity: 0;
        max-height: 0;
        transition: opacity 0.5s ease 0.1s, max-height 0.5s ease 0.1s;
        font-size: 1.1rem;
        line-height: 1.7;
        color: rgba(255,255,255,0.85);
        white-space: normal;
        min-width: 350px;
        overflow: hidden;
    }
    .flex-panel:hover .panel-desc {
        opacity: 1;
        max-height: 250px;
    }

    @media (max-width: 900px) {
        .flex-accordion {
            flex-direction: column;
            height: 700px;
        }
        .panel-desc {
            min-width: 100%;
        }
    }

    /* ---/* --- SECTION 3 STEPPER CARDS --- */
    .stepper-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-top: 60px;
        margin-bottom: 60px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    .step-card {
        position: relative;
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 60px;
        overflow: hidden;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        width: 85%;
    }
    .step-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 40px 80px rgba(37, 91, 189, 0.15);
        border-color: rgba(37, 91, 189, 0.5);
    }
    .step-card.left { align-self: flex-start; }
    .step-card.right { align-self: flex-end; }
    
    .step-bg-number {
        position: absolute;
        top: -30px;
        right: -10px;
        font-size: 16rem;
        font-weight: 900;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 3px rgba(37, 91, 189, 0.15);
        z-index: 0;
        pointer-events: none;
        transition: all 0.6s ease;
        font-family: 'Space Grotesk', sans-serif;
    }
    .step-card:hover .step-bg-number {
        -webkit-text-stroke: 3px rgba(37, 91, 189, 0.7);
        transform: scale(1.05) translateY(-10px);
        text-shadow: 0 0 50px rgba(37, 91, 189, 0.3);
    }
    
    .step-content { position: relative; z-index: 1; max-width: 75%; }
    .step-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 25px;
        background: linear-gradient(90deg, #1e1b4b, #1D4ED8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .step-desc {
        font-size: 1.2rem;
        color: #475569;
        line-height: 1.8;
    }

    @media (max-width: 768px) {
        .step-card { width: 100%; padding: 40px 30px; }
        .step-bg-number { font-size: 10rem; right: 10px; top: 0; opacity: 0.5; }
        .step-content { max-width: 100%; }
        .step-title { font-size: 1.8rem; }
    }

    
    
    /* --- SECTION 5 SOLUTION CARDS --- */
    .custom-solutions-grid {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .solution-card {
        padding: 30px;
        border-radius: 24px;
        height: 100%;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        text-align: left;
        border: 1px solid rgba(255,255,255,0.8);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .solution-card:hover {
        transform: translateY(-10px);
        z-index: 2;
    }
    .solution-card.light-purple { background: linear-gradient(135deg, #ffffff, #ffffff); box-shadow: 0 15px 30px rgba(37, 91, 189, 0.1); }
    .solution-card.light-blue { background: linear-gradient(135deg, #e0f2fe, #f0f9ff); box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1); }
    .solution-card.light-pink { background: linear-gradient(135deg, #ffffff, #ffffff); box-shadow: 0 15px 30px rgba(37, 91, 189, 0.1); }
    
    /* Subtle decorative blobs inside cards */
    .solution-card::after {
        content: '';
        position: absolute;
        top: -20%; right: -20%;
        width: 150px; height: 150px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
        z-index: -1;
    }

    .solution-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: white;
        width: 70px; height: 70px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .solution-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 15px;
    }
    .solution-card p {
        color: #475569;
        line-height: 1.6;
        margin-bottom: 0;
        font-size: 1.05rem;
    }

    /* --- EXPANDED LAYOUT & DECORATIONS --- */
    .container-expanded {
        max-width: 1600px !important;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    .bg-text-vertical {
        position: absolute;
        font-size: 10rem;
        font-weight: 900;
        color: transparent;
        -webkit-text-stroke: 2px rgba(37, 91, 189, 0.08);
        writing-mode: vertical-rl;
        text-transform: uppercase;
        letter-spacing: 20px;
        z-index: 0;
        pointer-events: none;
        user-select: none;
        white-space: nowrap;
    }
    .bg-text-left { left: 1%; top: 5%; animation: float-slow 15s ease-in-out infinite; }
    .bg-text-right { right: 1%; bottom: 5%; transform: rotate(180deg); animation: float-slow 15s ease-in-out infinite reverse; }
    
    .floating-code-snippet {
        position: absolute;
        background: rgba(15, 23, 42, 0.7);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(37, 91, 189, 0.3);
        border-radius: 12px;
        padding: 15px 20px;
        color: #34d399;
        font-family: 'Courier New', monospace;
        font-size: 0.95rem;
        z-index: 0;
        pointer-events: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        animation: float-tilt 8s ease-in-out infinite;
        white-space: pre;
    }
    .code-1 { top: 20%; right: 5%; }
    .code-2 { bottom: 15%; left: 3%; animation-delay: -2s; }
    .code-3 { top: 40%; left: 2%; color: #60a5fa; border-color: rgba(96, 165, 250, 0.3); }
    .code-4 { bottom: 25%; right: 4%; color: #f472b6; border-color: rgba(244, 114, 182, 0.3); animation-delay: -4s; }

    @media (max-width: 1400px) {
        .bg-text-vertical { display: none; }
        .floating-code-snippet { display: none; }
    }

    /* --- BENTO BOX UI CSS --- */
    .bento-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 220px);
        gap: 24px;
        margin-top: 20px;
        margin-bottom: 60px;
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .bento-card {
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 40px;
        position: relative;
        overflow: hidden;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
        box-shadow: 0 15px 35px rgba(0,0,0,0.04);
        display: flex;
        flex-direction: column;
    }
    .bento-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 40px 80px rgba(37, 91, 189, 0.15);
        border-color: rgba(37, 91, 189, 0.5);
    }
    .bento-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0F172A;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }
    
    /* Card 1: Hero (2x2) */
    .bento-hero {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        background: linear-gradient(135deg, #0f172a 0%, #0a1a3a 100%);
        color: white;
        justify-content: center;
        border: 1px solid rgba(37, 91, 189, 0.3);
    }
    .bento-hero .bento-title {
        color: white;
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    .bento-hero p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.25rem;
        max-width: 90%;
        position: relative;
        z-index: 2;
    }
    .bento-hero::after {
        content: '';
        position: absolute;
        top: -30%; right: -20%;
        width: 80%; height: 80%;
        background: radial-gradient(circle, rgba(37, 91, 189, 0.25) 0%, transparent 60%);
        animation: pulse-slow 10s infinite alternate;
        z-index: 1;
        pointer-events: none;
    }

    /* Card 2: SEO (2x1) */
    .bento-seo {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
        padding-bottom: 20px;
    }
    .bento-seo .seo-chart {
        position: absolute;
        bottom: 0; right: 0;
        width: 100%; height: 50%;
        background: linear-gradient(to top, rgba(37, 91, 189, 0.15), transparent);
        border-top: 3px solid #1E40AF;
        clip-path: polygon(0 100%, 0 80%, 20% 50%, 40% 70%, 60% 30%, 80% 40%, 100% 10%, 100% 100%);
        z-index: 1;
    }

    /* Card 3: UX Tablet (1x2) */
    .bento-ux {
        grid-column: 3 / 4;
        grid-row: 2 / 4;
        background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(241, 245, 249, 0.9));
    }
    .bento-ux .embedded-img {
        position: absolute;
        bottom: -20%; right: -30%;
        width: 140%;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
        z-index: 1;
        transition: transform 0.6s ease;
    }
    .bento-ux:hover .embedded-img {
        transform: scale(1.08) translateY(-5%);
    }

    /* Card 4: Credibility (1x1) */
    .bento-credibility {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .bento-credibility .shield-icon {
        width: 70px; height: 70px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.1);
        color: #255bbd;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 20px;
        animation: pulse-ring 2.5s infinite;
        position: relative;
        z-index: 2;
    }

    /* Card 5: Marketing (2x1) */
    .bento-marketing {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        flex-direction: row;
        align-items: center;
    }
    .bento-marketing .content-wrap { width: 65%; position: relative; z-index: 2;}
    .bento-marketing .shape-wrap {
        position: absolute;
        right: 0; top: 0;
        width: 45%; height: 100%;
        display: flex; align-items: center; justify-content: center;
        z-index: 1;
    }
    .bento-marketing .shape-wrap img {
        width: 80%;
        filter: hue-rotate(120deg) drop-shadow(0 15px 25px rgba(0,0,0,0.1));
        animation: float-slow 8s infinite alternate;
    }

    /* Card 6: E-commerce Phone (1x1) */
    .bento-ecommerce {
        grid-column: 4 / 5;
        grid-row: 3 / 4;
    }
    .bento-ecommerce .embedded-phone {
        position: absolute;
        bottom: -20%; right: -20%;
        width: 120%;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
        z-index: 1;
        transition: transform 0.6s ease;
    }
    .bento-ecommerce:hover .embedded-phone {
        transform: scale(1.08) translateY(-5%);
    }

    @media (max-width: 991px) {
        .bento-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }
        .bento-card {
            grid-column: 1 / -1 !important;
            grid-row: auto !important;
            min-height: 280px;
        }
        .bento-hero .bento-title { font-size: 2.2rem; }
        .bento-ux .embedded-img { width: 100%; bottom: -40%; right: 0; }
        .bento-ecommerce .embedded-phone { width: 90%; bottom: -20%; right: 0; }
        .bento-marketing { flex-direction: column; text-align: center; }
        .bento-marketing .content-wrap { width: 100%; margin-bottom: 20px; }
        .bento-marketing .shape-wrap { position: relative; width: 100%; height: 150px; }
    }

    /* --- SECTION 2 BEAUTIFICATION --- */
    .sec2-tablet {
        position: absolute;
        top: 5%;
        left: -8%;
        width: clamp(250px, 28vw, 450px);
        animation: float-tilt 12s ease-in-out infinite;
        z-index: 10;
        filter: drop-shadow(0 40px 50px rgba(0,0,0,0.3));
    }
    .sec2-phone {
        position: absolute;
        bottom: -5%;
        right: -5%;
        width: clamp(180px, 20vw, 350px);
        animation: float-up-down 9s ease-in-out infinite reverse;
        z-index: 10;
        filter: drop-shadow(0 40px 50px rgba(0,0,0,0.3));
    }
    
    .bg-parallax-2 .glass-grid .glass-card {
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease, border 0.5s ease;
        border: 1px solid rgba(255,255,255,0.5);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.85) !important;
    }
    .bg-parallax-2 .glass-grid .glass-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 40px 80px rgba(192, 132, 252, 0.4) !important;
        border: 1px solid rgba(192, 132, 252, 0.8);
    }
    .bg-parallax-2 .glass-grid .glass-card::before {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(37, 91, 189, 0.15) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
        z-index: 0;
    }
    .bg-parallax-2 .glass-grid .glass-card:hover::before {
        opacity: 1;
    }
    .bg-parallax-2 .glass-grid .glass-card > * {
        position: relative;
        z-index: 1;
    }

    .bg-parallax-2 .deco-sphere-1 {
        width: 350px !important;
        left: 5% !important;
        top: 20% !important;
        opacity: 0.2 !important;
        z-index: 0 !important;
        filter: hue-rotate(60deg) saturate(150%) !important;
    }
    .bg-parallax-2 .deco-cube-1 {
        width: 300px !important;
        right: 2% !important;
        bottom: 10% !important;
        opacity: 0.2 !important;
        z-index: 0 !important;
    }

    @media (max-width: 1200px) {
        .sec2-tablet, .sec2-phone { opacity: 0.15; filter: blur(5px); z-index: 0; pointer-events: none; }
    }

    /* --- FLOATING DECORATIONS --- */
    .hero-left-phone {
        position: absolute;
        top: 35%;
        left: 0%;
        width: clamp(180px, 22vw, 350px);
        animation: float-slow 6s ease-in-out infinite;
        z-index: 10;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    }
    .hero-right-phone {
        position: absolute;
        top: 45%;
        right: 0%;
        width: clamp(180px, 22vw, 350px);
        animation: float-slow 7.5s ease-in-out infinite reverse;
        z-index: 10;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    }
    @media (max-width: 1200px) {
        .hero-left-phone, .hero-right-phone { opacity: 0.15; filter: blur(3px); z-index: 0; pointer-events: none; }
    }
    .deco-sphere-1 {
        position: absolute;
        bottom: 5%;
        left: 2%;
        width: 180px;
        animation: float-up-down 8s ease-in-out infinite;
        opacity: 0.85;
        z-index: 0;
        pointer-events: none;
    }
    .deco-cube-1 {
        position: absolute;
        top: 10%;
        right: 3%;
        width: 140px;
        animation: float-tilt 9s ease-in-out infinite;
        opacity: 0.85;
        z-index: 0;
        pointer-events: none;
    }
    .deco-sphere-2 {
        position: absolute;
        top: 45%;
        right: -2%;
        width: 260px;
        animation: float-up-down 11s ease-in-out infinite reverse;
        opacity: 0.6;
        z-index: 0;
        pointer-events: none;
    }
    .deco-cube-2 {
        position: absolute;
        bottom: 10%;
        left: -2%;
        width: 200px;
        animation: float-tilt 12s ease-in-out infinite reverse;
        opacity: 0.7;
        z-index: 0;
        pointer-events: none;
    }
    @keyframes float-slow {
        0%, 100% { transform: translateY(0) rotate(-2deg); }
        50% { transform: translateY(-25px) rotate(2deg); }
    }
    @keyframes float-up-down {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-30px) scale(1.05); }
    }
    @keyframes float-tilt {
        0%, 100% { transform: translateY(0) rotate(-10deg); }
        50% { transform: translateY(-30px) rotate(5deg); }
    }
    .parallax-section { position: relative; overflow: hidden; }
    .content-box { position: relative; z-index: 2; }

  
    /* --- NEW FOOLPROOF CUSTOM SOLUTIONS --- */
    .custom-solutions-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 50px;
        width: 100%;
    }
    .cs-row-top {
        display: flex;
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        width: 100%;
        max-width: 100%; /* Allow it to stretch to the full limits of the parent */
        flex-wrap: nowrap;
    }
    .cs-row-bottom {
        display: none;
    }
    .cs-card {
        flex: 1; /* This is the magic! It forces the cards to expand and evenly fill all the empty breadth space! */
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 24px;
        padding: 40px 30px; /* Restore comfortable padding since they are wide now */
        text-align: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .cs-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.1);
    }
    .cs-card.wide {
        width: 100%; /* Spans full width of the 900px row */
        max-width: 600px;
    }
    .cs-card.purple-glow { background: linear-gradient(135deg, #ffffff, #ffffff); border-color: rgba(37, 91, 189, 0.2); }
    .cs-card.purple-glow:hover { border-color: rgba(37, 91, 189, 0.5); box-shadow: 0 20px 45px rgba(37, 91, 189, 0.15); }

    .cs-card.blue-glow { background: linear-gradient(135deg, #e0f2fe, #f0f9ff); border-color: rgba(14, 165, 233, 0.2); }
    .cs-card.blue-glow:hover { border-color: rgba(14, 165, 233, 0.5); box-shadow: 0 20px 45px rgba(14, 165, 233, 0.15); }

    .cs-card.pink-glow { background: linear-gradient(135deg, #ffffff, #ffffff); border-color: rgba(37, 91, 189, 0.2); }
    .cs-card.pink-glow:hover { border-color: rgba(37, 91, 189, 0.5); box-shadow: 0 20px 45px rgba(37, 91, 189, 0.15); }
    
    .cs-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: white;
        width: 70px; height: 70px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .cs-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 15px;
    }
    .cs-card p {
        color: #475569;
        line-height: 1.6;
        margin-bottom: 0;
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        /* Stack all 3 on mobile/tablets */
        .cs-row-top { flex-direction: column; align-items: center; }
        .cs-card { width: 100%; max-width: 450px; }
    }


    /* Blend Sections */
    .section-blend {
      position: relative;
      -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent 100%);
      mask-image: linear-gradient(to bottom, black calc(100% - 150px), transparent 100%);
      margin-bottom: -150px;
      padding-bottom: 230px !important;
    }


    /* --- FOUNDER LAYOUT OVERRIDE --- */
    section .container, 
    section .container-expanded, 
    section .container-balanced,
    header.hero .container,
    .content-wrapper,
    .content-box,
    .bento-grid,
    .bento-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 1cm !important;
        padding-right: 1cm !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    section .container > *,
    section .container-expanded > * {
        max-width: none !important;
    }
    #navbar:not(.scrolled) .nav-link,
    #navbar:not(.scrolled) .logo-text {
        color: #0f172a !important;
    }
    #navbar:not(.scrolled) .logo-icon path[fill="white"] {
        fill: #0f172a !important;
    }
    #navbar:not(.scrolled) .nav-link:hover {
        color: #255bbd !important;
    }
    #navbar:not(.scrolled) .nav-link svg {
        stroke: #0f172a !important;
    }

/* --- GLOBAL MOBILE OPTIMIZATION PATCH --- */
@media (max-width: 768px) {
  /* Fix container paddings (Prevent additive nested padding) */
  .container, .container-balanced, .container-expanded, .hero-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    min-width: 0 !important;
  }
  section, .main-content, .content-wrapper, .bento-container, .flex-accordion, .bento-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-width: 0 !important;
  }
  
  /* Reset rigid min-widths causing overflow or squishing */
  [style*="min-width"], .bento-card, .glass-card, .r-card, .step-card, .folder-box, .glass-box, .flex-panel {
    min-width: 0 !important;
    width: 100% !important;
    align-self: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Fix accordion text clipping on mobile */
  .flex-accordion { height: 750px !important; }
  .flex-panel:hover .panel-desc { max-height: 800px !important; }
  
  /* Force inline flex containers to wrap */
  [style*="display: flex"] {
    flex-wrap: wrap !important;
  }
  
  /* Force common grid/flex layouts to stack vertically */
  .hero-bubble-layout, .bento-container, .glass-grid, .retail-grid, .hero-container, .zig-zag-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Reduce massive padding inside cards and CTA sections */
  .bento-card, .glass-card, .r-card, .step-card, .folder-box, .bento-glass, .glass-box, .massive-cta, .cta-glass-panel, .retail-cta, .r-cta-content, .panel-content {
    padding: 25px 15px !important;
  }
  .flex-panel {
    padding: 10px !important;
  }
  
  /* Fix overlapping absolute elements in hero sections (e.g., Shopify page) */
  section > div > div[style*="position: relative; width: 100%; display: flex"] {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Avoid giant box shadows pushing width */
  .folder-box, .glass-card, .step-card, .bento-card {
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05) !important;
  }
  
  /* Fix readability of massive CTA text against bright bubbles on mobile */
  .massive-cta > div[style*="z-index: 2"] {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .massive-cta h2, .massive-cta p, .massive-cta a {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
}
