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

    :root {
      --deep-black: #0A0A0A;
      --nero: #161616;
      --crimson: #DC143C;
      --off-white: #FAFAFA;
      --gray-700: #3F3F46;
      --gray-500: #A0A0A0;
      --gray-400: #52525B
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--deep-black);
      color: var(--off-white);
      line-height: 1.6;
      overflow-x: hidden
    }

    p {
      color: var(--gray-500);
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 1.8
    }

    .grid-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.2;
      background-image: linear-gradient(rgba(220, 20, 60, 0.1) 3px, transparent 2px), linear-gradient(90deg, rgba(220, 20, 60, 0.1) 1px, transparent 2px), radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
      background-size: 80px 80px, 80px 80px, 100% 100%;
      background-repeat: repeat, repeat, no-repeat;
      z-index: 0
    }

    .nav {
      position: fixed;
      top: 40px;
      /* Adjusted for banner */
      left: 0;
      right: 0;
      z-index: 1002;
      padding: clamp(20px, 3vw, 40px) clamp(24px, 5vw, 48px);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      /* Premium Glass Effect */
      background: rgba(10, 10, 10, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav.scrolled {
      background: rgba(10, 10, 10, 0.85);
      padding: 14px 48px;
      border-bottom-color: rgba(220, 20, 60, 0.2);
    }

    .logo-full {
      display: block;
      opacity: 1;
      transition: all 0.3s ease;
    }

    .logo-compact {
      opacity: 0;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: all 0.3s ease;
      visibility: hidden;
    }

    .nav.scrolled .logo-full {
      opacity: 0;
      visibility: hidden;
      transform: translateY(-5px);
    }

    .nav.scrolled .logo-compact {
      opacity: 1;
      visibility: visible;
      transform: translateY(-50%);
    }

    @media (max-width: 1024px) {
      .nav {
        padding: 14px 24px;
        top: 40px;
      }

      .nav.scrolled {
        padding: 12px 24px;
      }
    }

    @media (max-width: 768px) {
      .nav {
        top: 36px;
      }
    }

    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

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

    .nav-link {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-500);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: -8px;
      bottom: -4px;
      height: 3px;
      width: calc(100% + 16px);
      background: linear-gradient(90deg, var(--crimson) 0%, transparent 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-link:hover {
      color: var(--off-white);
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--off-white);
      position: relative;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 40px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.25s ease
    }

    .btn-primary {
      background: var(--crimson);
      color: var(--off-white)
    }

    .btn-primary:hover {
      background: #e8163f;
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
      /* Enhanced glow */
    }

    .btn-secondary {
      background: transparent;
      color: var(--off-white);
      border: 1px solid var(--gray-700)
    }

    .btn-secondary:hover {
      border-color: var(--off-white)
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
      /* Ensure glow doesn't spill over */
    }

    /* Ambient Petal Glow */
    .hero::before {
      content: '';
      position: absolute;
      top: var(--mouse-y, 50%);
      left: var(--mouse-x, 50%);
      width: 700px;
      height: 160px;
      background: var(--crimson);
      border-radius: 100% 0 100% 15%;
      transform: translate(-50%, -50%) rotate(-15deg);
      filter: blur(100px);
      opacity: 0;
      transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      pointer-events: none;
      z-index: -1;
    }

    .hero:hover::before {
      opacity: 0.15;
    }

    /* Force Service Card Title Color */
    .service-card {
      text-decoration: none !important;
    }

    .service-card .service-title {
      color: var(--crimson) !important;
      transition: all 0.3s ease;
    }

    .service-card:visited .service-title,
    .service-card:active .service-title {
      color: var(--crimson) !important;
    }

    .service-card:hover .service-title {
      color: var(--crimson) !important;
      text-shadow: 0 0 12px rgba(220, 20, 60, 0.3);
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }

    .delay-1 {
      animation-delay: 0.1s;
    }

    .delay-2 {
      animation-delay: 0.2s;
    }

    .delay-3 {
      animation-delay: 0.3s;
    }


    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      background: rgba(220, 20, 60, 0.1);
      border: 1px solid rgba(220, 20, 60, 0.25);
      margin-bottom: 28px
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      background: var(--crimson);
      border-radius: 50%;
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.4
      }
    }

    .badge-text {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--crimson)
    }

    .hero-title {
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
      max-width: 900px
    }

    .hero-title .accent {
      color: var(--crimson)
    }

    .hero-desc {
      font-size: 17px;
      color: var(--gray-500);
      max-width: 580px;
      line-height: 1.75;
      margin-bottom: 36px
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0.7;
      transition: opacity 0.4s ease, transform 0.4s ease;
      cursor: pointer;
      z-index: 10;
    }

    .scroll-indicator:hover {
      opacity: 1;
    }

    .scroll-indicator.hidden {
      opacity: 0;
      transform: translate(-50%, 20px);
      pointer-events: none;
    }

    .mouse {
      width: 26px;
      height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: 20px;
      position: relative;
      background: rgba(10, 10, 10, 0.2);
      backdrop-filter: blur(4px);
    }

    .wheel {
      width: 4px;
      height: 8px;
      background: var(--crimson);
      border-radius: 2px;
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      animation: wheel 1.5s infinite;
    }

    @keyframes wheel {
      0% {
        opacity: 1;
        top: 6px;
      }

      100% {
        opacity: 0;
        top: 20px;
      }
    }

    .arrow-span span {
      display: block;
      width: 10px;
      height: 10px;
      border-bottom: 2px solid rgba(255, 255, 255, 0.3);
      border-right: 2px solid rgba(255, 255, 255, 0.3);
      transform: rotate(45deg);
      margin: -4px 0;
      animation: arrow 2s infinite;
    }

    .arrow-span span:nth-child(2) {
      animation-delay: -0.2s;
    }

    .arrow-span span:nth-child(3) {
      animation-delay: -0.4s;
    }

    @keyframes arrow {
      0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
      }

      50% {
        opacity: 1;
      }

      100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
      }
    }

    .value-props {
      padding: 72px 48px;
      border-top: 1px solid #1a1a1a;
      border-bottom: 1px solid #1a1a1a
    }

    .value-props-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px
    }

    .value-prop {
      text-align: center;
      padding: 32px 24px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      transition: all 0.3s ease;
      cursor: default;
    }

    .value-prop:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(220, 20, 60, 0.2);
      transform: translateY(-4px);
    }

    .value-prop-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10, 10, 10, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      transition: all 0.3s ease;
      position: relative;
    }

    .value-prop:hover .value-prop-icon {
      border-color: var(--crimson);
      box-shadow: 0 0 16px rgba(220, 20, 60, 0.2);
      transform: scale(1.1) rotate(5deg);
    }

    .value-prop-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--crimson);
      fill: none;
      stroke-width: 2
    }

    .value-prop-title {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px
    }

    .value-prop-desc {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.7
    }

    .section {
      padding: clamp(100px, 15vw, 160px) clamp(18px, 8vw, 120px);
      position: relative
    }

    .section-inner {
      max-width: 1400px;
      margin: 0 auto
    }

    .section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 4px
    }

    .section-title {
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.12
    }

    .section-desc {
      font-size: 15px;
      color: var(--gray-500);
      max-width: 100%;
      line-height: 1.75;
      margin-top: 6px;
    }

    .stats-bar {
      padding: 56px 48px;
      background: var(--nero)
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center
    }

    .stat-value {
      font-size: 40px;
      font-weight: 900;
      color: var(--crimson);
      line-height: 1
    }

    .stat-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--gray-500);
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: 0.04em
    }

    .work {
      background: var(--deep-black)
    }

    .section-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 32px;
      width: 100%;
    }

    @media (min-width: 1024px) {
      .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        margin-bottom: 32px;
      }

      .section-header>div {
        flex: 1;
      }

      .section-header .section-desc,
      .section-header .section-description {
        flex: 1;
        max-width: 100%;
        margin-bottom: 8px;
      }
    }

    .section-header p,
    .section-header .section-desc {
      margin-bottom: 0;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px
    }

    .project-card {
      background: var(--nero);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      position: relative;
    }

    .project-card:hover {
      border-color: rgba(220, 20, 60, 0.3);
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }

    .project-image {
      height: 240px;
      background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: #333;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    .project-img-cover {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

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

    .concept-label {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(4px);
      color: var(--off-white);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 6px 12px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 2;
    }

    .project-info {
      padding: 32px;
      background: var(--nero);
      /* Solid background to avoid reveal through */
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .industry-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 8px;
      display: inline-block;
      background: rgba(220, 20, 60, 0.1);
      padding: 4px 8px;
      border-radius: 4px;
    }

    .project-description {
      font-size: 13px;
      color: var(--gray-500);
      line-height: 1.6;
    }

    .project-title {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px
    }

    .project-result {
      font-size: 13px;
      color: var(--gray-500)
    }

    .project-result strong {
      color: var(--off-white)
    }

    .transparency-notice {
      margin-bottom: 32px;
      padding: 16px 24px;
      background: rgba(220, 20, 60, 0.08);
      border-left: 3px solid var(--crimson);
      border-radius: 4px;
    }

    .transparency-notice p {
      margin: 0;
      font-size: 13px;
      color: var(--gray-500);
    }

    .transparency-notice strong {
      color: var(--crimson);
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.05em;
      margin-right: 8px;
    }

    .services {
      background: var(--nero)
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 56px
    }

    .service-card {
      padding: 32px;
      background: rgba(10, 10, 10, 0.3);
      /* Darker background */
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    /* Holographic Gradient Sheen */
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(125deg,
          transparent 0%,
          rgba(255, 255, 255, 0.02) 40%,
          rgba(255, 255, 255, 0.04) 50%,
          rgba(255, 255, 255, 0.02) 60%,
          transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.6s;
    }

    .service-card:hover::before {
      transform: translateX(100%);
    }

    .service-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(220, 20, 60, 0.3);
      transform: translateY(-5px);
      box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        0 0 16px rgba(220, 20, 60, 0.1);
      /* Crimson Glow */
    }

    .service-num {
      font-size: 56px;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.05);
      /* Watermark style */
      line-height: 0.8;
      margin-bottom: 24px;
      transition: all 0.4s ease;
      position: absolute;
      top: 24px;
      right: 24px;
    }

    .service-card:hover .service-num {
      color: rgba(220, 20, 60, 0.1);
      transform: scale(1.1);
    }

    .service-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 12px;
      position: relative;
    }

    .service-desc {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.7;
      margin-bottom: 24px;
      position: relative;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px
    }

    .service-tag {
      font-size: 10px;
      font-weight: 600;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      color: var(--gray-500);
      transition: all 0.3s ease;
    }

    .service-card:hover .service-tag {
      background: rgba(220, 20, 60, 0.15);
      border-color: rgba(220, 20, 60, 0.3);
      color: var(--crimson);
      transform: translateY(-2px);
    }

    .testimonials {
      background: var(--deep-black)
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 56px
    }

    .testimonial-card {
      padding: 40px;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      position: relative;
      transition: all 0.3s ease;
      overflow: hidden;
      /* Needed for sheen */
    }

    /* Holographic Gradient Sheen for Testimonials */
    .testimonial-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(125deg,
          transparent 0%,
          rgba(255, 255, 255, 0.02) 40%,
          rgba(255, 255, 255, 0.04) 50%,
          rgba(255, 255, 255, 0.02) 60%,
          transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.6s;
      z-index: 1;
      pointer-events: none;
    }

    .testimonial-card:hover::after {
      transform: translateX(100%);
    }

    .testimonial-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(220, 20, 60, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2), 0 0 16px rgba(220, 20, 60, 0.1);
    }

    .testimonial-card::before {
      content: '“';
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 80px;
      line-height: 1;
      font-family: serif;
      color: var(--crimson);
      opacity: 0.1;
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 0;
    }

    .testimonial-card:hover::before {
      opacity: 0.2;
      transform: scale(1.1);
    }

    .testimonial-quote {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 22px;
      font-style: italic;
      color: var(--off-white)
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px
    }

    .testimonial-avatar {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--crimson) 0%, #8B0000 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px
    }

    .testimonial-name {
      font-weight: 700;
      font-size: 14px
    }

    .testimonial-role {
      font-size: 12px;
      color: var(--gray-500)
    }

    .process {
      background: var(--nero);
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      margin-top: 56px
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 3px
    }

    .process-step {
      padding: 24px 32px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      border-left: 2px solid rgba(255, 255, 255, 0.03);
      background: transparent;
      margin-bottom: 4px;
      position: relative;
    }

    .process-step:hover {
      background: rgba(255, 255, 255, 0.02);
      border-left-color: rgba(255, 255, 255, 0.1);
    }

    .process-step.active {
      background: rgba(220, 20, 60, 0.03);
      border-left: 3px solid var(--crimson);
    }

    .process-step::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 32px;
      right: 32px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    }

    .step-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .step-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .step-num {
      font-size: 12px;
      font-weight: 800;
      color: var(--gray-500);
      transition: all 0.3s;
      font-family: monospace;
    }

    .process-step.active .step-num {
      color: var(--crimson);
      transform: translateX(4px);
    }

    .step-title {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .step-duration {
      font-size: 11px;
      color: var(--gray-400);
      font-weight: 500;
    }

    .form-submit-container {
      display: flex;
      align-items: flex-end;
      height: 100%;
    }

    .form-submit-container .btn {
      width: 100%;
      height: 54px;
      /* Matches input height */
      justify-content: center;
      margin-top: auto;
    }

    .detail-card {
      padding: clamp(40px, 5vw, 64px);
      background: var(--deep-black);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .detail-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at top right, rgba(220, 20, 60, 0.05), transparent 70%);
      pointer-events: none;
    }

    .detail-num {
      font-size: 120px;
      font-weight: 900;
      color: rgba(220, 20, 60, 0.08);
      line-height: 0.8;
      position: absolute;
      top: -10px;
      right: -10px;
      pointer-events: none;
    }

    .detail-title {
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 900;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .detail-desc {
      font-size: 16px;
      color: var(--gray-500);
      line-height: 1.8;
      max-width: 480px;
    }

    .accessibility {
      padding: 72px 48px;
      border-top: 1px solid rgba(220, 20, 60, 0.15);
      border-bottom: 1px solid rgba(220, 20, 60, 0.15)
    }

    .accessibility-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center
    }

    .accessibility-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      background: rgba(220, 20, 60, 0.1);
      border: 1px solid rgba(220, 20, 60, 0.2);
      margin-bottom: 24px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--crimson);
      border-radius: 20px;
      box-shadow: 0 0 12px rgba(220, 20, 60, 0.1);
    }

    .accessibility h3 {
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 12px
    }

    .accessibility p {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.8
    }

    .accessibility-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .accessibility-feature {
      padding: 18px;
      background: var(--nero);
      border: 1px solid #222
    }

    .accessibility-feature-title {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 3px
    }

    .accessibility-feature-desc {
      font-size: 11px;
      color: var(--gray-500)
    }

    .cta {
      padding: 90px 48px;
      background: linear-gradient(135deg, var(--crimson) 0%, #9B1B30 100%);
      text-align: center
    }

    .cta-inner {
      max-width: 650px;
      margin: 0 auto
    }

    .cta-title {
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 18px
    }

    .cta-desc {
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 32px
    }

    .btn-cta {
      background: var(--off-white);
      color: var(--deep-black);
      padding: 16px 40px
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3)
    }

    .contact {
      background: var(--deep-black)
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 56px;
      align-items: center;
    }

    .contact-expect {
      margin-top: 24px;
      padding: 18px;
      background: var(--nero);
      border: 1px solid #222
    }

    .contact-expect-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 12px
    }

    .contact-expect-item {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 12px;
      color: var(--gray-500)
    }

    .contact-expect-num {
      color: var(--crimson);
      font-weight: 700
    }

    .contact-info-email {
      display: inline-block;
      font-size: 14px;
      color: var(--gray-500);
      text-decoration: none;
      margin-top: 18px;
      transition: color 0.2s
    }

    .contact-info-email:hover {
      color: var(--crimson)
    }

    .contact-location {
      font-size: 12px;
      color: var(--gray-500);
      margin-top: 6px
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .form-group {
      display: flex;
      flex-direction: column
    }

    .form-group.full {
      grid-column: span 2
    }

    .form-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 6px
    }

    .form-input,
    .form-select,
    .form-textarea {
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--off-white);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      outline: none;
      transition: all 0.3s;
      border-radius: 8px;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--crimson);
      box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
      transform: translateY(-2px);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: rgba(255, 255, 255, 0.2);
    }

    .form-select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 48px;
    }

    .form-select option {
      background: var(--nero);
      color: var(--off-white);
      padding: 16px;
      font-weight: 500;
    }

    .form-textarea {
      resize: none;
      min-height: 90px
    }

    .footer {
      padding: 80px 48px 40px;
      background: var(--nero);
      border-top: 1px solid #1a1a1a;
      position: relative;
      overflow: hidden;
    }

    /* Footer Grid Pattern */
    .footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: 0.3;
      pointer-events: none;
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px
    }

    .footer-brand-desc {
      font-size: 12px;
      color: var(--gray-500);
      line-height: 1.7;
      margin: 12px 0
    }

    .footer-heading {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 24px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .footer-link {
      font-size: 12px;
      color: var(--gray-500);
      text-decoration: none;
      transition: color 0.2s
    }

    .footer-link:hover {
      color: var(--off-white);
      padding-left: 4px;
      /* Slide effect */
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid #222
    }

    .footer-copy {
      font-size: 11px;
      color: var(--gray-500)
    }

    .footer-legal {
      display: flex;
      gap: 20px
    }

    .footer-legal-link {
      font-size: 11px;
      color: var(--gray-500);
      text-decoration: none
    }

    .footer-legal-link:hover {
      color: var(--off-white)
    }





    .section-inner {
      max-width: 1400px;
      margin: 0 auto
    }

    .section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 4px
    }

    .section-title {
      font-size: clamp(32px, 4.5vw, 48px);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.12
    }

    .section-desc {
      font-size: 15px;
      color: var(--gray-500);
      max-width: 1000px;
      line-height: 1.75;
    }



    .project-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px
    }



    /* Project 1 - SaaS Dashboard */
    .project-cover-1 {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 32px;
    }

    .dashboard-mock {
      width: 100%;
      max-width: 380px;
      background: #0d1117;
      border-radius: 8px;
      padding: 16px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .dash-header {
      display: flex;
      gap: 6px;
      margin-bottom: 12px
    }

    .dash-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #333
    }

    .dash-dot.r {
      background: #ff5f56
    }

    .dash-dot.y {
      background: #ffbd2e
    }

    .dash-dot.g {
      background: #27ca40
    }

    .dash-nav {
      display: flex;
      gap: 8px;
      margin-bottom: 16px
    }

    .dash-nav-item {
      height: 6px;
      background: #21262d;
      border-radius: 3px;
      flex: 1
    }

    .dash-nav-item.active {
      background: var(--crimson)
    }

    .dash-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .dash-card {
      background: #161b22;
      border-radius: 6px;
      padding: 12px
    }

    .dash-card-title {
      font-size: 8px;
      color: #8b949e;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px
    }

    .dash-card-value {
      font-size: 18px;
      font-weight: 800;
      color: #fff
    }

    .dash-card-value.up {
      color: #3fb950
    }

    .dash-chart {
      grid-column: span 2;
      height: 60px;
      background: #161b22;
      border-radius: 6px;
      display: flex;
      align-items: flex-end;
      padding: 8px;
      gap: 4px
    }

    .dash-bar {
      flex: 1;
      background: linear-gradient(to top, var(--crimson), #ff4d6d);
      border-radius: 2px 2px 0 0
    }

    /* Project 2 - Healthcare */
    .project-cover-2 {
      background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 32px;
    }

    .health-mock {
      width: 100%;
      max-width: 340px;
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .health-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px
    }

    .health-logo {
      font-size: 14px;
      font-weight: 800;
      color: #0d9488
    }

    .health-nav {
      display: flex;
      gap: 12px
    }

    .health-nav-dot {
      width: 6px;
      height: 6px;
      background: #e5e7eb;
      border-radius: 50%
    }

    .health-hero {
      background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 12px
    }

    .health-hero-title {
      font-size: 12px;
      font-weight: 700;
      color: #134e4a;
      margin-bottom: 4px
    }

    .health-hero-text {
      font-size: 9px;
      color: #5eead4
    }

    .health-cards {
      display: flex;
      gap: 8px
    }

    .health-card {
      flex: 1;
      background: #f9fafb;
      border-radius: 8px;
      padding: 10px;
      text-align: center
    }

    .health-icon {
      width: 24px;
      height: 24px;
      background: #ccfbf1;
      border-radius: 50%;
      margin: 0 auto 6px
    }

    .health-card-text {
      font-size: 8px;
      color: #6b7280
    }

    .wcag-badge {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: #fff;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 9px;
      font-weight: 700;
      color: #0d9488;
      display: flex;
      align-items: center;
      gap: 4px
    }

    .wcag-badge::before {
      content: "✓";
      color: #0d9488
    }

    /* Project 3 - FinTech */
    .project-cover-3 {
      background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 32px;
    }

    .fintech-mock {
      width: 100%;
      max-width: 360px;
      background: #0f0f23;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      border: 1px solid #2d2d5a;
    }

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

    .fintech-logo {
      font-size: 16px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.5px
    }

    .fintech-logo span {
      color: #818cf8
    }

    .fintech-btn {
      background: #4f46e5;
      color: #fff;
      font-size: 8px;
      padding: 6px 12px;
      border-radius: 4px;
      font-weight: 600
    }

    .fintech-balance {
      margin-bottom: 20px
    }

    .fintech-label {
      font-size: 9px;
      color: #6366f1;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px
    }

    .fintech-amount {
      font-size: 28px;
      font-weight: 900;
      color: #fff
    }

    .fintech-chart {
      height: 80px;
      display: flex;
      align-items: flex-end;
      gap: 3px;
      margin-bottom: 16px
    }

    .fintech-bar {
      flex: 1;
      background: linear-gradient(to top, #4f46e5, #818cf8);
      border-radius: 2px 2px 0 0;
      opacity: 0.7
    }

    .fintech-bar:nth-child(even) {
      opacity: 1
    }

    .fintech-stats {
      display: flex;
      gap: 12px
    }

    .fintech-stat {
      flex: 1;
      background: #1a1a3e;
      border-radius: 8px;
      padding: 10px
    }

    .fintech-stat-label {
      font-size: 8px;
      color: #6366f1;
      margin-bottom: 2px
    }

    .fintech-stat-value {
      font-size: 14px;
      font-weight: 700;
      color: #fff
    }

    .speed-badge {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: #4f46e5;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 9px;
      font-weight: 700;
      color: #fff
    }

    /* Project 4 - EdTech */
    .project-cover-4 {
      background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 32px;
    }

    .edtech-mock {
      width: 100%;
      max-width: 340px;
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .edtech-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px
    }

    .edtech-logo {
      font-size: 14px;
      font-weight: 800;
      color: #92400e
    }

    .edtech-avatar {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      border-radius: 50%
    }

    .edtech-progress {
      background: #fef3c7;
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 12px
    }

    .edtech-progress-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px
    }

    .edtech-progress-title {
      font-size: 10px;
      font-weight: 700;
      color: #92400e
    }

    .edtech-progress-pct {
      font-size: 10px;
      font-weight: 700;
      color: #d97706
    }

    .edtech-bar-bg {
      height: 6px;
      background: #fde68a;
      border-radius: 3px;
      overflow: hidden
    }

    .edtech-bar-fill {
      height: 100%;
      width: 72%;
      background: linear-gradient(90deg, #f59e0b, #d97706);
      border-radius: 3px
    }

    .edtech-courses {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px
    }

    .edtech-course {
      background: #fffbeb;
      border-radius: 8px;
      padding: 10px;
      border: 1px solid #fef3c7
    }

    .edtech-course-icon {
      width: 20px;
      height: 20px;
      background: #fde68a;
      border-radius: 4px;
      margin-bottom: 6px
    }

    .edtech-course-title {
      font-size: 9px;
      font-weight: 600;
      color: #78350f
    }

    .a11y-badge {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: #fff;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 9px;
      font-weight: 700;
      color: #92400e;
      display: flex;
      align-items: center;
      gap: 4px
    }

    .project-content {
      padding: 24px
    }

    .project-category {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 8px
    }

    .project-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px
    }

    .project-result {
      font-size: 13px;
      color: var(--gray-500)
    }

    .project-result strong {
      color: var(--off-white)
    }

    .work-note {
      text-align: center;
      margin-top: 48px;
      padding: 28px;
      background: rgba(220, 20, 60, 0.04);
      border: 1px solid rgba(220, 20, 60, 0.15);
      border-radius: 8px
    }

    .work-note p {
      font-size: 13px;
      color: var(--gray-500)
    }

    .work-note strong {
      color: var(--off-white)
    }

    @media(max-width:1024px) {
      .section {
        padding: 64px 24px
      }

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

      .work-header {
        flex-direction: column;
        align-items: flex-start
      }
    }

    /* --- Modern Standard Components --- */

    .logo-scroll-section {
      padding: 48px 0;
      border-top: 1px solid #1a1a1a;
      border-bottom: 1px solid #1a1a1a;
      overflow: hidden;
    }

    .logo-scroll-label {
      text-align: center;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 32px;
    }

    .logo-scroll-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .logo-scroll-wrapper::before,
    .logo-scroll-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .logo-scroll-wrapper::before {
      left: 0;
      background: linear-gradient(90deg, var(--deep-black) 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
      backdrop-filter: blur(2px);
    }

    .logo-scroll-wrapper::after {
      right: 0;
      background: linear-gradient(270deg, var(--deep-black) 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
      backdrop-filter: blur(2px);
    }

    .logo-track {
      display: flex;
      gap: 64px;
      animation: scroll 40s linear infinite;
      width: max-content;
    }

    .logo-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .scroll-text {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-500);
      white-space: nowrap;
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .scroll-text .highlight {
      color: var(--crimson);
    }

    /* Reasons Section Styling */
    .reasons-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .reason-card {
      padding: 32px;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      transition: all 0.3s ease;
      text-align: center;
    }

    .reason-card:hover {
      border-color: rgba(220, 20, 60, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2), 0 0 16px rgba(220, 20, 60, 0.1);
    }

    .reason-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--crimson);
      background: rgba(220, 20, 60, 0.1);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .reason-card:hover .reason-icon {
      transform: scale(1.1) rotate(5deg);
      background: rgba(220, 20, 60, 0.2);
    }

    .reason-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
    }

    .reason-title {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--off-white);
    }

    .reason-desc {
      font-size: 13px;
      color: var(--gray-500);
      line-height: 1.6;
    }

    @media(max-width:1024px) {
      .reasons-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:640px) {
      .reasons-grid {
        grid-template-columns: 1fr;
      }
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      padding: 0 16px;
      transition: all 0.4s ease;
      flex-shrink: 0;
    }

    .logo-text {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--off-white);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 30px;
      height: 30px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }

    .mobile-menu-btn span {
      width: 100%;
      height: 2px;
      background: var(--off-white);
      transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:first-child {
      transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:last-child {
      transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--deep-black);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 40px;
    }

    .mobile-menu.active {
      transform: translateY(0);
    }

    .mobile-menu-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      text-align: center;
    }

    .mobile-nav-link {
      font-size: 24px;
      font-weight: 800;
      color: var(--gray-500);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.2s;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
      color: var(--off-white);
      transform: scale(1.1);
    }

    .mobile-nav-link.highlight {
      color: var(--crimson);
    }

    @media (max-width: 1024px) {
      .mobile-menu-btn {
        display: flex;
      }
    }

    /* Toast Notification */
    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: rgba(10, 10, 10, 0.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-left: 4px solid var(--crimson);
      padding: 20px 24px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
      z-index: 2000;
      transform: translateY(100px);
      opacity: 0;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      pointer-events: none;
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    /* Legal Pages */
    .legal-content {
      padding: clamp(120px, 15vw, 160px) clamp(24px, 5vw, 48px) clamp(60px, 8vw, 100px);
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .legal-header {
      margin-bottom: 64px;
      text-align: left;
    }

    .legal-title {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 24px;
    }

    .legal-body {
      color: var(--gray-500);
      font-size: 16px;
      line-height: 1.8;
    }

    .legal-body h2 {
      color: var(--off-white);
      font-size: 24px;
      font-weight: 800;
      margin: 48px 0 24px;
      letter-spacing: -0.02em;
    }

    /* Investment Section */
    .pricing-section {
      background: #0A0A0A;
      padding: clamp(100px, 15vw, 160px) 0;
      position: relative;
    }

    .pricing-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(24px, 5vw, 48px);
    }

    .pricing-section .section-header {
      text-align: left;
      margin-bottom: 80px;
    }

    .pricing-section .section-description {
      max-width: 700px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 60px;
    }

    .pricing-tier {
      background: #161616;
      padding: 40px 30px;
      border-left: 3px solid transparent;
      transition: border-color 0.3s ease, transform 0.3s ease;
      position: relative;
    }

    .pricing-tier:hover {
      border-left-color: #DC143C;
      transform: translateY(-5px);
    }

    .pricing-tier.tier-featured {
      border-left-color: #DC143C;
      background: linear-gradient(135deg, #161616 0%, #1a1a1a 100%);
    }

    .featured-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: #DC143C;
      color: #FAFAFA;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 6px 16px;
      border-radius: 4px;
    }

    .tier-header {
      margin-bottom: 30px;
    }

    .tier-name {
      font-size: 24px;
      font-weight: 800;
      color: #FAFAFA;
      margin-bottom: 8px;
    }

    .tier-tagline {
      font-size: 14px;
      color: #71717A;
      line-height: 1.5;
    }

    .tier-price {
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .price-label {
      display: block;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #71717A;
      margin-bottom: 8px;
    }

    .price-amount {
      font-size: 48px;
      font-weight: 900;
      color: #DC143C;
      line-height: 1;
    }

    .tier-features {
      list-style: none;
      margin-bottom: 30px;
      padding: 0;
    }

    .tier-features li {
      font-size: 14px;
      color: #FAFAFA;
      line-height: 2.2;
      padding-left: 20px;
      position: relative;
    }

    .tier-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #DC143C;
      font-weight: 700;
    }

    .tier-cta {
      display: block;
      width: 100%;
      padding: 14px 24px;
      background: transparent;
      border: 1px solid #FAFAFA;
      color: #FAFAFA;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .tier-cta:hover {
      background: #FAFAFA;
      color: #0A0A0A;
    }

    .tier-cta-primary {
      background: #DC143C;
      border-color: #DC143C;
    }

    .tier-cta-primary:hover {
      background: #FAFAFA;
      border-color: #FAFAFA;
      color: #0A0A0A;
    }

    .launch-offer {
      background: linear-gradient(90deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.05) 100%);
      border-top: 1px solid rgba(220, 20, 60, 0.2);
      border-bottom: 1px solid rgba(220, 20, 60, 0.2);
      padding: 60px 0;
      margin: 80px 0;
      position: relative;
    }

    .launch-offer-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    @media (max-width: 1024px) {
      .launch-offer-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
      }
    }

    .offer-icon {
      font-size: 32px;
      color: #DC143C;
      flex-shrink: 0;
    }

    .offer-title {
      font-size: 20px;
      font-weight: 800;
      color: #FAFAFA;
      margin-bottom: 8px;
    }

    .offer-description {
      font-size: 14px;
      color: #71717A;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .offer-cta {
      padding: 14px 32px;
      background: #DC143C;
      color: #FAFAFA;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.3s ease;
      border-radius: 6px;
    }

    .offer-cta:hover {
      background: #e8163f;
      transform: translateY(-2px);
    }

    .pricing-footer {
      display: none;
      text-align: center;
    }

    .inline-link {
      color: #DC143C;
      text-decoration: none;
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Client Scenarios */
    .scenarios-section {
      padding: clamp(100px, 15vw, 160px) clamp(18px, 8vw, 120px);
      background: #0A0A0A;
    }

    .scenarios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

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

    @media (max-width: 768px) {
      .scenarios-grid {
        grid-template-columns: 1fr;
      }
    }

    .scenario-card {
      background: #161616;
      padding: 40px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .scenario-card:hover {
      border-color: var(--crimson);
      transform: translateY(-5px);
    }

    .scenario-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--off-white);
      margin-bottom: 24px;
      line-height: 1.4;
    }

    .scenario-recommendation {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      color: var(--crimson);
      margin-bottom: 20px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .scenario-features {
      list-style: none;
      padding: 0;
    }

    .scenario-features li {
      font-size: 14px;
      color: var(--gray-500);
      margin-bottom: 12px;
      padding-left: 20px;
      position: relative;
    }

    .scenario-features li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--crimson);
    }

    /* Detailed Package Lists */
    .detailed-package-section {
      padding: 100px 8vw;
      background: #0D0D0D;
    }

    .package-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 80px;
    }

    .package-detail-card {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
    }

    @media (max-width: 1024px) {
      .package-detail-card {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .package-detail-header h3 {
      font-size: 32px;
      font-weight: 900;
      color: var(--off-white);
      margin-bottom: 6px;
      line-height: 1.1;
    }

    .package-detail-price {
      font-size: 24px;
      font-weight: 800;
      color: var(--crimson);
      margin-bottom: 16px;
    }

    .package-detail-groups {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .detail-group-title {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--off-white);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--crimson);
      display: inline-block;
    }

    .detail-list {
      list-style: none;
      padding: 0;
    }

    .detail-list li {
      font-size: 14px;
      color: var(--gray-500);
      margin-bottom: 12px;
      padding-left: 24px;
      position: relative;
      line-height: 1.6;
    }

    .detail-list li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--crimson);
    }

    .detail-list li strong {
      color: var(--gray-400);
    }

    /* Go to Top Button */
    .go-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: rgba(220, 20, 60, 0.2);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(220, 20, 60, 0.3);
      border-radius: 50%;
      color: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .go-to-top svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .go-to-top:hover {
      background: var(--crimson);
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .go-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* Announcement Banner */
    .announcement-banner {
      background: var(--crimson);
      color: var(--off-white);
      text-align: center;
      padding: 10px 24px;
      height: 40px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 3000;
      /* Higher to avoid stacking issues */
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .announcement-banner:hover {
      background: #c11235;
    }

    .banner-cta {
      background: rgba(255, 255, 255, 0.15);
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 11px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .announcement-banner:hover .banner-cta {
      background: var(--off-white);
      color: var(--crimson);
    }

    @media (max-width: 768px) {
      .announcement-banner {
        font-size: 11px;
        height: 36px;
        padding: 8px 16px;
      }
    }

    /* Founder Section */
    .founder-section {
      background: var(--nero);
    }

    .founder-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: center;
    }

    .founder-image-container {
      position: relative;
    }

    .founder-image {
      width: 100%;
      border-radius: 12px;
      filter: grayscale(1) contrast(1.1);
      transition: filter 0.5s ease;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    @media (max-width: 968px) {
      .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* Contact Process */
    .contact-process {
      margin-bottom: 40px;
      background: rgba(255, 255, 255, 0.02);
      padding: 32px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .process-steps-list {
      list-style: none;
      margin-top: 24px;
    }

    .process-step-item {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
      font-size: 14px;
      color: var(--gray-500);
    }

    /* Engagement Options Section */
    .engagement-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 60px;
    }

    @media(max-width: 900px) {
      .engagement-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .engagement-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 40px 32px;
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .engagement-card:hover {
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }

    .engagement-card.featured {
      background: linear-gradient(145deg, rgba(220, 20, 60, 0.08) 0%, rgba(10, 10, 10, 0.5) 100%);
      border-color: rgba(220, 20, 60, 0.3);
    }

    .engagement-card.featured:hover {
      border-color: var(--crimson);
    }

    .card-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-500);
      margin-bottom: 16px;
    }

    .engagement-card.featured .card-eyebrow {
      color: var(--crimson);
    }

    .card-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--off-white);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .card-desc {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.6;
      margin-bottom: 32px;
      flex-grow: 1;
    }

    .card-features {
      list-style: none;
      padding: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
    }

    .card-features li {
      font-size: 14px;
      color: var(--off-white);
      margin-bottom: 12px;
      padding-left: 24px;
      position: relative;
    }

    .card-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gray-500);
    }

    .engagement-card.featured .card-features li::before {
      background: var(--crimson);
    }