    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

    :root {
      --bg: #0a0a0a;
      --bg2: #111;
      --bg3: #181818;
      --text: #f5f5f5;
      --text2: #999;
      --text3: #555;
      --accent: #fff;
      --serif: 'Instrument Serif', Georgia, serif;
      --sans: 'Inter', -apple-system, sans-serif;
      --font-card: 'Sora', 'Inter', sans-serif;
      --ease: cubic-bezier(.4, 0, .2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px
    }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.6
    }

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

    a {
      text-decoration: none;
      color: inherit
    }

    ul {
      list-style: none
    }

    ::selection {
      background: rgba(255, 255, 255, .15)
    }

    ::-webkit-scrollbar {
      width: 3px
    }

    ::-webkit-scrollbar-track {
      background: var(--bg)
    }

    ::-webkit-scrollbar-thumb {
      background: #333;
      border-radius: 3px
    }

    .wrap {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 40px
    }

    /* ===== MODERN EXPANDING GLASS NAV ===== */
    .nav {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      z-index: 999;
      padding: 12px 20px;
      background: rgba(15, 15, 15, .2);
      backdrop-filter: blur(30px) saturate(1.5);
      -webkit-backdrop-filter: blur(30px) saturate(1.5);
      border: 1px solid rgba(255, 255, 255, .08);
      border-top: 1px solid rgba(255, 255, 255, .15);
      border-radius: 100px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
      transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      align-items: center;
      overflow: hidden
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 36px;
      width: auto
    }

    .nav-brand {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: -.02em;
      text-decoration: none
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px
    }

    .nav-link {
      display: flex;
      align-items: center;
      padding: 8px;
      border-radius: 100px;
      color: rgba(255, 255, 255, .8);
      text-decoration: none;
      transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
      background: transparent;
      overflow: hidden;
      flex-shrink: 0
    }

    .nav-link:hover {
      background: rgba(255, 255, 255, .1);
      color: #fff;
      padding: 8px 16px
    }

    .nav-link i {
      font-size: 1rem;
      width: 20px;
      text-align: center
    }

    .nav-text {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      font-size: .85rem;
      font-weight: 500;
      max-width: 0;
      opacity: 0;
      white-space: nowrap;
      transition: all .4s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .nav-link:hover .nav-text {
      max-width: 100px;
      opacity: 1;
      margin-left: 8px;
      padding-right: 4px
    }

    .nav-cta {
      display: flex;
      align-items: center;
      padding: 4px;
      border-radius: 100px;
      background: linear-gradient(180deg, #FF8F26 0%, #F27402 100%);
      box-shadow: 0 12px 30px rgba(242, 116, 2, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all .3s var(--ease);
      text-decoration: none
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(242, 116, 2, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.5)
    }

    .nav-cta-left {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 12px 0 2px
    }

    .nav-cta-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: #fff;
      border-radius: 50%;
      color: #F27402;
      font-size: .75rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
    }

    .nav-cta-text {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      font-size: .85rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: .02em
    }

    .nav-cta-divider {
      width: 1px;
      height: 24px;
      background: rgba(255, 255, 255, .3);
      margin: 0 4px
    }

    .nav-cta-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      color: rgba(255, 255, 255, .9);
      font-size: .8rem
    }

    .burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-direction: column;
      gap: 5px
    }

    .burger span {
      width: 22px;
      height: 1.5px;
      background: #fff;
      transition: all .3s
    }

    .burger.open span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 4px)
    }

    .burger.open span:nth-child(2) {
      opacity: 0
    }

    .burger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px)
    }

    /* ===== HERO ===== */
    #hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: url('hero-bg.webp') center/cover no-repeat, #000
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, .55);
      z-index: 2
    }

    .hero-video-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw;
      min-height: 100vh;
      min-width: 177.78vh;
      transform: translate(-50%, -50%);
      z-index: 1;
      pointer-events: none
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
      padding: 0 20px
    }

    .hero-heading {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
      font-size: clamp(3rem, 9vw, 7rem);
      font-weight: 900;
      letter-spacing: -.05em;
      line-height: 0.9;
      margin-bottom: 20px;
      text-transform: uppercase;
      white-space: nowrap;
      color: #fff
    }

    .hero-brand-badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 20px;
      background: transparent;
      border: none;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: .3em;
      text-transform: uppercase;
      margin-bottom: 8px;
      background: linear-gradient(90deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .6) 25%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .6) 75%, rgba(255, 255, 255, .2) 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: badgeShimmer 3s ease-in-out infinite
    }

    @keyframes badgeShimmer {
      0% {
        background-position: 100% 0
      }

      100% {
        background-position: -100% 0
      }
    }

    .hero-sub {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      font-size: 1.15rem;
      color: rgba(255, 255, 255, .85);
      line-height: 1.5;
      font-weight: 400;
      margin: 0 auto;
      max-width: 650px
    }


    /* Interactive Grid */
    .interactive-grid {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
      -webkit-mask-image: radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
      pointer-events: none;
    }

    /* ===== SERVICES ===== */
    #services {
      padding: 60px 0;
      background: #050505;
      position: relative
    }

    .section-header {
      text-align: center;
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center
    }

    .section-title {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -.03em;
      color: #fff;
      margin-top: 8px;
      margin-bottom: 4px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 10px;
    }

    .graphic-design-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for Graphic Design */
    }

    /* Halftone Dot Matrix Animated Cards (Matching Uploaded Reference Design) */
    .services-halftone-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 0px;
    }

    .halftone-card {
      background: rgba(14, 18, 26, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
      overflow: hidden;
    }

    .halftone-card:hover {
      border-color: rgba(255, 143, 38, 0.6);
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 143, 38, 0.25);
      background: rgba(18, 24, 34, 0.95);
    }

    .halftone-canvas-container {
      position: relative;
      width: 100%;
      height: 200px;
      background: #0b0e14;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 20px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .halftone-popular-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: linear-gradient(135deg, #FF8F26, #F27402);
      color: #ffffff;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.8px;
      padding: 5px 12px;
      border-radius: 100px;
      box-shadow: 0 4px 15px rgba(242, 116, 2, 0.4);
      z-index: 3;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .dot-canvas {
      width: 100%;
      height: 100%;
      display: block;
    }

    .canvas-icon-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(0deg) scale(1);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(11, 14, 20, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 143, 38, 0.4);
      color: #FF8F26;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 2;
    }

    .halftone-card:hover .canvas-icon-overlay {
      background: linear-gradient(135deg, #FF8F26, #F27402);
      color: #ffffff;
      transform: translate(-50%, -50%) rotate(360deg) scale(1.18);
      box-shadow: 0 10px 30px rgba(242, 116, 2, 0.6);
    }

    .halftone-card-content {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
      padding: 0 4px 6px 4px;
    }

    .halftone-card-title {
      font-family: var(--font-card);
      font-size: 1.45rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .halftone-card-desc {
      font-family: 'Inter', sans-serif;
      font-size: 0.86rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.5;
      margin-bottom: 24px;
    }

    /* Ultra-Modern Hyper-Clean Action Button (Linear / Framer 2026 Style) */
    .halftone-btn {
      position: relative;
      width: 100%;
      padding: 15px 28px;
      background: linear-gradient(135deg, #FF8F26 0%, #F27402 100%);
      color: #ffffff;
      font-family: var(--font-card);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 100px;
      cursor: pointer;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 0 !important;
      box-shadow: 0 8px 25px rgba(242, 116, 2, 0.45);
      text-decoration: none;
    }

    .halftone-btn span {
      position: relative;
      z-index: 2;
    }

    .halftone-btn i {
      position: relative;
      z-index: 2;
      font-size: 1.05rem;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .halftone-card:hover .halftone-btn {
      background: linear-gradient(135deg, #ff9b3b 0%, #ff6c00 100%);
      border-color: rgba(255, 255, 255, 0.6);
      box-shadow: 0 14px 35px rgba(242, 116, 2, 0.65), 0 0 25px rgba(255, 143, 38, 0.4);
      transform: translateY(-3px);
    }

    .halftone-card:hover .halftone-btn i {
      transform: translateX(6px);
    }

    @media (max-width: 1200px) {
      .services-halftone-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .services-halftone-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .service-card-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .service-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: rgba(255, 143, 38, 0.12);
      border: 1px solid rgba(255, 143, 38, 0.25);
      color: #FF8F26;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-card:hover .service-icon-box {
      transform: scale(1.1) rotate(4deg);
      background: linear-gradient(135deg, #FF8F26 0%, #F27402 100%);
      color: #ffffff;
      box-shadow: 0 8px 22px rgba(242, 116, 2, 0.45);
    }

    .service-badge-hot {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 100px;
      background: linear-gradient(135deg, rgba(255, 143, 38, 0.22) 0%, rgba(242, 116, 2, 0.15) 100%);
      border: 1px solid rgba(255, 143, 38, 0.4);
      color: #FF8F26;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(242, 116, 2, 0.2);
    }

    .service-card.popular-card {
      border-color: rgba(255, 143, 38, 0.35);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 143, 38, 0.15);
    }

    .service-card.popular-card .service-card-glow-line {
      opacity: 0.8;
      height: 3px;
    }

    .service-card-footer {
      display: flex;
      flex-direction: column;
      margin-top: auto;
    }

    .service-trust-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.76rem;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 12px;
      font-weight: 500;
      text-align: center;
    }

    .service-trust-note i {
      color: #FF8F26;
      font-size: 0.72rem;
    }

    .service-card-title {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
      line-height: 1.25;
      letter-spacing: -0.01em;
    }

    .service-card-subtitle {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
    }

    .service-divider {
      height: 1px;
      width: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
      margin: 20px 0;
    }

    .service-features-title {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #FF8F26;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .service-features-list {
      list-style: none;
      padding: 0;
      margin: 0 0 28px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .service-features-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.35;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 8px 12px;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .service-card:hover .service-features-list li {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.07);
    }

    .check-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 143, 38, 0.18);
      color: #FF8F26;
      font-size: 0.7rem;
      flex-shrink: 0;
    }

    .service-order-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 14px 24px;
      border-radius: 100px;
      background: linear-gradient(180deg, #FF8F26 0%, #F27402 100%);
      box-shadow: 0 8px 25px rgba(242, 116, 2, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #ffffff;
      font-family: var(--font-accent);
      font-size: 0.94rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      margin-top: auto;
      opacity: 1 !important;
      transform: none !important;
    }

    .service-order-btn:hover {
      background: linear-gradient(180deg, #ffa043 0%, #ff7f0f 100%);
      box-shadow: 0 14px 38px rgba(242, 116, 2, 0.6);
      transform: translateY(-2px) scale(1.01) !important;
    }

    .service-order-btn i {
      font-size: 0.85rem;
      transition: transform 0.3s ease;
    }

    .service-order-btn:hover i {
      transform: translateX(4px);
    }

    .service-cta-left {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 16px 0 4px
    }

    .service-cta-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: #fff;
      border-radius: 50%;
      color: #F27402;
      font-size: .75rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
    }

    .service-cta-text {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
      font-size: .9rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .02em
    }

    .service-cta-divider {
      width: 1px;
      height: 24px;
      background: rgba(255, 255, 255, .3);
      margin: 0 4px
    }

    .service-cta-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      color: #fff;
      font-size: .9rem;
      transition: transform .3s ease
    }

    .service-cta:hover .service-cta-arrow {
      transform: translateX(4px)
    }


    /* ===== INTRO ===== */
    #intro {
      padding: 20px 0 60px 0;
      background: #0f0f0f
    }

    .intro-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: stretch
    }

    .intro-left {
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 100px;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 8px;
      width: fit-content
    }

    .about-badge i {
      color: #0062FF
    }

    .intro-heading {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: 24px;
      color: #fff
    }

    .text-highlight {
      background: linear-gradient(120deg, #FF8C00 0%, #FFD700 40%, #FFF 50%, #FFD700 60%, #FF8C00 100%);
      background-size: 250% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      background-position: 0% center;
      transition: background-position .8s var(--ease);
      cursor: default
    }

    .text-highlight:hover {
      background-position: -250% center
    }

    .intro-text {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .7);
      line-height: 1.7;
      font-weight: 400
    }

    .intro-text p {
      margin-bottom: 24px
    }

    .intro-text strong {
      color: #fff;
      font-weight: 600
    }

    .hire-btn-container {
      margin-top: 40px;
      display: flex
    }

    .hire-btn {
      display: inline-flex;
      align-items: center;
      position: relative;
      background-color: #111;
      border: 2px solid rgba(255, 255, 255, .1);
      border-radius: 100px;
      height: 70px;
      width: 260px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
      transition: all .4s ease
    }

    .hire-btn:hover {
      border-color: rgba(0, 98, 255, .3);
      box-shadow: 0 15px 30px rgba(0, 98, 255, .15)
    }

    .hire-btn-pill {
      position: absolute;
      top: 5px;
      left: 5px;
      bottom: 5px;
      width: 56px;
      background: linear-gradient(135deg, #2E8AFF 0%, #0062FF 100%);
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: width .5s cubic-bezier(.2, 1, .2, 1);
      z-index: 2;
      box-shadow: inset 0 2px 4px rgba(255, 255, 255, .4), 0 0 15px rgba(0, 98, 255, .3)
    }

    .hire-icon-default {
      color: #fff;
      font-size: 1.2rem;
      transition: opacity .3s ease, transform .3s ease
    }

    .hire-icon-hover {
      position: absolute;
      color: #fff;
      font-size: 1.5rem;
      opacity: 0;
      transform: scale(.5);
      transition: opacity .4s ease .1s, transform .4s ease .1s
    }

    .hire-btn-text {
      position: absolute;
      left: 80px;
      color: #fff;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      transition: opacity .3s ease, transform .3s ease;
      z-index: 1
    }

    .hire-btn:hover .hire-btn-pill {
      width: calc(100% - 10px)
    }

    .hire-btn:hover .hire-icon-default {
      opacity: 0;
      transform: scale(.5)
    }

    .hire-btn:hover .hire-icon-hover {
      opacity: 1;
      transform: scale(1)
    }

    .hire-btn:hover .hire-btn-text {
      opacity: 0;
      transform: translateX(15px)
    }

    .intro-right {
      position: relative;
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .about-image-img {
      width: 100%;
      height: auto;
      object-fit: contain;
      transition: transform .8s var(--ease)
    }

    .intro-right:hover .about-image-img {
      transform: scale(1.03)
    }



    /* ===== REVEAL ===== */
    .rv {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .8s ease, transform .8s ease
    }

    .rv.show {
      opacity: 1;
      transform: translateY(0)
    }

    .rv-d1 {
      transition-delay: .1s
    }

    .rv-d2 {
      transition-delay: .2s
    }

    .rv-d3 {
      transition-delay: .3s
    }

    .rv-d4 {
      transition-delay: .4s
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:1024px) {
      .wrap {
        padding: 0 28px
      }

      .intro-row {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .svc-grid {
        grid-template-columns: 1fr
      }

      .work-card {
        width: 340px
      }

      .client-item {
        flex: 0 0 50%
      }
    }

    @media(max-width:992px) {
      .nav {
        top: 14px;
        left: 16px;
        right: 16px;
        width: auto;
        transform: none;
        padding: 8px 16px;
        z-index: 99999 !important;
        justify-content: space-between;
        box-sizing: border-box;
      }

      .nav-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
      }

      .nav-brand {
        font-size: 1.2rem;
        margin: 0;
      }

      .burger {
        display: flex !important;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: rgba(14, 18, 26, 0.96);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 16px;
        flex-direction: column;
        gap: 10px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
      }

      .nav-links.open {
        display: flex !important;
      }

      .nav-link {
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        font-size: 0.95rem;
      }

      .nav-link .nav-text {
        display: inline-block !important;
        max-width: none !important;
        opacity: 1 !important;
        margin-left: 8px;
      }

      .nav-cta {
        width: 100% !important;
        justify-content: space-between !important;
        padding: 8px 16px !important;
        border-radius: 14px !important;
        margin-left: 0 !important;
        margin-top: 6px !important;
      }

      .nav-cta-text, .nav-cta-divider, .nav-cta-arrow {
        display: inline-block !important;
      }
    }

    @media(max-width:768px) {
      .hero-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .service-card {
        min-height: auto;
        padding: 24px 20px;
      }

      .work-card {
        width: 300px;
      }

      .intro-stats {
        gap: 28px;
        flex-wrap: wrap;
      }

      .client-item {
        flex: 0 0 50%;
        font-size: 1rem;
        padding: 28px;
      }

      .scroll-hint {
        display: none;
      }
    }

    @media(max-width:480px) {
      .wrap {
        padding: 0 20px
      }

      .client-item {
        flex: 0 0 100%
      }

      .contact-links {
        flex-direction: column;
        gap: 16px
      }
    }

    /* ===== EXPERIENCE MARQUEE & MODAL ===== */
    #experience {
      padding: 40px 0 60px 0;
      margin-top: 0px;
      background-color: #e5e7eb;
      /* Softer, muted gray instead of bright white */
      position: relative;
      overflow: hidden;
      z-index: 5;
      /* Add a subtle top/bottom border to separate it from dark sections */
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* UNIQUE OUTLINE HEADER CSS */
    .trusted-outline-header {
      position: relative;
      text-align: center;
      margin-bottom: 60px;
      margin-top: 20px;
      overflow: hidden;
      padding: 40px 0;
    }

    .trusted-outline-header .massive-bg-text {
      font-size: clamp(4rem, 15vw, 12rem);
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 2px rgba(0, 0, 0, 0.06);
      text-transform: uppercase;
      margin: 0;
      line-height: 0.8;
      letter-spacing: 5px;
      white-space: nowrap;
      user-select: none;
    }

    .trusted-overlay-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: clamp(1rem, 4vw, 1.5rem);
      font-weight: 800;
      color: #0062FF;
      background: #e5e7eb;
      padding: 0 30px;
      text-transform: uppercase;
      letter-spacing: 4px;
      border-radius: 50px;
      box-shadow: 0 0 20px rgba(229, 231, 235, 0.8);
    }

    .marquee-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 0px;
      /* Modern Edge Fade Effect */
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      /* Removed gap here to fix the seamless loop jumping issue */
    }

    .marquee-content {
      display: flex;
      gap: 30px;
      padding-right: 30px;
      /* This padding replaces the track gap to ensure smooth looping */
    }

    .track-left .marquee-content {
      animation: scrollLeft 120s linear infinite;
    }

    .track-right .marquee-content {
      animation: scrollRight 120s linear infinite;
    }

    .marquee-item {
      height: 40px;
      cursor: default;
      flex-shrink: 0;
      transition: transform 0.35s ease, filter 0.35s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0 10px;
    }

    .marquee-item img {
      height: 100%;
      max-height: 40px;
      width: auto;
      object-fit: contain;
      transition: transform 0.35s ease;
    }

    .marquee-item:hover {
      transform: scale(1.15);
      z-index: 10;
    }

    @keyframes scrollLeft {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-100%);
      }
    }

    @keyframes scrollRight {
      from {
        transform: translateX(-100%);
      }

      to {
        transform: translateX(0);
      }
    }

    /* Pricing Section (2-Column Layout + Dark Glassmorphism) */
    .pricing-section {
      padding: 45px 20px; /* Adjusted padding */
      position: relative;
      display: flex;
      justify-content: center;
    }

    .pricing-container {
      display: flex;
      gap: 60px; /* Gap between cards and image */
      justify-content: space-between;
      align-items: stretch; /* Stretch to make both columns equal height */
      max-width: 1350px; /* Increased to allow room for the square image */
      width: 100%;
      margin: 0 auto;
    }

    .pricing-content {
      flex: 2; /* Give much more space to the cards */
      display: flex;
      flex-direction: column;
    }

    .pricing-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 5px;
      line-height: 1; /* Tighten up top spacing */
    }

    .pricing-subtitle {
      font-size: 0.95rem;
      color: #a3a3a3;
      margin-bottom: 15px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      flex-grow: 1; /* Allow grid to fill remaining space */
    }

    .pricing-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      flex: 1;
      padding: 15px 12px; /* Greatly reduced to shrink overall section height */
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.4s ease;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .pricing-tier {
      font-size: 1.1rem;
      font-weight: 700;
      color: #e2e8f0;
      margin-bottom: 4px; /* Reduced */
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .card-startup .pricing-tier { color: #22c55e; } /* Green */
    .card-premium .pricing-tier { color: #eab308; } /* Yellow */
    .card-business .pricing-tier { color: #3b82f6; } /* Blue */

    .pricing-price {
      font-size: 1.4rem; /* Reduced */
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px; /* Reduced */
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .pricing-price span {
      font-size: 0.85rem;
      color: #94a3b8;
      font-weight: 600;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 10px 0; /* Reduced */
      flex-grow: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: #cbd5e1;
      font-size: 0.75rem; /* Slightly smaller text */
      margin-bottom: 4px; /* Reduced to shrink height */
      font-weight: 400;
      line-height: 1.2;
    }

    .pricing-features li i.fa-check {
      color: #22c55e;
      margin-top: 3px;
      font-size: 0.75rem;
    }

    .pricing-features li.disabled {
      color: #64748b;
    }

    .pricing-features li.disabled i.fa-ban {
      color: #ef4444;
      margin-top: 3px;
      font-size: 0.75rem;
    }

    .pricing-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 8px;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      color: #fff;
      margin-top: auto;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
    }

    .btn-startup { background: #f97316; }
    .btn-premium { background: #f97316; }
    .btn-business { background: #f97316; }

    .btn-startup:hover, .btn-premium:hover, .btn-business:hover {
      background: #ea580c;
    }

    .pricing-image {
      flex: 1; /* Less space for image, more for cards */
      display: flex;
      align-items: stretch; /* Stretch vertically */
      justify-content: flex-end;
    }

    .pricing-image img {
      height: 100%; /* Take full height of container */
      width: auto; /* Let width scale automatically based on height */
      aspect-ratio: 1 / 1; /* Force perfect square */
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    }

    .badge-popular {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, #FF8F26, #F27402);
      color: #fff;
      font-size: 0.55rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 20px;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      .pricing-container {
        flex-direction: column;
        padding: 30px;
      }
      .pricing-grid, .graphic-design-grid {
        grid-template-columns: 1fr;
      }
      .pricing-card {
        width: 100%;
      }
    }

    /* MODERN MINIMALIST FOOTER CSS */
    .site-footer {
      background: #080b10;
      padding: 60px 20px 30px 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      padding-bottom: 40px;
    }

    .footer-left {
      max-width: 400px;
    }

    .footer-logo {
      height: 40px;
      width: auto;
      margin-bottom: 14px;
      display: block;
    }

    .footer-tagline {
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .footer-contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-end;
    }

    .footer-info-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #cbd5e1;
      font-size: 0.92rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-info-item i {
      color: #FF8F26;
      font-size: 0.95rem;
    }

    a.footer-info-item:hover {
      color: #FF8F26;
    }

    .footer-divider {
      height: 1px;
      width: 100%;
      background: rgba(255, 255, 255, 0.07);
      margin-bottom: 30px;
    }

    .footer-bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .footer-nav {
      display: flex;
      gap: 24px;
    }

    .footer-nav a {
      color: #94a3b8;
      font-size: 0.9rem;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .footer-nav a:hover {
      color: #fff;
    }

    .footer-copyright {
      color: #64748b;
      font-size: 0.88rem;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
    }

    .footer-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #cbd5e1;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-socials a:hover {
      background: #FF8F26;
      border-color: #FF8F26;
      color: #ffffff;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
      }
      .footer-contact-info {
        align-items: flex-start;
      }
      .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }

    /* Modal CSS */
    .project-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(4, 4, 6, 0.85);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 24px;
    }

    .project-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-card {
      background: rgba(18, 18, 24, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 32px;
      width: 100%;
      max-width: 960px;
      overflow: hidden;
      transform: translateY(40px) scale(0.95);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.03);
      display: flex;
      flex-direction: column;
    }

    .project-modal.active .modal-card {
      transform: translateY(0) scale(1);
    }

    .modal-header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(10, 10, 15, 0.4);
    }

    .modal-title-wrap h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      margin: 0 0 4px 0;
      color: #ffffff;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .modal-title-wrap p {
      font-family: var(--font-accent);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent-light);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin: 0;
    }

    .modal-close-pill {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.7);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .modal-close-pill:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      transform: rotate(90deg);
    }

    .modal-body-split {
      display: flex;
      flex-direction: row;
      height: 480px;
      overflow: hidden;
    }

    .modal-media-side {
      flex: 0 0 50%;
      background: #050508;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .modal-media-side img,
    .modal-media-side video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-info-side {
      flex: 0 0 50%;
      padding: 36px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
    }

    .modal-info-side h4 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 10px 0;
      letter-spacing: 0.02em;
    }

    .modal-desc-text {
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin: 0;
    }

    .btn-modal-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      font-family: var(--font-accent);
      font-size: 0.88rem;
      font-weight: 700;
      border-radius: 100px;
      background: var(--gradient-main);
      color: #fff !important;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(226, 19, 110, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .btn-modal-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(226, 19, 110, 0.4);
    }

    /* ===== VIDEO REVIEWS (DesignMonks Style) ===== */
    #reviews {
      padding: 100px 0;
      background: #050505;
      position: relative;
      border-top: 1px solid rgba(255, 255, 255, 0.03);
    }

    .serif-italic {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 400;
      text-transform: none;
      color: #fff;
    }

    .reviews-slider {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 40px 5px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .reviews-slider::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      flex: 0 0 calc(33.333% - 20px);
      min-width: 340px;
      height: 520px;
      scroll-snap-align: start;
      background: #0f0f0f;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }

    .review-card.theme-lavender {
      --glow: rgba(168, 127, 255, 0.12);
      --border-glow: rgba(168, 127, 255, 0.3);
    }

    .review-card.theme-emerald {
      --glow: rgba(48, 255, 151, 0.12);
      --border-glow: rgba(48, 255, 151, 0.3);
    }

    .review-card.theme-orange {
      --glow: rgba(255, 140, 0, 0.12);
      --border-glow: rgba(255, 140, 0, 0.3);
    }

    .review-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 120%, var(--glow), transparent 75%);
      z-index: 1;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .review-card:hover {
      transform: translateY(-8px);
      border-color: var(--border-glow);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--glow);
    }

    .client-portrait-wrap {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
      pointer-events: none;
      transition: all 0.6s var(--ease);
      overflow: hidden;
    }

    .client-portrait {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease);
    }

    .review-card:hover .client-portrait {
      transform: scale(1.03);
    }

    .review-card.video-playing .client-portrait-wrap {
      opacity: 0;
      transform: scale(0.95);
    }

    .review-inline-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.6s var(--ease);
      pointer-events: none;
    }

    .review-card.video-playing .review-inline-video {
      opacity: 1;
      pointer-events: auto;
    }

    .play-btn-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 4;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .play-btn {
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.4rem;
      transition: all 0.4s var(--ease);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      position: relative;
    }

    .play-btn i {
      margin-left: 5px;
    }

    .play-btn::before {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      background: var(--border-glow);
      opacity: 0;
      transition: all 0.4s var(--ease);
      z-index: -1;
    }

    .review-card:hover .play-btn {
      background: #fff;
      color: #000;
      border-color: #fff;
      transform: scale(1.1);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }

    .review-card:hover .play-btn::before {
      animation: playPulse 1.5s infinite;
      opacity: 1;
    }

    @keyframes playPulse {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }

      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }

    .review-card.video-playing .play-btn-overlay {
      opacity: 0;
    }

    .review-card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 36px 30px;
      background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.7) 65%, transparent 100%);
      z-index: 5;
      pointer-events: none;
      transition: all 0.4s ease;
    }

    .review-card.video-playing .review-card-overlay {
      background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.4) 65%, transparent 100%);
    }

    .review-card-logo {
      height: 24px;
      width: auto;
      object-fit: contain;
      margin-bottom: 16px;
      opacity: 0.9;
    }

    .review-card-text {
      font-family: var(--sans);
      font-size: 0.95rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 20px;
      font-style: italic;
      font-weight: 400;
    }

    .review-card-client-info h4 {
      font-family: var(--sans);
      font-size: 0.95rem;
      font-weight: 600;
      color: #fff;
      margin: 0 0 2px 0;
    }

    .review-card-client-info p {
      font-family: var(--sans);
      font-size: 0.8rem;
      color: var(--text2);
      margin: 0;
    }

    @media (max-width: 1024px) {
      .review-card {
        flex: 0 0 calc(50% - 15px);
        height: 500px;
      }
    }

    @media (max-width: 768px) {
      .reviews-slider {
        padding: 20px 0 40px 0;
      }

      .review-card {
        flex: 0 0 85%;
        height: 480px;
      }
    }

    /* ===== ULTRA-MODERN BENTO PORTFOLIO SHOWCASE ===== */
    #work {
      padding: 40px 0 60px 0;
      background: #050508;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.02);
    }

    #work::before {
      content: "";
      position: absolute;
      top: 20%;
      left: -10%;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(226, 19, 110, 0.03) 0%, transparent 70%);
      z-index: 0;
      pointer-events: none;
    }

    #work::after {
      content: "";
      position: absolute;
      bottom: 10%;
      right: -10%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
      z-index: 0;
      pointer-events: none;
    }

    #work .wrap {
      position: relative;
      z-index: 2;
    }

    .portfolio-tabs-container {
      display: flex;
      justify-content: center;
      margin-bottom: 60px;
    }

    .portfolio-tabs-wrapper {
      display: flex;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 6px;
      border-radius: 100px;
      position: relative;
      gap: 4px;
    }

    .portfolio-tabs-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: -1;
    }

    .portfolio-tab-indicator {
      position: absolute;
      top: 6px;
      left: 6px;
      height: calc(100% - 12px);
      border-radius: 100px;
      background: linear-gradient(180deg, #FF8F26 0%, #F27402 100%);
      z-index: 0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 12px 30px rgba(242, 116, 2, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .portfolio-tab {
      background: transparent;
      border: none;
      padding: 10px 24px;
      border-radius: 100px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
      font-size: 0.88rem;
      font-family: var(--font-accent);
      cursor: pointer;
      position: relative;
      z-index: 1;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .portfolio-tab i {
      font-size: 0.82rem;
      opacity: 0.8;
      transition: all 0.3s ease;
    }

    .portfolio-tab:hover {
      color: rgba(255, 255, 255, 0.9);
    }

    .portfolio-tab.active {
      color: #fff;
    }

    .portfolio-tab.active i {
      opacity: 1;
    }

    /* Bento Grid Layout */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;
      grid-auto-rows: 270px;
      transition: all 0.4s var(--ease);
    }

    /* Grid Spans */
    .portfolio-card.bento-tall {
      grid-column: span 3;
      grid-row: span 2;
      /* 564px high */
    }

    .portfolio-card.bento-square-1 {
      grid-column: span 3;
    }

    .portfolio-card.bento-wide-1 {
      grid-column: span 6;
    }

    .portfolio-card.bento-wide-2 {
      grid-column: span 6;
    }

    .portfolio-card.bento-square-2 {
      grid-column: span 3;
    }

    .portfolio-card.bento-row-wide {
      grid-column: span 8;
    }

    .portfolio-card.bento-row-narrow {
      grid-column: span 4;
    }

    .portfolio-card {
      background: rgba(255, 255, 255, 0.015);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02), 0 12px 36px rgba(0, 0, 0, 0.4);
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .portfolio-card:hover {
      transform: translateY(-6px);
      border-color: rgba(226, 19, 110, 0.25);
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(226, 19, 110, 0.06);
      background: rgba(255, 255, 255, 0.025);
    }

    /* Spotlight effect */
    .portfolio-glow-overlay {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
          rgba(255, 255, 255, 0.03),
          transparent 60%);
      z-index: 1;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .portfolio-card:hover .portfolio-glow-overlay {
      opacity: 1;
    }

    /* Card specific color highlights */
    .portfolio-card.color-lavender:hover {
      border-color: rgba(168, 85, 247, 0.3);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.08);
    }

    .portfolio-card.color-emerald:hover {
      border-color: rgba(16, 185, 129, 0.3);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.08);
    }

    .portfolio-card.color-blue:hover {
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.08);
    }

    .portfolio-card.color-orange:hover {
      border-color: rgba(249, 115, 22, 0.3);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(249, 115, 22, 0.08);
    }

    /* Card layouts */
    .portfolio-img-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #030305;
      z-index: 2;
    }

    /* Tall Card Image Mask Fade */
    .portfolio-card.bento-tall .portfolio-img-wrap {
      height: 300px;
      -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    }

    .portfolio-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .portfolio-card:hover .portfolio-img {
      transform: scale(1.05);
    }

    .portfolio-badge {
      position: absolute;
      top: 24px;
      left: 24px;
      background: rgba(10, 10, 15, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.7rem;
      font-family: var(--font-accent);
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      z-index: 3;
      transition: all 0.3s ease;
    }

    .portfolio-card:hover .portfolio-badge {
      background: var(--gradient-main);
      color: #fff;
      border-color: transparent;
    }

    /* Info box */
    .portfolio-info {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 8px;
      flex-grow: 1;
      position: relative;
      z-index: 2;
    }

    .bento-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }

    .bento-title {
      font-size: 1.15rem;
      font-family: var(--font-heading);
      font-weight: 700;
      color: #fff;
      line-height: 1.35;
      margin: 0;
      transition: color 0.3s ease;
    }

    .portfolio-card:hover .bento-title {
      background: var(--gradient-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .bento-icon {
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.9rem;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      margin-top: 3px;
    }

    .portfolio-card:hover .bento-icon {
      color: var(--accent);
      transform: translate(3px, -3px) rotate(45deg);
    }

    .bento-desc {
      font-size: 0.84rem;
      color: var(--text-secondary);
      line-height: 1.45;
      margin: 0;
    }

    /* Bento elements matching the user's design image */
    .bento-stat {
      font-size: 3.5rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      font-family: var(--font-heading);
      margin-bottom: 4px;
      background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.6) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .bento-lbl {
      font-size: 0.8rem;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    /* App-style Icons */
    .bento-icon-glow {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 12px;
      position: relative;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Blueprint gradient backgrounds */
    .bento-gradient-blue {
      background: linear-gradient(135deg, rgba(0, 98, 255, 0.06) 0%, rgba(10, 10, 15, 0.95) 100%);
    }

    .bento-gradient-blue .bento-icon-glow {
      background: rgba(0, 98, 255, 0.1);
      border-color: rgba(0, 98, 255, 0.3);
      color: #0062ff;
      box-shadow: 0 0 20px rgba(0, 98, 255, 0.15);
    }

    .bento-gradient-lavender {
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(10, 10, 15, 0.95) 100%);
    }

    .bento-gradient-lavender .bento-icon-glow {
      background: rgba(168, 85, 247, 0.1);
      border-color: rgba(168, 85, 247, 0.3);
      color: #a855f7;
      box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
    }

    /* Wide split elements */
    .bento-split {
      display: flex;
      flex-direction: row;
      height: 100%;
    }

    .bento-split-left {
      flex: 0 0 45%;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid rgba(255, 255, 255, 0.03);
    }

    .bento-split-right {
      flex: 0 0 55%;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Image split layouts */
    .bento-split-img {
      flex: 0 0 50%;
      height: 100%;
    }

    .bento-split-info {
      flex: 0 0 50%;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Custom tool tags */
    .bento-pill-group {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 12px;
    }

    .bento-pill {
      padding: 6px 14px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.72rem;
      font-family: var(--font-accent);
      color: rgba(255, 255, 255, 0.7);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
    }

    .portfolio-card:hover .bento-pill {
      border-color: rgba(226, 19, 110, 0.2);
      color: #fff;
      background: rgba(226, 19, 110, 0.05);
    }

    /* VIDEO-FIRST SPLIT-ROW SHOWCASE CSS */
    .showcase-rows-container {
      display: flex;
      flex-direction: column;
      gap: 100px;
      margin-top: 60px;
      position: relative;
      z-index: 1;
    }

    .showcase-rows-container.marketing-active {
      margin-top: 15px;
    }

    .showcase-rows-container:has(.showcase-card) {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .showcase-rows-container.grid-cols-8 {
      grid-template-columns: repeat(8, 1fr) !important;
    }

    .showcase-rows-container.grid-cols-4-websites {
      display: flex !important;
      flex-direction: row !important;
      justify-content: center !important;
      gap: 24px !important;
      flex-wrap: wrap;
    }
    .showcase-rows-container.grid-cols-4-websites .showcase-card.website {
      width: 450px;
      max-width: 100%;
    }

    @media (max-width: 992px) {
      .showcase-rows-container.grid-cols-4-websites {
        grid-template-columns: repeat(2, 1fr) !important;
      }
    }

    @media (max-width: 576px) {
      .showcase-rows-container.grid-cols-4-websites {
        grid-template-columns: 1fr !important;
      }
      .showcase-rows-container:has(.showcase-card) {
        grid-template-columns: 1fr !important;
      }
      .showcase-rows-container.grid-cols-8 {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 768px) {
      .showcase-rows-container:has(.showcase-card) {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .showcase-rows-container.grid-cols-8 {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .showcase-card {
        padding: 8px;
        border-radius: 12px;
        gap: 8px;
      }

      .card-info {
        padding: 0;
        gap: 4px;
      }

      .card-title {
        font-size: 0.7rem;
        line-height: 1.2;
        min-height: 2.4em;
      }

      .card-meta {
        font-size: 0.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
      }
    }

    .showcase-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
      overflow: hidden;
      width: 100%;
      height: 100%;
    }

    .showcase-card.graphic-design {
      background: transparent !important;
      border: none !important;
      padding: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    @media (max-width: 768px) {
      .showcase-card.graphic-design .card-image-wrap {
        border-radius: 10px;
      }
    }

    .card-video-wrap {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
      position: relative;
    }

    .card-video-wrap.cinematic {
      aspect-ratio: 16/9;
    }

    .card-video-wrap video,
    .card-video-wrap iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border: 0;
      transition: transform 0.5s ease;
    }

    .card-video-wrap iframe {
      pointer-events: none;
    }

    .card-image-wrap {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
      position: relative;
    }

    .card-image-wrap.square {
      aspect-ratio: 1/1;
    }

    .card-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    a.showcase-card.website {
      text-decoration: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 32px 24px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      height: 100%;
      min-height: 260px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    a.showcase-card.website::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(120px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 143, 38, 0.15), transparent 80%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
      pointer-events: none;
    }

    a.showcase-card.website:hover::before {
      opacity: 1;
    }

    a.showcase-card.website:hover {
      border-color: rgba(255, 143, 38, 0.3);
      background: linear-gradient(135deg, rgba(255, 143, 38, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 143, 38, 0.15);
    }

    .web-content-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      z-index: 1;
    }

    .web-icon-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.8rem;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0;
      z-index: 1;
    }

    a.showcase-card.website:hover .web-icon-badge {
      background: linear-gradient(135deg, rgba(255, 143, 38, 0.2), rgba(242, 116, 2, 0.2));
      border-color: rgba(255, 143, 38, 0.4);
      color: #FF8F26;
      box-shadow: 0 0 20px rgba(255, 143, 38, 0.2), inset 0 0 10px rgba(255, 143, 38, 0.1);
      transform: scale(1.05) rotate(-5deg);
    }

    .web-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .web-name {
      font-family: var(--font-accent);
      font-size: 1.25rem;
      font-weight: 600;
      color: #fff;
      margin: 0;
      transition: color 0.3s ease;
      text-align: center;
    }

    a.showcase-card.website:hover .web-name {
      color: #fff;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    .web-url {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
      margin: 0;
      text-align: center;
      font-family: monospace;
      transition: color 0.3s ease;
    }

    a.showcase-card.website:hover .web-url {
      color: rgba(255, 143, 38, 0.8);
    }

    .web-card-cta {
      display: flex;
      align-items: center;
      padding: 6px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      margin-top: auto;
      z-index: 1;
      position: relative;
      overflow: hidden;
    }

    .web-card-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: all 0.7s ease;
      z-index: 0;
    }

    a.showcase-card.website:hover .web-card-cta {
      background: linear-gradient(135deg, #FF8F26 0%, #F27402 100%);
      border-color: rgba(255, 143, 38, 0.5);
      box-shadow: 0 10px 30px rgba(242, 116, 2, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4);
      transform: translateY(-2px) scale(1.02);
    }

    a.showcase-card.website:hover .web-card-cta::before {
      left: 100%;
      transition: left 0.7s ease;
    }

    .web-cta-left, .web-cta-divider, .web-cta-arrow {
      position: relative;
      z-index: 1;
    }

    .web-cta-left {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 12px 0 2px;
    }

    .web-cta-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: rgba(255, 255, 255, 0.7);
      font-size: .8rem;
      transition: all 0.4s ease;
    }

    a.showcase-card.website:hover .web-cta-icon {
      background: #fff;
      color: #F27402;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .web-cta-text {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
      font-size: .85rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: .02em;
      transition: color 0.4s ease;
    }

    a.showcase-card.website:hover .web-cta-text {
      color: #fff;
    }

    .web-cta-divider {
      width: 1px;
      height: 24px;
      background: rgba(255, 255, 255, .1);
      margin: 0 6px;
      transition: background 0.4s ease;
    }
    
    a.showcase-card.website:hover .web-cta-divider {
      background: rgba(255, 255, 255, .3);
    }

    .web-cta-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      color: rgba(255, 255, 255, 0.5);
      font-size: .8rem;
      transition: all 0.4s ease;
    }

    a.showcase-card.website:hover .web-cta-arrow {
      color: #fff;
      transform: translateX(3px);
    }

    @media (max-width: 768px) {
      a.showcase-card.website {
        padding: 14px 16px !important;
        border-radius: 20px !important;
      }

      .web-icon-badge {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 1.1rem;
      }

      .web-name {
        font-size: 1rem;
      }

      .web-url {
        font-size: 0.75rem;
      }
    }

    .showcase-card.marketing-cta {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px 40px 20px;
      background: transparent !important;
      border: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto 40px auto;
      height: auto;
    }

    .marketing-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(255, 143, 38, 0.1);
      border: 1px solid rgba(255, 143, 38, 0.25);
      border-radius: 100px;
      color: #FF8F26;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 4px;
      z-index: 1;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      background: #FF8F26;
      border-radius: 50%;
      box-shadow: 0 0 10px #FF8F26;
      animation: pulse-dot-orange 2s infinite;
    }

    @keyframes pulse-dot-orange {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 143, 38, 0.7);
      }
      70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 143, 38, 0);
      }
      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 143, 38, 0);
      }
    }

    .marketing-title {
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 900;
      color: #fff;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 12px 0;
      text-transform: uppercase;
      z-index: 1;
    }

    .text-glow-green {
      color: #25D366;
      text-shadow: 0 0 35px rgba(37, 211, 102, 0.25);
    }

    .text-glow-orange {
      color: #F27402;
      text-shadow: 0 0 35px rgba(242, 116, 2, 0.4);
    }

    .marketing-desc {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.6);
      max-width: 600px;
      line-height: 1.6;
      margin: 0 auto 24px auto;
      z-index: 1;
    }

    .marketing-neon-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 14px 28px;
      border-radius: 100px;
      background: rgba(18, 22, 31, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      color: #ffffff;
      border: 1px solid rgba(255, 143, 38, 0.4);
      text-decoration: none;
      font-weight: 600;
      font-family: var(--font-accent);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 143, 38, 0.15);
      cursor: pointer;
      position: relative;
      z-index: 2;
      margin-top: 16px;
    }

    .marketing-neon-btn i.fa-whatsapp {
      font-size: 1.6rem;
      color: #25D366;
      transition: transform 0.3s ease;
    }

    .marketing-neon-btn .btn-text-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1px;
    }

    .marketing-neon-btn .btn-top-text {
      font-size: 0.98rem;
      color: #fff;
      font-weight: 600;
      white-space: nowrap;
    }

    .marketing-neon-btn .btn-sub-text {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.5);
      font-family: monospace;
      transition: color 0.3s ease;
      white-space: nowrap;
    }

    .marketing-neon-btn .btn-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 143, 38, 0.15);
      color: #FF8F26;
      font-size: 0.75rem;
      transition: all 0.3s ease;
    }

    .marketing-neon-btn:hover {
      background: linear-gradient(180deg, #FF8F26 0%, #F27402 100%);
      border-color: rgba(255, 255, 255, 0.3);
      color: #ffffff;
      box-shadow: 0 12px 35px rgba(242, 116, 2, 0.45);
      transform: translateY(-3px);
    }

    .marketing-neon-btn:hover i.fa-whatsapp {
      color: #ffffff;
      transform: scale(1.1);
    }

    .marketing-neon-btn:hover .btn-top-text {
      color: #ffffff;
    }

    .marketing-neon-btn:hover .btn-sub-text {
      color: rgba(255, 255, 255, 0.85);
    }

    .marketing-neon-btn:hover .btn-arrow {
      background: rgba(255, 255, 255, 0.25);
      color: #ffffff;
      transform: translateX(4px);
    }

    @media (max-width: 768px) {
      .marketing-title {
        font-size: 1.6rem;
      }

      .marketing-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
      }

      .marketing-neon-btn {
        padding: 12px 20px;
        gap: 10px;
        max-width: 100%;
      }

      .marketing-neon-btn i.fa-whatsapp {
        font-size: 1.4rem;
      }

      .marketing-neon-btn .btn-top-text {
        font-size: 0.88rem;
      }

      .marketing-neon-btn .btn-sub-text {
        font-size: 0.72rem;
      }
    }

    .card-info {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 4px 8px;
      flex-grow: 1;
    }

    .card-title {
      font-family: var(--font-accent);
      font-size: 1.15rem;
      font-weight: 600;
      color: #fff;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 2.8em;
      line-height: 1.35;
    }

    .card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: auto;
    }

    .card-client {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .card-amount {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #F27402;
      font-weight: 600;
    }

    .showcase-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      width: 100%;
      transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    }

    .showcase-row:nth-child(even) {
      flex-direction: row-reverse;
    }

    .showcase-media-panel {
      flex: 0 0 52%;
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 16/10;
      box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 24px 60px rgba(0, 0, 0, 0.7);
      background: #050508;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .showcase-workflow-panel {
      flex: 0 0 42%;
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: flex-start;
    }

    .custom-video-player {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .custom-video-player video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .custom-video-player:hover video {
      transform: scale(1.04);
    }

    .video-play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(8, 8, 12, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
      z-index: 3;
    }

    .custom-video-player:hover .video-play-overlay {
      background: rgba(8, 8, 12, 0.1);
    }

    .video-play-btn-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .custom-video-player:hover .video-play-btn-circle {
      background: var(--gradient-main);
      border-color: transparent;
      transform: scale(1.1);
      box-shadow: 0 0 30px rgba(226, 19, 110, 0.4);
    }

    .category-badge {
      padding: 6px 14px;
      border-radius: 100px;
      background: rgba(226, 19, 110, 0.08);
      border: 1px solid rgba(226, 19, 110, 0.2);
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--accent-light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-family: var(--font-accent);
    }

    .project-title {
      font-family: var(--font-heading);
      font-size: 1.85rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin: 0;
    }

    .project-subtitle {
      font-family: var(--font-accent);
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.04em;
      margin: -6px 0 6px 0;
    }

    .vertical-timeline {
      position: relative;
      padding-left: 28px;
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
    }

    .vertical-timeline::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 6px;
      width: 2px;
      height: calc(100% - 20px);
      background: linear-gradient(to bottom, var(--accent) 0%, rgba(255, 255, 255, 0.05) 100%);
      z-index: 1;
    }

    .timeline-step {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .step-marker {
      position: absolute;
      left: -28px;
      top: 2px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #121218;
      border: 2px solid var(--accent);
      z-index: 2;
      box-shadow: 0 0 10px rgba(226, 19, 110, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-info h4 {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 2px 0;
      letter-spacing: 0.02em;
    }

    .step-info p {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.55;
      margin: 0;
    }

    .project-actions {
      margin-top: 10px;
      display: flex;
      gap: 12px;
    }

    .btn-project-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #fff;
      font-family: var(--font-accent);
      font-size: 0.82rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-project-link:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .btn-project-link.primary {
      background: var(--gradient-main);
      border-color: transparent;
      box-shadow: 0 8px 20px rgba(226, 19, 110, 0.25);
    }

    .btn-project-link.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(226, 19, 110, 0.35);
    }

    /* Website browser wrapper inside rows */
    .showcase-browser-wrapper {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      background: #0f0f15;
    }

    .showcase-browser-wrapper .browser-header {
      height: 32px;
      background: rgba(255, 255, 255, 0.03);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      padding: 0 14px;
      gap: 6px;
      flex-shrink: 0;
    }

    .showcase-browser-wrapper .browser-content {
      flex-grow: 1;
      position: relative;
      overflow: hidden;
      background: #000;
    }

    .showcase-browser-wrapper .browser-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform 4s ease-in-out;
    }

    .showcase-media-panel:hover .showcase-browser-wrapper .browser-content img {
      transform: translateY(-30%);
    }

    /* Responsive overrides */
    @media (max-width: 991px) {

      .showcase-row,
      .showcase-row:nth-child(even) {
        flex-direction: column;
        gap: 32px;
      }

      .showcase-media-panel,
      .showcase-workflow-panel {
        flex: 0 0 100%;
        width: 100%;
      }

      .showcase-rows-container {
        gap: 70px;
      }
    }

    /* Responsive layout overrides */
    @media (max-width: 1024px) {
      .portfolio-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: minmax(260px, auto);
        gap: 20px;
      }

      .portfolio-card.bento-tall {
        grid-column: span 3;
        grid-row: span 2;
      }

      .portfolio-card.bento-square-1,
      .portfolio-card.bento-square-2 {
        grid-column: span 3;
      }

      .portfolio-card.bento-wide-1,
      .portfolio-card.bento-wide-2,
      .portfolio-card.bento-row-wide {
        grid-column: span 6;
      }

      .portfolio-card.bento-row-narrow {
        grid-column: span 3;
      }

      .bento-split-left {
        flex: 0 0 50%;
      }

      .bento-split-right {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 768px) {
      .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 24px;
      }

      .portfolio-card.bento-tall,
      .portfolio-card.bento-square-1,
      .portfolio-card.bento-wide-1,
      .portfolio-card.bento-wide-2,
      .portfolio-card.bento-square-2,
      .portfolio-card.bento-row-wide,
      .portfolio-card.bento-row-narrow {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
        min-height: 250px;
      }

      .bento-split {
        flex-direction: column;
      }

      .bento-split-left,
      .bento-split-right {
        flex: 0 0 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        padding: 24px;
      }

      .bento-split-right {
        border-bottom: none;
      }

      .portfolio-card.bento-tall .portfolio-img-wrap {
        height: 220px;
      }
    }

/* Hide Mobile Category Selector elements on Desktop */
@media (min-width: 769px) {
  .mobile-category-selector,
  .mobile-category-menu {
    display: none !important;
  }
}

/* Mobile Category Pill Selector & Dropdown Menu */
@media (max-width: 768px) {
  .portfolio-tabs-wrapper {
    display: none !important;
  }

  .portfolio-tabs-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    z-index: 100;
  }

  .mobile-category-selector {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 24px;
    background: rgba(18, 22, 31, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 143, 38, 0.35);
    border-radius: 100px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 143, 38, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 230px;
  }

  .mobile-category-selector:active {
    transform: scale(0.97);
  }

  .mobile-cat-active-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-cat-active-text i {
    color: #FF8F26;
    font-size: 0.92rem;
  }

  .mobile-cat-arrow {
    font-size: 0.82rem;
    color: #FF8F26;
    transition: transform 0.3s ease;
  }

  .mobile-category-selector.open .mobile-cat-arrow {
    transform: rotate(180deg);
  }

  .mobile-category-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100% - 32px);
    max-width: 320px;
    background: rgba(15, 18, 26, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 143, 38, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex !important;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
  }

  .mobile-category-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  .mobile-cat-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
  }

  .mobile-cat-option i:first-child {
    margin-right: 10px;
    color: #FF8F26;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
  }

  .cat-check {
    opacity: 0;
    color: #FF8F26;
    font-size: 0.85rem;
    transition: opacity 0.2s ease;
  }

  .mobile-cat-option.active {
    background: rgba(255, 143, 38, 0.15);
    color: #ffffff;
    font-weight: 600;
  }

  .mobile-cat-option.active .cat-check {
    opacity: 1;
  }
}

/* Premium View More Button */
.premium-view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-view-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 138, 255, 0.15) 0%, rgba(0, 98, 255, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.premium-view-more-btn .btn-text,
.premium-view-more-btn .btn-icon {
  position: relative;
  z-index: 2;
}

.premium-view-more-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E8AFF 0%, #0062FF 100%);
  color: #fff;
  font-size: 0.85rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-view-more-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 138, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 98, 255, 0.25);
}

.premium-view-more-btn:hover::before {
  opacity: 1;
}

.premium-view-more-btn:hover .btn-icon {
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 98, 255, 0.4);
}

/* Graphic Design Carousel */
.gd-carousel-wrapper {
  display: flex;
  width: 100%;
  overflow-x: auto; /* Allows JS and manual scrolling */
  padding: 20px 0;
  gap: 20px;
  position: relative;
  scroll-behavior: auto; /* No smooth scroll so JS is instant */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  /* Mask image to create fading edges on left and right */
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  cursor: grab;
}

.gd-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.gd-carousel-wrapper:active {
  cursor: grabbing;
}

.gd-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  /* Removed CSS animation so JS can control scrolling */
}

.gd-slide {
  flex: 0 0 auto;
  height: 400px; /* Fixed height for all posters */
  width: auto;   /* Width adapts to image ratio */
  border-radius: 0; /* No round borders */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  /* Prevent images from being draggable so parent can be dragged */
  user-select: none;
}

.gd-slide img {
  width: auto;
  height: 100%;
  object-fit: contain; /* or cover if you want it to fill but since width is auto, it's the natural size */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  pointer-events: none; /* Crucial for wrapper dragging */
}

.gd-slide:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 98, 255, 0.3);
  z-index: 10;
}

.gd-slide:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gd-slide {
    width: auto;
    height: 250px;
  }
}

/* Pricing CTA Override */
.pricing-cta-new {
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}

.pricing-cta-new .nav-cta-left {
  margin-right: auto;
}

@media (max-width: 768px) {
  .pricing-cta-new {
    border-radius: 100px !important;
    padding: 12px 20px !important;
    height: auto !important;
  }
  .pricing-cta-new .nav-cta-text {
    display: inline-block !important;
  }
  .pricing-cta-new .nav-cta-arrow,
  .pricing-cta-new .nav-cta-divider {
    display: flex !important;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: #a3a3a3;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ef4444;
}

.order-form .form-group {
  margin-bottom: 15px;
}

.order-form label {
  display: block;
  color: #cbd5e1;
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.order-form input, .order-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.order-form input:focus, .order-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.1);
}

.order-form input[readonly] {
  color: #3b82f6;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  cursor: not-allowed;
}

.order-form .submit-btn {
  width: 100%;
  background: #3b82f6;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.order-form .submit-btn:hover {
  background: #2563eb;
}

.modal-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 576px) {
  .modal-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

.back-to-portfolio-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #ffffff !important;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-left: auto;
}

.back-to-portfolio-cta:hover {
  background: linear-gradient(135deg, #FF8F26 0%, #F27402 100%);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 116, 2, 0.5);
}

.back-to-portfolio-cta i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.back-to-portfolio-cta:hover i {
  transform: translateX(-4px);
}

/* ==========================================================================
   ULTRA-PREMIUM 2-COLUMN SPLIT CUSTOM SOLUTION SYSTEM
   ========================================================================== */
.custom-package-section {
  padding: 110px 0;
  background: radial-gradient(circle at 50% 50%, #0d1322 0%, #030508 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  margin: 0;
}

.custom-solution-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .custom-solution-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.custom-solution-left {
  text-align: left;
}

.custom-solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(255, 143, 38, 0.12);
  border: 1px solid rgba(255, 143, 38, 0.3);
  border-radius: 100px;
  color: #FF8F26;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pulse-orange-dot {
  width: 8px;
  height: 8px;
  background: #FF8F26;
  border-radius: 50%;
  box-shadow: 0 0 14px #FF8F26;
  animation: pulseDot 1.8s infinite;
}

.custom-package-title {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
  color: #ffffff;
  line-height: 1.12;
}

.custom-package-subtitle {
  font-size: 1.08rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 32px;
}

.custom-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.custom-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-size: 0.98rem;
  font-weight: 600;
}

.custom-perk-item i {
  color: #FF8F26;
  font-size: 1rem;
}

.custom-solution-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.custom-solution-primary-btn {
  padding: 18px 38px;
  background: linear-gradient(135deg, #FF8F26 0%, #F27402 100%);
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1.02rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(242, 116, 2, 0.45);
  text-decoration: none;
}

.custom-solution-primary-btn:hover {
  background: linear-gradient(135deg, #ff9b3b 0%, #ff6c00 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(242, 116, 2, 0.7);
}

.custom-solution-secondary-btn {
  padding: 18px 32px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-family: var(--font-main);
  font-size: 1.02rem;
  font-weight: 700;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
  text-decoration: none;
}

.custom-solution-secondary-btn:hover {
  background: #22c55e;
  color: #ffffff;
  border-color: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(34, 197, 94, 0.45);
}

/* DYNAMIC FLOW ANIMATIONS FOR CUSTOM SOLUTION SECTION */
@keyframes floatGlowOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.15); }
}

@keyframes floatGlowOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -20px) scale(1.12); }
}

@keyframes borderGlowFlow {
  0% { border-color: rgba(255, 143, 38, 0.4); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 143, 38, 0.2); }
  50% { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(59, 130, 246, 0.2); }
  100% { border-color: rgba(255, 143, 38, 0.4); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 143, 38, 0.2); }
}

.custom-package-glow-1 {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 143, 38, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: floatGlowOrb1 10s ease-in-out infinite;
}

.custom-package-glow-2 {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(242, 116, 2, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: floatGlowOrb2 12s ease-in-out infinite;
}

/* RIGHT COLUMN VISUAL MATRIX CARD */
.custom-visual-card {
  background: linear-gradient(145deg, rgba(20, 27, 44, 0.9) 0%, rgba(10, 14, 24, 0.9) 100%);
  border: 1px solid rgba(255, 143, 38, 0.35);
  border-radius: 32px;
  padding: 32px;
  backdrop-filter: blur(30px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 143, 38, 0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: borderGlowFlow 8s infinite;
}

.matrix-pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.matrix-pillar-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.6s ease;
}

.matrix-pillar-item:hover::before {
  left: 100%;
}

.matrix-pillar-item:hover {
  background: rgba(255, 143, 38, 0.16);
  border-color: rgba(255, 143, 38, 0.5);
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 143, 38, 0.25);
}

.pillar-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 143, 38, 0.15);
  border: 1px solid rgba(255, 143, 38, 0.3);
  color: #FF8F26;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.matrix-pillar-item:hover .pillar-icon-box {
  background: #FF8F26;
  color: #ffffff;
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 143, 38, 0.6);
}

.pillar-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.pillar-info p {
  font-size: 0.84rem;
  color: #94a3b8;
  margin: 0;
}


