    /* ── RESET & BASE ─────────────────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      background: #FFFFFF;
      color: #111111;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

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

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

    ::selection {
      background: #EF9B0F;
      color: #0D0D0D;
    }

    /* ── SECTION HEADERS ─────────────────────────────────────────────────────── */
    .sec-header {
      margin-bottom: 40px;
    }

    .sec-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .sec-line {
      width: 40px;
      height: 2px;
      background: var(--orange);
    }

    .sec-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
    }

    .sec-title {
      font-family: var(--font-display);
      font-size: 72px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--ink);
    }

    .sec-title span {
      display: block;
      color: var(--muted);
      font-weight: 400;
      opacity: 0.4;
    }

    .sec-header--dark .sec-title {
      color: var(--white);
    }

    .sec-header--dark .sec-title span {
      color: rgba(255, 255, 255, 0.3);
    }

    .sec-header--dark .sec-eyebrow {
      color: var(--orange);
    }

    .sec-header--light .sec-eyebrow {
      color: var(--ink);
    }

    @media (max-width: 768px) {
      .sec-title {
        font-size: 44px;
      }

      .sec-header {
        margin-bottom: 48px;
      }
    }

    /* ── CSS VARIABLES ───────────────────────────────────────────────────────── */
    :root {
      --orange: #EF9B0F;
      --orange-dk: #D88B0B;
      --ink: #111111;
      --navy: #0F1623;
      --paper: #FFFFFF;
      --mid: #F9F9F9;
      --border: #E6E6E6;
      --muted: #666666;
      --white: #FFFFFF;
      --lime: #EF9B0F;
      --lime-hover: #EF9B0F;
      --font-display: 'Outfit', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

    /* ── PREMIUM ACTION BUTTON ────────────────────────────────────────────────── */
    .btn-premium {
      cursor: pointer;
      font-family: var(--font-body);
      font-weight: 700;
      transition: all 0.2s;
      padding: 8px 16px 8px 24px;
      border-radius: 100px;
      background: #ef9b0f;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      color: #000000;
      text-decoration: none;
      line-height: 1;
    }

    .btn-premium:hover {
      background: var(--lime-hover);
      transform: translateY(-2px);
      color: #ffffff;
    }

    .btn-premium>svg {
      width: 34px;
      height: 34px;
      margin-left: 10px;
      transition: transform 0.3s ease-in-out;
    }

    .btn-premium:hover svg {
      transform: translateX(3px);
    }

    .btn-premium:active {
      transform: scale(0.95);
    }

    /* ── CUSTOM CURSOR ───────────────────────────────────────────────────────── */
    .cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease, width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
      mix-blend-mode: difference;
    }

    .cursor-ring {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(245, 166, 35, 0.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: left 0.12s ease, top 0.12s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
    }

    body:has(a:hover) .cursor,
    body:has(button:hover) .cursor {
      width: 18px;
      height: 18px;
    }

    body:has(a:hover) .cursor-ring,
    body:has(button:hover) .cursor-ring {
      width: 54px;
      height: 54px;
      border-color: var(--orange);
    }

    /* ── GRAIN OVERLAY ───────────────────────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
      opacity: 0.4;
    }

    /* ── BASE CONTAINERS ─────────────────────────────────────────────────────── */
    .y-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 48px;
      width: 100%;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    .reveal-delay-5 {
      transition-delay: 0.5s;
    }

    /* ── NAVIGATION (Yarsy Style) ─────────────────────────────────────────────── */
    .y-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 32px 48px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      background: rgba(255, 255, 255, 0.03);
      /* Default glass tint */
      backdrop-filter: blur(12px);
      /* Default glass blur */
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .y-nav.scrolled {
      padding: 16px 48px;
      background: rgba(255, 255, 255, 0.92);
      /* More opaque on scroll */
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    }

    .nav-logo img {
      height: auto;
      width: auto;
      display: block;
    }

    .y-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
      justify-self: center;
    }

    .y-links li a {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: rgba(17, 17, 17, 0.6);
      /* Better contrast than #666 */
      transition: all 0.3s ease;
      text-transform: none;
      letter-spacing: 0;
    }

    .y-links li a:hover {
      color: var(--ink);
    }

    .y-links li a.active {
      color: var(--ink);
      font-weight: 600;
    }

    .nav-right {
      justify-self: end;
    }

    /* Pill Button Style */
    .y-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 10px 10px 28px;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      background: transparent;
    }

    .y-btn-outline:hover {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
      transform: translateY(-2px);
    }

    .y-circle-arrow {
      width: 38px;
      height: 38px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      color: var(--orange);
      /* Standardizing on Orange Arrow as per user request */
    }

    .y-btn-outline:hover .y-circle-arrow {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      color: var(--orange);
      transform: rotate(0deg);
      /* Keeping it clean */
    }

    @media (max-width: 991px) {
      .y-nav {
        padding: 20px 24px;
        grid-template-columns: 1fr auto;
      }

      .y-links {
        display: none;
      }

      /* Hide links on mobile for now, as per standard hamburger pattern */
      .y-nav.scrolled {
        padding: 12px 24px;
      }
    }


    /* ── HERO ────────────────────────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 48px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: var(--border);
      opacity: 0.6;
    }

    .hero-grid-line:nth-child(1) {
      left: 25%;
    }

    .hero-grid-line:nth-child(2) {
      left: 50%;
    }

    .hero-grid-line:nth-child(3) {
      left: 75%;
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--orange);
    }

    .hero-headline {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(48px, 7vw, 96px);
      line-height: 1.0;
      letter-spacing: -0.03em;
      max-width: 900px;
      margin-bottom: 36px;
    }

    .hero-headline .accent {
      color: var(--orange);
    }

    .hero-headline .line-2 {
      display: block;
      color: var(--muted);
      font-weight: 400;
      font-style: italic;
    }

    .hero-sub {
      font-size: 18px;
      color: #888;
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 52px;
      font-weight: 300;
    }

    .hero-sub strong {
      color: var(--paper);
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-primary {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: var(--orange);
      color: var(--ink);
      padding: 16px 32px;
      font-weight: 500;
      transition: background 0.2s, transform 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary:hover {
      background: var(--orange-dk);
      transform: translateY(-1px);
    }

    .btn-ghost {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 16px 32px;
      border: 1px solid var(--border);
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover {
      border-color: var(--paper);
      color: var(--paper);
    }

    .hero-stats {
      display: flex;
      justify-content: space-around;
      gap: 60px;
      margin-top: 80px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }

    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 800;
      color: var(--orange);
      letter-spacing: -1px;
      line-height: 1;
    }

    .hero-stat-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 6px;
    }

    /* Hero orange glow */
    #hero::after {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ── MARQUEE ─────────────────────────────────────────────────────────────── */
    .marquee-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      overflow: hidden;
      background: var(--mid);
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 28s linear infinite;
      width: max-content;
    }

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

    .marquee-item {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 0 40px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .marquee-item .dot {
      color: var(--orange);
      font-size: 16px;
    }

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

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

    /* ── SECTION BASE ────────────────────────────────────────────────────────── */
    section {
      position: relative;
      z-index: 2;
    }

    .y-section {
      padding: 80px 0;
    }

    .sec-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .sec-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .sec-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--orange);
    }

    .sec-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(32px, 4vw, 52px);
      letter-spacing: -0.02em;
      line-height: 1.1;
      /* margin-bottom: 20px; */
    }

    .sec-sub {
      font-size: 17px;
      color: #666;
      max-width: 540px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* ── SERVICES ────────────────────────────────────────────────────────────── */
    #services {
      padding: 60px 0;
      border-bottom: 1px solid var(--border);
    }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 80px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .service-card {
      background: var(--ink);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease;
      cursor: none;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-card:hover {
      background: #111;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-num {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      color: var(--orange);
      margin-bottom: 24px;
      display: block;
    }

    .service-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .service-tagline {
      font-size: 16px;
      color: #555;
      font-style: italic;
      margin-bottom: 20px;
      font-weight: 300;
    }

    .service-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.7;
      font-weight: 300;
    }

    .service-price {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 14px;
      letter-spacing: 0.1em;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .service-price strong {
      color: var(--orange);
      font-size: 14px;
      font-weight: 500;
    }

    .service-arrow {
      font-size: 18px;
      color: var(--border);
      transition: color 0.3s, transform 0.3s;
    }

    .service-card:hover .service-arrow {
      color: var(--orange);
      transform: translate(3px, -3px);
    }

    /* Wide card spans 2 */
    .service-card.wide {
      grid-column: span 2;
    }

    /* ── WHY S19 ─────────────────────────────────────────────────────────────── */
    #why {
      padding: 120px 0;
      border-bottom: 1px solid var(--border);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 64px;
    }



    .why-statement {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 700;
      line-height: 1.4;
      letter-spacing: -0.02em;
      color: var(--paper);
      margin-bottom: 28px;
    }

    .why-statement .accent {
      color: var(--orange);
    }

    .why-body {
      font-size: 16px;
      color: #555;
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .why-right {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
    }

    .why-item {
      padding: 28px 32px;
      border-bottom: 1px solid var(--border);
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: background 0.2s;
    }

    .why-item:last-child {
      border-bottom: none;
    }

    .why-item:hover {
      background: #111;
    }

    .why-icon {
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .why-item-title {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 5px;
      letter-spacing: -0.01em;
    }

    .why-item-desc {
      font-size: 13px;
      color: #555;
      line-height: 1.6;
      font-weight: 300;
    }

    /* ── PROCESS ─────────────────────────────────────────────────────────────── */
    #process {
      padding: 60px 0;
      border-bottom: 1px solid var(--border);
      background: #0A0A0A;
    }

    .process-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 80px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .process-step {
      background: #0A0A0A;
      padding: 36px 28px;
      position: relative;
      transition: background 0.3s;
    }

    .process-step:hover {
      background: #111;
    }

    .step-num {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      color: var(--border);
      line-height: 1;
      margin-bottom: 20px;
      letter-spacing: -2px;
      transition: color 0.3s;
    }

    .process-step:hover .step-num {
      color: var(--orange);
    }

    .step-title {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .step-desc {
      font-size: 13px;
      color: #444;
      line-height: 1.6;
      font-weight: 300;
    }

    .step-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
      display: block;
    }

    /* ── CREDIBILITY ─────────────────────────────────────────────────────────── */
    #credibility {
      padding: 60px 0;
      border-bottom: 1px solid var(--border);
    }

    .cred-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .cred-item {
      background: var(--ink);
      padding: 40px 32px;
      text-align: center;
    }

    .cred-num {
      font-family: var(--font-display);
      font-size: 42px;
      font-weight: 800;
      color: var(--orange);
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .cred-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ── TESTIMONIAL ─────────────────────────────────────────────────────────── */
    #testimonial {
      padding: 120px 0;
      border-bottom: 1px solid var(--border);
    }

    .testimonial-inner {
      max-width: 800px;
    }

    .quote-mark {
      font-family: var(--font-display);
      font-size: 120px;
      line-height: 0.6;
      color: var(--orange);
      opacity: 0.3;
      font-weight: 800;
      margin-bottom: 20px;
      display: block;
    }

    .quote-text {
      font-family: var(--font-display);
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 600;
      line-height: 1.5;
      letter-spacing: -0.02em;
      color: var(--paper);
      margin-bottom: 36px;
    }

    .quote-attr {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .quote-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 18px;
      color: var(--orange);
      flex-shrink: 0;
    }

    .quote-name {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .quote-role {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .testimonial-placeholder {
      border: 1px solid var(--border);
      padding: 48px;
      text-align: center;
    }

    .tph-text {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .tph-sub {
      font-size: 14px;
      color: #333;
    }


    /* ── CTA ─────────────────────────────────────────────────────────────────── */
    #cta {
      padding: 120px 0;
    }

    .cta-inner {
      border: 1px solid var(--border);
      padding: 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 100%, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-inner::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

    .cta-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .cta-eyebrow::before,
    .cta-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--orange);
      opacity: 0.5;
    }

    .cta-headline {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .cta-headline .accent {
      color: var(--orange);
    }

    .cta-sub {
      font-size: 17px;
      color: #555;
      max-width: 480px;
      margin: 0 auto 48px;
      line-height: 1.7;
      font-weight: 300;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .cta-note {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* ── CONTACT FORM ───────────────────────────────────────────────────────── */
    .c-wrap {
      position: relative;
      border-radius: 40px;
      overflow: hidden;
      min-height: 700px;
      padding: 50px;
      display: flex;
      align-items: center;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    }

    .c-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .c-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(20, 10, 40, 0.4), rgba(40, 20, 80, 0.6));
      z-index: 1;
    }

    .c-card {
      position: relative;
      z-index: 2;
      background: var(--white);
      border-radius: 32px;
      padding: 56px 48px;
      width: 100%;
      max-width: 540px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
      text-align: left;
    }

    .c-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--ink);
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .c-title {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: -2px;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .c-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .c-form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .c-row {
      display: flex;
      gap: 20px;
    }

    .c-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
      text-align: left;
    }

    .c-group label {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      color: var(--ink);
    }

    .c-group input,
    .c-group textarea {
      width: 100%;
      background: #F9F9F9;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      font-size: 14px;
      font-family: var(--font-body);
      color: var(--ink);
      transition: all 0.3s;
    }

    .c-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .c-group input:focus,
    .c-group textarea:focus {
      outline: none;
      border-color: var(--orange);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(239, 155, 15, 0.1);
    }

    .c-submit {
      background: var(--orange);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      border: none;
      border-radius: 40px;
      padding: 18px 32px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      margin-top: 16px;
      width: 100%;
    }

    .c-submit:hover {
      transform: translateY(-4px);
      background: var(--ink);
      color: var(--white);
      box-shadow: 0 16px 32px rgba(17, 17, 17, 0.2);
      letter-spacing: 0.5px;
    }

    /* ── FOOTER ──────────────────────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 48px 32px;
      background: #0A0A0A;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 28px;
      letter-spacing: -0.5px;
      color: var(--orange);
      margin-bottom: 16px;
    }

    .footer-desc {
      font-size: 13px;
      color: #444;
      line-height: 1.7;
      font-weight: 300;
      max-width: 280px;
      margin-bottom: 24px;
    }

    .footer-contact a {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--orange);
      display: block;
      margin-bottom: 8px;
      transition: color 0.2s;
    }

    .footer-contact a:hover {
      color: var(--paper);
    }

    .footer-col-title {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      font-size: 13px;
      color: #444;
      transition: color 0.2s;
      font-weight: 300;
    }

    .footer-links a:hover {
      color: var(--paper);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-copy {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      color: #333;
    }

    .footer-copy span {
      color: var(--orange);
    }

    .footer-location {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-location::before {
      content: '📍';
      font-size: 12px;
    }

    /* ── MOBILE NAV ──────────────────────────────────────────────────────────── */
    .nav-mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: none;
      padding: 4px;
    }

    .nav-mobile-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--paper);
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .service-card.wide {
        grid-column: span 1;
      }

      .process-steps {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 18px 24px;
      }

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

      .nav-links {
        display: none;
      }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(13, 13, 13, 0.98);
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 99;
      }

      .nav-links.open a {
        font-size: 18px;
        letter-spacing: 0.1em;
      }

      .nav-mobile-toggle {
        display: flex;
      }

      #hero {
        padding: 60px 24px 60px;
      }

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

      .sec-wrap {
        padding: 0 24px;
      }

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

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

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

      .process-header {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
      }

      .cred-grid {
        grid-template-columns: 1fr 1fr;
      }


      .cta-inner {
        padding: 48px 28px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .cursor,
      .cursor-ring {
        display: none;
      }

      body {
        cursor: default;
      }
    }

    /* ── AUDIT CTA STRIP ─────────────────────────────────────────────────────── */
    .audit-strip {
      background: var(--orange);
      flex-direction: column;
      padding: 20px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .audit-strip-text {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .audit-strip-sub {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      color: rgba(13, 13, 13, 0.6);
      margin-top: 3px;
    }

    .audit-strip-btn {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: var(--ink);
      color: var(--orange);
      padding: 12px 24px;
      white-space: nowrap;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      flex-shrink: 0;
      border: 1px solid transparent;
    }

    .audit-strip-btn:hover {
      background: #1A1A1A;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
      border-color: var(--orange);
      letter-spacing: 0.2em;
    }

    /* ── FOCUS VISIBLE ───────────────────────────────────────────────────────── */
    :focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 2px;
    }

    /* ── YARSY PERFECT MATCH HEADER ─────────────────────────────────────────────── */
    .y-nav {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 24px 48px;
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      background: transparent;
      flex-wrap: wrap;
      align-content: center
    }

    .y-nav.scrolled {
      position: fixed;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .y-links {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .y-links a {
      color: #666;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      transition: color 0.2s;
      text-decoration: none;
    }

    .y-links a:hover {
      color: #111;
    }

    .y-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      border: 1px solid var(--border);
      border-radius: 40px;
      padding: 6px 6px 6px 20px;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      background: transparent;
    }

    .y-circle-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border: 1px solid var(--border);
      border-radius: 50%;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      color: var(--ink);
    }

    .y-circle-arrow svg {
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .y-btn-outline:hover {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .y-btn-outline:hover .y-circle-arrow {
      border-color: var(--white);
      color: var(--ink);
      background: var(--white);
    }

    .y-btn-outline:hover .y-circle-arrow svg {
      transform: translate(2px, -2px) scale(1.1);
    }

    .y-hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #FFF;
      overflow: hidden;
    }

    .y-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .y-bg-svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .y-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      margin-top: -50px;
    }

    .y-headline {
      font-family: 'Inter', var(--font-body);
      font-size: clamp(48px, 6.5vw, 84px);
      font-weight: 400;
      color: #111;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 32px;
    }

    .y-hero-sub {
      font-family: var(--font-body);
      font-size: 20px;
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto 52px;
      line-height: 1.6;
    }

    .y-hl {
      color: #EF9B0F;
      position: relative;
      display: inline-block;
      white-space: nowrap;
    }

    .y-uline {
      position: absolute;
      left: 0;
      bottom: -12px;
      width: 100%;
      height: 12px;
      overflow: visible;
    }

    .y-squi {
      position: absolute;
      left: 0;
      bottom: -16px;
      width: 100%;
      height: 16px;
      overflow: visible;
    }

    .y-hero-action {
      display: flex;
      justify-content: center;
      gap: 20px;
      align-items: center;
    }

    .y-btn-solid {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--ink);
      color: var(--white);
      border-radius: 100px;
      padding: 10px 10px 10px 28px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .y-btn-solid .y-circle-arrow {
      border: 1px solid rgba(255, 255, 255, 0.2);
      width: 38px;
      height: 38px;
      background: transparent;
      color: var(--orange);
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .y-btn-solid .y-circle-arrow svg {
      transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .y-btn-solid:hover {
      transform: translateY(-4px);
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 16px 32px rgba(17, 17, 17, 0.1);
    }

    .y-btn-solid:hover .y-circle-arrow {
      background: var(--ink);
      color: var(--orange);
      border-color: var(--ink);
    }

    .y-btn-solid:hover .y-circle-arrow svg {
      transform: translate(2px, -2px) scale(1.1);
    }

    @media (max-width: 900px) {

      .y-links:not(.open),
      .nav-right {
        display: none;
      }

      .nav-mobile-toggle {
        display: flex;
        z-index: 101;
      }

      .y-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 100;
        margin: 0;
        padding: 0;
        transform: none;
        left: 0;
      }

      .y-links.open a {
        font-size: 24px;
        color: #111;
      }
    }

    /* ── YARSY DESIGN SYSTEM GLOBAL CLASSES ──────────────────────────────────── */
    .y-section {
      padding: 60px 48px 40px;
      position: relative;
    }

    .y-bg-light {
      background: #FDFCF8;
    }

    .y-container {
      max-width: 1320px;
      margin: 0 auto;
      width: 100%;
      padding: 0 48px;
    }

    .y-section-header {
      margin-bottom: 80px;
      max-width: 800px;
    }

    .y-huge-title {
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--ink);
      margin-bottom: 24px;
    }

    .y-huge-sub {
      font-family: var(--font-body);
      font-size: 24px;
      color: var(--muted);
      line-height: 1.4;
      font-weight: 400;
    }

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

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

    .y-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px;
      transition: transform 0.3s ease, border-color 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      height: 100%;
    }

    .y-card:hover {
      transform: translateY(-4px);
      border-color: #D1D1D1;
    }

    .y-card.wide {
      grid-column: span 2;
    }

    /* ── WHY S19 GRID ──────────────────────────────────────────────────────── */
    .y-why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 40px;
      width: 100%;
    }

    .y-why-card {
      background: #111111;
      border: 1px solid rgb(255 255 255 / 15%);
      border-radius: 32px;
      padding: 48px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      min-height: 420px;
      transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .y-why-card:hover {
      background: #171717;
      border-color: var(--orange);
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    }

    .y-why-icon-box {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
      transition: all 0.4s ease;
      color: var(--white);
    }

    .y-why-card:hover .y-why-icon-box {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--ink);
      transform: scale(1.1) rotate(5deg);
    }

    .y-why-num {
      position: absolute;
      top: 48px;
      right: 48px;
      font-family: var(--font-mono);
      font-size: 14px;
      color: var(--orange);
      font-weight: 700;
      letter-spacing: 0.1em;
      opacity: 0.7;
      transition: opacity 0.4s;
    }

    .y-why-card:hover .y-why-num {
      opacity: 1;
    }

    .y-why-title {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 24px;
    }

    .y-why-desc {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.5);
      margin-top: auto;
    }


    @media (max-width: 1200px) {
      .y-why-grid {
        gap: 24px;
      }

      .y-why-card {
        padding: 48px 32px;
        min-height: 400px;
      }
    }

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

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

      .y-why-card {
        min-height: auto;
        padding: 40px;
      }

      .y-why-icon-box {
        margin: 32px auto;
      }
    }

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

    .proc-slider-viewport {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding-top: 15px;
      margin-top: -40px;
    }

    .proc-card {
      flex: 0 0 500px;
      height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 56px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 40px;
      position: relative;
      overflow: hidden;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 1;
      background: #111827;
      /* Default Single Color (Deep Navy) */
    }

    /* Individual 2-Color Hover Gradients */
    /* .p-card-1:hover {
      background-color: #ECEAE7;
      background-image: radial-gradient(at 0% 0%, #B9D0F3 0px, transparent 50%), radial-gradient(at 100% 0%, #CFDAEB 0px, transparent 50%);
    }

    .p-card-2:hover {
      background-color: #F7EAE8;
      background-image: radial-gradient(at 0% 0%, #F4F3F2 0px, transparent 50%), radial-gradient(at 100% 0%, #F4C8A7 0px, transparent 50%);
    }

    .p-card-3:hover {
      background-color: #EAD5EF;
      background-image: radial-gradient(at 0% 0%, #CE9FF7 0px, transparent 50%), radial-gradient(at 100% 0%, #F4F2F2 0px, transparent 50%);
    }

    .p-card-4:hover {
      background-color: #E0ECDD;
      background-image: radial-gradient(at 0% 0%, #EFF8F7 0px, transparent 50%), radial-gradient(at 100% 0%, #C3D8B8 0px, transparent 50%);
    }

    .p-card-5:hover {
      background-color: #CCC4F2;
      background-image: radial-gradient(at 0% 0%, #F4F3F2 0px, transparent 50%), radial-gradient(at 100% 0%, #BEC3FC 0px, transparent 50%);
    }

    .p-card-6:hover {
      background-color: #E4EFF9;
      background-image: radial-gradient(at 0% 0%, #EBE9E7 0px, transparent 50%), radial-gradient(at 100% 0%, #C6D7E5 0px, transparent 50%);
    } */

    .proc-card:hover {
      transform: translateY(-12px);
      border-color: var(--orange);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
      z-index: 2;
    }

    /* Hover State Contrast: Text Flips to Dark */
    /* .proc-card:hover .proc-card-num,
    .proc-card:hover .proc-card-title,
    .proc-card:hover .proc-card-desc {
      color: #111827;
      opacity: 1;
    } */

    .proc-card-num {
      align-self: flex-end;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      transition: color 0.4s;
    }

    .proc-card-title {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
      transition: color 0.4s;
    }

    .proc-card-desc {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.6);
      max-width: 90%;
      transition: color 0.4s;
    }






    .y-pill {
      font-family: var(--font-mono);
      font-size: 13px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 40px;
      border: 1px solid var(--border);
      color: var(--ink);
      font-weight: 500;
      background: var(--white);
    }

    .y-price {
      font-family: var(--font-mono);
      font-size: 13px;
      padding: 6px 16px;
      background: var(--mid);
      border-radius: 40px;
      color: var(--muted);
    }

    .y-card-title {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      color: var(--ink);
    }

    .y-card-desc {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.6;
    }

    .y-step-num {
      font-family: var(--font-display);
      font-size: 120px;
      font-weight: 500;
      color: var(--mid);
      line-height: 1;
      margin-bottom: 40px;
      transition: color 0.4s ease;
      letter-spacing: -0.04em;
    }

    .y-card:hover .y-step-num {
      color: var(--orange);
    }

    .y-audit-strip {
      background: var(--ink);
      color: var(--white);
      border-radius: 32px;
      padding: 64px 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 80px 0;
    }

    .y-audit-title {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .y-audit-sub {
      font-size: 20px;
      color: #999;
    }

    .y-cred-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .y-cred-card {
      background: var(--mid);
      border-radius: 24px;
      padding: 48px 32px;
      text-align: center;
    }

    .y-cred-num {
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 500;
      letter-spacing: -0.04em;
      color: var(--orange);
      margin-bottom: 8px;
      line-height: 1;
    }

    .y-cred-label {
      font-size: 15px;
      color: var(--ink);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .y-testi-box {
      background: linear-gradient(135deg, #FDFCF8 0%, #FFF5E6 100%);
      border: 1px solid var(--orange);
      border-radius: 32px;
      padding: 80px;
      text-align: left;
    }

    .y-quote {
      font-family: var(--font-display);
      font-size: 44px;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: 40px;
    }

    .y-quote-author {
      font-size: 18px;
      font-weight: 600;
      color: var(--ink);
    }

    .y-quote-role {
      font-size: 16px;
      color: var(--muted);
    }


    /* ── SERVICES (3×2 GRID) ─────────────────────────────────────────────────── */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-height: 480px;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .svc-card:hover {
      border-color: var(--orange);
      transform: translateY(-8px);
      box-shadow: 0 32px 64px rgba(0, 0, 0, 0.06);
    }

    .svc-num {
      font-family: var(--font-display);
      font-size: 80px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 32px;
      letter-spacing: -0.04em;
      opacity: 0.1;
      transition: opacity 0.4s ease;
    }

    .svc-card:hover .svc-num {
      opacity: 1;
      color: var(--orange);
    }

    .svc-tags {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .svc-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 40px;
      background: var(--mid);
      color: var(--muted);
      font-weight: 500;
      border: 1px solid var(--border);
    }

    .svc-title {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .svc-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 320px;
    }


    /* ── TRUSTED BY ────────────────────────────────────────────────────────── */
    .trust-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 64px;
      margin-bottom: 72px;
    }

    .trust-left {
      flex: 1.2;
    }

    .trust-right {
      flex: 0.8;
    }

    .trust-headline {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--ink);
    }

    .trust-desc {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
    }

    .trust-logos {
      overflow: hidden;
      width: 100%;
      padding: 40px 0 0;
      border-top: 1px solid var(--border);
    }

    .trust-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: trustScroll 25s linear infinite;
    }

    .trust-logo {
      height: 100px;
      /* Increased size */
      width: auto;
      margin-right: 80px;
      /* Better spacing for seamless loop */
      opacity: 0.4;
      filter: grayscale(1);
      transition: all 0.4s ease;
      flex-shrink: 0;
    }

    .trust-logo:hover {
      opacity: 0.9;
      filter: grayscale(0);
    }

    @keyframes trustScroll {
      0% {
        transform: translateX(0);
      }

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

    /* ── PROCESS SECTION (Sticky Scroll Slider) ─────────────────────────────── */
    .y-process-sticky {
      position: relative;
      height: 450vh;
      /* Control overall scroll length here */
      background: var(--ink);
      padding: 120px 0;
      /* Match standard section padding */
      border-bottom: 1px solid var(--border);
    }

    .proc-sticky-container {
      position: sticky;
      top: 0;
      /* height: 100vh; */
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .proc-content-wrap {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 64px;
    }

    .proc-slider-viewport {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .proc-track {
      display: flex;
      gap: 32px;
      /* Align first card with the title in y-container */
      padding-left: max(48px, calc((100% - 1320px) / 2 + 48px));
      padding-right: 48px;
      will-change: transform;
      /* No transition - we want it tethered to scroll */
    }

    .proc-card {
      flex: 0 0 500px;
      height: 380px;
      border-radius: 32px;
      padding: 56px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .proc-card:hover {
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* Card Backgrounds - Elegant Studio Hues */
    .p-card-1 {
      background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    }

    .p-card-2 {
      background: linear-gradient(135deg, #1E1E26 0%, #2A2A35 100%);
    }

    .p-card-3 {
      background: linear-gradient(135deg, #151921 0%, #212833 100%);
    }

    .p-card-4 {
      background: linear-gradient(135deg, #1C1C1C 0%, #2D2D2D 100%);
    }

    .p-card-5 {
      background: linear-gradient(135deg, #13141F 0%, #1D1F2B 100%);
    }

    .proc-card-num {
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.2em;
      color: var(--orange);
      font-weight: 500;
      text-transform: uppercase;
    }

    .proc-card-title {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 500;
      color: var(--white);
      margin: 24px 0 16px;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .proc-card-desc {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.4);
      max-width: 320px;
    }

    /* Abstract decorative element for cards */
    .proc-card::after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 140px;
      height: 140px;
      background: rgba(255, 255, 255, 0.03);
      filter: blur(40px);
      border-radius: 50%;
    }

    @media (max-width: 991px) {
      .y-process-sticky {
        height: auto;
      }

      .proc-sticky-container {
        position: relative;
        height: auto;
        padding: 60px 0;
      }

      .proc-track {
        flex-direction: column;
        /* padding: 0 24px; */
        transform: none !important;
        gap: 24px;
        padding: 0 10px;
      }

      .proc-card {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        min-height: 320px;
        padding: 40px;
      }

      /* .proc-top-text {
        padding: 0 24px;
        margin-bottom: 48px;
      } */
    }

    /* ── CONTACT FORM REDESIGN (Fluent UI) ───────────────────────────────────────── */
    /* ── CONTACT FORM REDESIGN (Fluent UI) ───────────────────────────────────────── */
    .c-wrap {
      background: #FDFCF8;
      border-radius: 48px;
      position: relative;
      /* overflow: hidden; */
      /* Removing to allow dropdown visibility */
      border: 1px solid rgba(0, 0, 0, 0.04);


      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      /* gap: 20px; */
      align-items: start;
    }

    /* Mobile handling for the side-by-side layout */
    @media (max-width: 1024px) {
      .c-wrap {
        grid-template-columns: 1fr;
        /* gap: 80px; */
        padding: 80px 40px;
      }
    }

    .c-header {
      position: sticky;
      /* top: 140px; */
    }

    .c-eyebrow {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--orange);
      margin-bottom: 28px;
    }

    .c-title {
      font-family: var(--font-display);
      font-size: 46px;
      line-height: 1.05;
      color: var(--ink);
      letter-spacing: -0.04em;
      margin-bottom: 32px;
      text-transform: uppercase;
    }

    .c-desc {
      font-size: 18px;
      line-height: 1.6;
      color: var(--muted);
      max-width: 600px;
    }

    /* The White Form Card */
    .f-card {
      background: #FFFFFF;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 32px;
      padding: 50px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    }

    @media (max-width: 768px) {
      .f-card {
        padding: 48px 24px;
      }
    }

    .f-form {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }

    .f-group {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
    }

    .f-label {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink);
    }

    .f-label span {
      color: #FF1A1A;
      /* Crisp red asterisks */
      margin-left: 2px;
    }

    /* Budget Chips */
    .f-chips-wrap {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .f-chip {
      padding: 12px 28px;
      border-radius: 40px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      background: #FFFFFF;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      user-select: none;
    }

    .f-chip-free {
      border-style: dashed;
      position: relative;
      transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .f-chip:hover {
      border-color: var(--orange);
    }

    .f-chip.active {
      background: var(--orange);
      border-color: #000;
      color: #000;
      font-weight: 600;
    }

    .f-input,
    .f-select,
    .f-textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding: 12px 0 16px;
      font-size: 18px;
      color: var(--ink);
      font-family: inherit;
      transition: all 0.4s;
      width: 100%;
      border-radius: 0;
    }

    .f-input:focus,
    .f-select:focus,
    .f-textarea:focus {
      outline: none;
      border-bottom-color: var(--orange);
    }

    .f-input::placeholder,
    .f-textarea::placeholder {
      color: rgba(0, 0, 0, 0.3);
    }

    .f-textarea {
      resize: none;
      min-height: 50px;
    }

    .f-select-wrap {
      cursor: pointer;
    }

    .f-select-trigger {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding: 12px 0 16px;
      font-size: 18px;
      color: rgba(0, 0, 0, 0.4);
      transition: all 0.3s;
    }

    .f-select-wrap.selected .f-select-trigger {
      color: var(--ink);
    }

    .f-select-trigger svg {
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      opacity: 0.5;
    }

    .f-select-wrap.open .f-select-trigger svg {
      transform: rotate(180deg);
    }

    .f-select-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      right: 0;
      background: #FFFFFF;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
      z-index: 100;
      padding: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px) scale(0.98);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .f-select-wrap.open .f-select-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .f-select-option {
      padding: 16px 24px;
      border-radius: 16px;
      font-size: 17px;
      color: var(--ink);
      font-weight: 500;
      transition: all 0.2s;
    }

    .f-select-option:hover {
      background: #FDFCF8;
      color: var(--orange);
    }

    .f-select-option.selected {
      background: rgba(239, 155, 15, 0.05);
      color: var(--orange);
    }

    .f-attachment {
      display: flex;
      align-items: center;
      gap: 12px;
      background: none;
      border: none;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink);
      cursor: pointer;
      margin: 20px auto 20px;
      transition: color 0.3s;
      width: fit-content;
    }


    .f-attachment:hover {
      color: var(--orange);
    }

    .f-submit-stack {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

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

    .f-terms {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      color: var(--muted);
    }


    .f-terms input {
      width: 16px;
      height: 16px;
      cursor: pointer;
      accent-color: var(--orange);
    }

    .f-terms a {
      color: var(--ink);
      text-decoration: underline;
      font-weight: 600;
    }

    .f-submit {
      background: var(--orange);
      border: 1.5px solid #000;
      color: #000;
      padding: 18px 48px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 4px 12px rgba(239, 155, 15, 0.2);
    }

    .f-submit:hover {
      background: #000;
      color: #FFFFFF;
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }


    .f-submit svg {
      transition: transform 0.4s;
    }

    .f-submit:hover svg {
      transform: translate(2px, -2px);
    }


    /* ── WHY BENTO GRID ────────────────────────────────────────────────────── */
    .why-bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .why-b-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 40px;
      position: relative;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .why-b-card:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(239, 155, 15, 0.3);
      transform: translateY(-4px);
    }

    .why-b-hero {
      grid-column: span 2;
      padding: 56px;
      background: linear-gradient(135deg, rgba(239, 155, 15, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
      border-color: rgba(239, 155, 15, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .why-b-hero-text {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 500;
      line-height: 1.4;
      color: var(--white);
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .why-b-hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.7;
      max-width: 560px;
    }

    .why-b-num {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 600;
      color: rgba(239, 155, 15, 0.2);
      line-height: 1;
      margin-bottom: 24px;
      transition: color 0.4s ease;
    }

    .why-b-card:hover .why-b-num {
      color: rgba(239, 155, 15, 0.5);
    }

    .why-b-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }

    .why-b-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.6;
    }

    /* ── CTA BLOCK ──────────────────────────────────────────────────────────── */
    .cta-block {
      background: var(--ink);
      border-radius: 32px;
      padding: 100px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-block::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(239, 155, 15, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-block-eyebrow {
      font-family: var(--font-mono);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 24px;
      font-weight: 500;
    }

    .cta-block-headline {
      font-family: var(--font-display);
      font-size: 56px;
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
    }

    .cta-block-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto 48px;
    }

    .cta-block-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    /* ── CTA & FOOTER REDESIGN ─────────────────────────────────────────────────── */
    .y-footer-card {
      background: #FDFCF8;
      width: 100%;
      border-top: 1px solid var(--border);
      padding: 60px 48px 48px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
    }

    .y-fc-top {
      display: grid;
      grid-template-columns: 1.6fr 1.2fr 1.2fr;
      gap: 80px;
      max-width: 1320px;
      margin: 0 auto;
      width: 100%;
    }

    .y-fc-brand {
      max-width: 440px;
    }

    .y-fc-logo {
      height: 36px;
      width: auto;
      margin-bottom: 32px;
    }

    .y-fc-title {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--ink);
      letter-spacing: -0.03em;
    }

    .y-fc-desc {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 48px;
      line-height: 1.6;
      max-width: 380px;
    }

    .y-fc-social-group p {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .y-fc-socials {
      display: flex;
      gap: 16px;
    }

    .y-fc-socials a {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .social-icon {
      width: 46px;
      height: 46px;
      object-fit: contain;
      filter: invert(1);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .y-fc-socials a:hover {
      background: var(--ink);
      color: #FFF;
      border-color: var(--ink);
      transform: translateY(-5px);
    }

    .y-fc-socials a:hover .social-icon {
      filter: invert(0);
    }

    .y-fc-sub {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 40px;
    }

    .y-fc-links-grid {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .y-fc-links-grid a {
      font-size: 18px;
      font-weight: 500;
      color: var(--ink);
      text-decoration: none;
      transition: color 0.3s;
    }

    .y-fc-links-grid a:hover {
      color: var(--orange);
    }

    .y-fc-contact-main {
      display: flex;
      flex-direction: column;
    }

    .y-fc-details-stack {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    .y-fc-item span {
      display: block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .y-fc-item a {
      font-size: 24px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      transition: color 0.3s;
    }

    .y-fc-item a:hover {
      color: var(--orange);
    }

    .y-fc-bottom {
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1320px;
      margin: 0 auto;
      width: 100%;
      font-size: 14px;
      color: var(--muted);
    }

    .y-fc-bottom a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .y-fc-bottom a:hover {
      color: var(--ink);
    }


    .y-fc-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border);
      padding-top: 32px;
      font-size: 14px;
      color: var(--muted);
    }

    .y-fc-bottom a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .y-fc-bottom a:hover {
      color: var(--ink);
    }

    /* ── PORTFOLIO ───────────────────────────────────────────────────────────── */
    #portfolio {
      background: var(--white);
      padding: 60px 0;
    }

    .port-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 64px;
      gap: 40px;
    }

    .port-title-wrap {
      position: relative;
      display: inline-block;
      padding-left: 12px;
    }

    .port-title {
      font-family: var(--font-display);
      font-size: 56px;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin: 0;
    }

    .port-spark {
      position: absolute;
      top: -12px;
      left: -20px;
      color: var(--orange);
    }

    .port-underline {
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 100%;
      height: 8px;
    }

    .port-desc {
      max-width: 440px;
      font-size: 16px;
      color: var(--muted);
      line-height: 1.6;
      text-align: left;
      padding-top: 12px;
    }

    .port-filters {
      display: flex;
      gap: 40px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 50px;
      padding-bottom: 24px;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
    }

    .port-filters::-webkit-scrollbar {
      display: none;
    }

    .port-filter {
      background: none;
      border: none;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: color 0.3s;
      padding: 0;
    }

    .port-filter:hover {
      color: var(--ink);
    }

    .port-filter.active {
      color: var(--ink);
    }

    .port-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .port-column {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .port-card {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .port-img-wrap {
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }

    .port-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    .port-column:nth-child(1) .port-card:nth-child(1) .port-img-wrap {
      aspect-ratio: 4/4.5;
      background: linear-gradient(135deg, #F9F9F9, #EBEBEB);
    }

    .port-column:nth-child(1) .port-card:nth-child(2) .port-img-wrap {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #E3F2E1, #C3E3C6);
    }

    .port-column:nth-child(2) .port-card:nth-child(1) .port-img-wrap {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #F0F4F8, #D9E2EC);
    }

    .port-column:nth-child(2) .port-card:nth-child(2) .port-img-wrap {
      aspect-ratio: 4/4.5;
      background: linear-gradient(135deg, #F5F5F3, #E6E4DF);
    }

    .port-card-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 4px;
      margin-top: 12px;
      line-height: 1.3;
    }

    .port-card-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .port-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .port-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 16px;
      border: 1px solid var(--border);
      border-radius: 30px;
      font-size: 13px;
      color: var(--ink);
      font-weight: 500;
    }

    .y-marquee-strip {
      overflow: hidden;
      white-space: nowrap;
      padding: 24px 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
    }

    .y-marquee-track {
      display: inline-block;
      animation: y-scroll 30s linear infinite;
    }

    .y-marquee-item {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      display: inline-flex;
      align-items: center;
    }

    .y-dot {
      color: var(--orange);
      margin: 0 40px;
      font-size: 10px;
    }

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

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

    /* ── NEW TESTIMONIAL SLIDER ──────────────────────────────────────────────── */
    #testimonial {
      padding: 120px 0;
      background: var(--mid);
      overflow: hidden;
    }

    .tm-slider {
      display: flex;
      gap: 24px;
      padding: 40px 24px 0px 24px;
      overflow-x: auto;
      scrollbar-width: none;
    }

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

    .tm-card {
      flex: 0 0 280px;
      height: 440px;
      /* Guaranteed identical heights */
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 32px;
      cursor: pointer;
      transition: flex-basis 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s ease, opacity 0.6s ease, border-color 0.4s ease;
      opacity: 0.4;
      transform: scale(0.95);
      overflow: hidden;
    }

    .tm-card:hover {
      opacity: 0.8;
    }

    .tm-card.active {
      flex: 0 0 500px;
      opacity: 1;
      transform: scale(1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
      border-color: var(--border);
    }

    .tm-content {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .tm-title {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      transition: color 0.3s;
    }

    .tm-card.active .tm-title {
      color: var(--orange);
      font-weight: 600;
      margin-bottom: 24px;
    }

    .tm-quote {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.4;
      letter-spacing: -0.01em;
      opacity: 0;
      visibility: hidden;
      min-width: 420px;
      /* Prevents text-wrap jerking */
      transition: opacity 0.4s ease 0.2s, visibility 0s 0.6s;
    }

    .tm-card.active .tm-quote {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.6s ease 0.3s, visibility 0s 0s;
    }

    .tm-author {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: auto;
    }

    .tm-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid transparent;
      transition: border-color 0.3s;
    }

    .tm-card.active .tm-avatar {
      border-color: var(--orange);
    }

    .tm-name {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 2px;
      transition: color 0.3s;
    }

    .tm-card.active .tm-name {
      color: var(--orange);
    }

    .tm-role {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.05em;
      color: var(--muted);
    }

    .tm-controls {
      display: none;
    }

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

      .y-card.wide {
        grid-column: span 1;
      }


      .y-cred-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1024px) {
      .y-fc-top {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }

      .y-fc-brand {
        grid-column: span 2;
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .tm-slider {
        padding: 40px 24px 24px 24px;
        gap: 16px;
      }

      .tm-controls {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
      }

      .tm-btn-prev,
      .tm-btn-next {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ink);
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .tm-btn-prev:hover,
      .tm-btn-next:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: var(--white);
      }

      .tm-card {
        flex: 0 0 240px;
        padding: 24px;
        height: 380px;
      }

      .tm-card.active {
        flex: 0 0 320px;
      }

      .tm-quote {
        font-size: 18px;
        min-width: 272px;
      }

      .y-section {
        padding: 50px 0px;
      }

      .y-container {
        padding: 0 15px;
      }

      .y-huge-title {
        font-size: 40px;
      }

      .y-huge-sub {
        font-size: 18px;
      }

      .y-headline {
        font-size: 44px !important;
      }

      .y-grid-3,
      .y-grid-2,
      .y-cred-grid {
        grid-template-columns: 1fr;
      }

      .y-card.wide {
        grid-column: span 1;
      }

      .y-audit-strip {
        flex-direction: column;
        text-align: left;
        gap: 32px;
        padding: 40px 32px;
        align-items: flex-start;
      }

      .y-testi-box {
        padding: 40px 32px;
      }

      .y-quote {
        font-size: 28px;
      }

      .y-footer-card {
        padding: 60px 24px;
        gap: 40px;
        border-radius: 32px;
      }

      .y-fc-top {
        display: flex;
        flex-direction: column;
        gap: 40px;
      }

      .y-fc-title {
        font-size: 32px;
      }

      .y-fc-details-stack {
        gap: 24px;
      }

      .y-fc-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

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

      .svc-card {
        flex: none;
        min-height: auto;
      }

      .svc-num {
        font-size: 64px;
      }

      .svc-title {
        font-size: 24px;
      }

      .c-wrap {
        padding: 40px 15px;
        border-radius: 24px;
        min-height: auto;
      }

      .c-card {
        padding: 40px 24px;
      }

      .c-row {
        flex-direction: column;
        gap: 24px;
      }

      .c-title {
        font-size: 40px;
      }

      .cta-block {
        padding: 64px 32px;
        border-radius: 24px;
      }

      .cta-block-headline {
        font-size: 32px;
      }

      .cta-block-actions {
        flex-direction: column;
      }

      .why-b-num {
        font-size: 36px;
      }

      .proc-split {
        flex-direction: column;
        gap: 48px;
      }

      .proc-right {
        position: static;
      }

      .proc-heading {
        font-size: 32px;
      }

      .proc-item-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
      }

      .proc-anim-wrap {
        aspect-ratio: 4/3;
      }

      .trust-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
        align-items: flex-start;
      }

      .trust-headline {
        font-size: 32px;
      }

      .trust-track {
        gap: 40px;
      }

      /* .trust-logo {
        height: 22px;
      } */

      .port-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
      }

      .port-title {
        font-size: 40px;
      }

      .port-spark {
        left: auto;
        right: -24px;
        top: 0;
      }

      .port-filters {
        margin-bottom: 40px;
        gap: 24px;
      }

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

      .port-column {
        gap: 40px;
      }

      .y-card-header {
        margin-bottom: 40px;
      }
    }


    /* --------------------------
   WHATSAPP FLOATING BUTTON 
--------------------------- */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 55px;
      height: 55px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(239, 155, 15, 0.3);
      z-index: 9999;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: whatsapp-entrance 0.8s ease-out backwards, whatsapp-pulse 2s infinite;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 15px 35px rgba(239, 155, 15, 0.4);
    }

    .whatsapp-btn svg {
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    /* Tooltip */
    .whatsapp-tooltip {
      position: absolute;
      right: 70px;
      background-color: #111827;
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transform: translateX(10px);
      transition: all 0.3s ease;
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .whatsapp-tooltip::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 6px solid #111827;
    }

    .whatsapp-btn:hover .whatsapp-tooltip {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    /* Animations */
    @keyframes whatsapp-entrance {
      0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
      }

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

    @keyframes whatsapp-pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
      }

      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
      }

      .whatsapp-tooltip {
        display: none;
      }
    }

    /* ── TRUSTED BY FOUNDERS REDESIGN ────────────────────────────────────────── */
    /* .trust-flex {
      margin-top: 40px;
    } */

    .trust-info-grid {
      display: grid;
      grid-template-columns: 0.8fr 2fr;
      gap: 60px;
      margin-top: 40px;
      align-items: flex-start;
    }

    .trust-markers {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    .trust-marker {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      transition: all 0.3s ease;
    }

    .trust-marker svg {
      color: var(--orange);
    }

    .trust-marker:hover {
      padding-left: 12px;
      color: var(--orange);
    }

    .trust-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .trust-stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px 32px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 320px;
    }

    .y-cred-card:hover,
    .trust-stat-card:hover {
      transform: translateY(-8px);
      border-color: var(--orange);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.04);
    }

    .trust-stat-num {
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 24px;
      letter-spacing: -0.04em;
    }

    .trust-stat-label {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
      font-weight: 400;
    }

    @media (max-width: 1200px) {
      .trust-info-grid {
        grid-template-columns: 1fr;
        gap: 64px;
      }

      .trust-stats {
        gap: 16px;
      }
    }

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

    @media (max-width: 768px) {
      .trust-content-top {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 32px !important;
      }

      .trust-stats {
        grid-template-columns: 1fr;
      }

      .trust-stat-card {
        min-height: auto;
        padding: 40px;
      }
    }


    @media (max-width: 576px) {
      .y-hero-action {
        flex-direction: column;
        gap: 16px;
      }

      .y-hero-action .y-btn-solid,
      .y-hero-action .y-btn-outline {
        width: 100%;
        justify-content: space-between;
      }
    }

    /* ── CONTACT PAGE ───────────────────────────────────────────────────────── */
    .contact-hero {
      padding: 160px 0 80px;
      background: var(--white);
      text-align: left;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      margin-top: 64px;
      align-items: start;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    .contact-method-list {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .contact-method-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .contact-method-icon {
      width: 48px;
      height: 48px;
      background: var(--mid);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .contact-method-item:hover .contact-method-icon {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
      transform: translateY(-4px);
    }

    .contact-method-content h4 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .contact-method-content p,
    .contact-method-content a {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
    }

    .contact-method-content a:hover {
      color: var(--orange);
    }

    .contact-socials-wrap {
      margin-top: 16px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .contact-socials-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .contact-socials {
      display: flex;
      gap: 16px;
    }

    .contact-social-link {
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: all 0.3s ease;
    }

    .contact-social-link:hover {
      border-color: var(--ink);
      color: var(--ink);
      transform: translateY(-2px);
    }

    /* Contact Form Styling - REDESIGNED MINIMAL */
    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 64px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
    }

    .y-form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .y-form-group {
      margin-bottom: 48px;
    }

    .y-form-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .y-form-label span {
      color: #ff4d4d;
      margin-left: 2px;
    }

    .y-form-input,
    .y-form-select,
    .y-form-textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid #D4D4D4;
      border-radius: 0;
      padding: 12px 0 20px;
      font-family: var(--font-body);
      font-size: 18px;
      color: var(--ink);
      transition: all 0.3s ease;
      outline: none;
    }

    /* Custom Select Component */
    .custom-select {
      position: relative;
      cursor: pointer;
    }

    .select-trigger {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #D4D4D4;
      padding: 12px 0 20px;
      font-family: var(--font-body);
      font-size: 18px;
      color: var(--ink);
      transition: border-color 0.3s;
    }

    .custom-select:hover .select-trigger {
      border-color: #999;
    }

    .custom-select.active .select-trigger {
      border-color: var(--orange);
    }

    .select-trigger span {
      pointer-events: none;
    }

    .select-trigger svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
      color: var(--muted);
    }

    .custom-select.active .select-trigger svg {
      transform: rotate(180deg);
      color: var(--orange);
    }

    .select-options {
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      right: 0;
      background: #FFFFFF;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
      z-index: 100;
      padding: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px) scale(0.98);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .custom-select.active .select-options {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .select-option {
      padding: 16px 24px;
      border-radius: 16px;
      font-size: 17px;
      color: var(--ink);
      font-weight: 500;
      transition: all 0.2s;
    }

    .select-option:hover {
      background: var(--mid);
      color: var(--ink);
      padding-left: 24px;
    }

    .select-option.selected {
      background: rgba(239, 155, 15, 0.05);
      color: var(--orange);
      font-weight: 600;
    }


    .y-form-input::placeholder,
    .y-form-textarea::placeholder {
      color: #999;
      font-weight: 300;
    }

    .y-form-input:focus,
    .y-form-select:focus,
    .y-form-textarea:focus {
      border-bottom-color: var(--orange);
    }

    /* Budget Chips */
    .chip-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 10px;
    }

    .y-chip {
      padding: 12px 24px;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.3s ease;
      background: var(--white);
    }

    .y-chip:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .y-chip.active {
      background: var(--orange);
      border-color: var(--orange);
      color: var(--ink);
      font-weight: 600;
    }

    .chip-free {
      position: relative;
      z-index: 10;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      border-style: dashed;
      /* Playful dashed border */
    }


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

    /* Attachment Button */
    .attachment-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      margin: 20px 0 40px;
      transition: color 0.3s;
    }

    .attachment-btn:hover {
      color: var(--orange);
    }

    .attachment-btn svg {
      color: var(--ink);
      transition: color 0.3s;
    }

    .attachment-btn:hover svg {
      color: var(--orange);
    }

    /* Terms Checkbox */
    .terms-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 40px;
      justify-content: center;
    }

    .terms-wrap input[type="checkbox"] {
      width: 20px;
      height: 20px;
      accent-color: var(--orange);
      cursor: pointer;
    }

    .terms-text {
      font-size: 14px;
      color: var(--muted);
    }

    .terms-text a {
      color: var(--ink);
      text-decoration: underline;
      font-weight: 500;
    }

    .y-form-submit {
      width: auto;
      min-width: 280px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      padding: 18px 40px;
      font-size: 16px;
      border-radius: 100px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .y-form-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }


    .next-steps-card {
      background: var(--navy);
      border-radius: 24px;
      padding: 40px;
      color: var(--white);
      margin-top: 48px;
    }

    .next-steps-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 24px;
      color: var(--orange);
    }

    .next-step-item {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
    }

    .next-step-num {
      font-family: var(--font-mono);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 4px;
    }

    .next-step-text {
      font-size: 15px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.8);
    }

    @media (max-width: 1100px) {
      .contact-grid {
        gap: 48px;
      }

      .contact-form-card {
        padding: 40px;
      }
    }

    @media (max-width: 991px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 64px;
      }

      .contact-info {
        order: 2;
      }

      .contact-form-card {
        order: 1;
      }
    }

    @media (max-width: 768px) {
      .contact-hero {
        padding: 120px 0 60px;
      }

      .contact-form-card {
        padding: 32px 24px;
      }

      .y-form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }


    /* --------------Popup section Start */

    /**
 * Popup Menu Standalone Component
 * All classes are prefixed with 'pm-' for unique namespacing.
 */

    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&family=Fustat:wght@300;400;500;600;700&display=swap');

    :root {
      --pm-bg-primary: #F5F4F0;
      --pm-bg-white: #FFFFFF;
      --pm-bg-black: #1A1A1A;
      --pm-text-primary: #1A1A1A;
      --pm-text-secondary: rgba(26, 26, 26, 0.6);
      --pm-text-white: #FFFFFF;
      --pm-accent-orange: var(--orange);
      --pm-font-sans: var(--font-body);
      --pm-font-mono: var(--font-mono);
    }

    html {
      scrollbar-gutter: stable;
    }

    body.pm-no-scroll {
      overflow: hidden;
      height: 100vh;
    }

    /* Utilities */
    .pm-flex {
      display: flex;
    }

    .pm-flex-col {
      flex-direction: column;
    }

    .pm-items-end {
      align-items: flex-end;
    }

    .pm-gap-2 {
      gap: 0.5rem;
    }

    /* Menu Navigation Links */
    .pm-nav-link {
      font-family: var(--pm-font-sans);
      font-size: clamp(32px, 5vw, 48px);
      /* Beautifully scaled down */
      font-weight: 700;
      color: var(--pm-text-primary);
      text-decoration: none;
      line-height: 1.1;
      margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
      transition: color 0.3s ease;
    }

    .pm-nav-link:hover {
      color: var(--pm-accent-orange);
    }

    .pm-social-link {
      font-family: var(--pm-font-sans);
      font-size: clamp(12px, 1.5vw, 14px);
      color: var(--pm-text-secondary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .pm-social-link:hover {
      color: var(--pm-accent-orange);
    }

    .pm-email-link {
      font-family: var(--pm-font-sans);
      font-weight: 700;
      font-size: clamp(14px, 1.5vw, 16px);
      color: var(--pm-text-primary);
      text-decoration: none;
      border-bottom: 2px solid black;
      padding-bottom: 2px;
    }

    /* Floating Navigation Bar */
    .pm-floating-nav {
      position: fixed;
      bottom: clamp(1.5rem, 3vw, 2.5rem);
      left: 50%;
      transform: translateX(-50%);
      z-index: 1100;
      background-color: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      padding: 0.5rem;
      border-radius: 9999px;
      display: flex;
      gap: 0.5rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      width: max-content;
      max-width: 92vw;
    }

    .pm-btn {
      padding: 10px 28px;
      border-radius: 100px;
      font-family: var(--pm-font-sans);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      border: 1px solid transparent;
      font-size: 14px;
      text-decoration: none;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .pm-btn-white {
      background-color: var(--pm-bg-white);
      color: var(--pm-bg-black);
      border-color: var(--border);
    }

    .pm-btn-black {
      background-color: var(--pm-bg-black);
      color: var(--pm-text-white);
    }

    .pm-btn-black svg {
      color: var(--orange);
      /* Standardizing on Orange Arrow */
    }

    .pm-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .pm-btn-black:hover {
      background-color: var(--white);
      color: var(--ink);
      border-color: var(--ink);
    }

    /* Popup Overlay */
    #pm-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(12px);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: clamp(1.5rem, 3vw, 2rem);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #pm-overlay.pm-is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .pm-card {
      width: min(92vw, 850px);
      /* Constrained to 850px for a more elegant popup on laptops */
      height: auto;
      max-height: 85vh;
      /* Fluid vertical sizing on smaller devices */
      background-color: var(--pm-bg-white);
      border-radius: clamp(30px, 5vw, 60px);
      /* Scales cleanly across viewports */
      padding: clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem) clamp(6.5rem, 10vw, 8rem);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow-y: auto;
      /* Allow scrolling if screen is too short */
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      transform: scale(0.8) translateY(100px);
      /* Refined geometry entry */
      transform-origin: bottom center;
      opacity: 0;
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
      box-sizing: border-box;
    }

    /* Hide inner scrollbar to maintain aesthetic */
    .pm-card::-webkit-scrollbar {
      width: 0px;
      background: transparent;
    }

    #pm-overlay.pm-is-open .pm-card {
      transform: scale(1) translateY(0);
      opacity: 1;
    }

    .pm-art {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      opacity: 0.1;
      pointer-events: none;
    }

    .pm-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pm-nav {
      position: relative;
      z-index: 10;
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .pm-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      position: relative;
      z-index: 10;
      margin-top: clamp(2rem, 5vw, 4rem);
    }

    /* Responsive Overrides for Mobiles specifically */
    @media (max-width: 600px) {
      .pm-floating-nav {
        justify-content: center;
      }

      .pm-card {
        padding: 2rem 1.5rem 6.5rem 1.5rem;
        border-radius: 30px;
        width: calc(100vw - 1rem);
        max-height: 90vh;
      }

      .pm-art {
        display: none;
      }

      .pm-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
      }
    }

    /* --------------Popup section End */
    /* -- CONTACT POPUP (cp-) --------------------------------------------------- */
    #cp-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      z-index: 2000;
      display: flex;
      justify-content: flex-end;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    #cp-overlay.cp-is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .cp-card {
      width: 100%;
      max-width: 650px;
      height: 100%;
      background: #FFFFFF;
      padding: 60px 50px;
      position: relative;
      transform: translateX(100%);
      transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
      overflow-y: auto;
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
    }

    #cp-overlay.cp-is-open .cp-card {
      transform: translateX(0);
    }

    .cp-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: none;
      border: none;
      font-size: 14px;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      cursor: pointer;
      color: var(--muted);
      transition: color 0.3s;
    }

    .cp-close:hover {
      color: var(--ink);
    }

    .cp-form-title {
      font-family: var(--font-display);
      font-size: 42px;
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 40px;
      color: var(--ink);
    }

    .cp-form-title span {
      display: block;
      color: var(--orange);
    }

    .cp-group {
      margin-bottom: 32px;
    }

    .cp-label {
      display: block;
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--ink);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .cp-label span {
      color: #FF4D4D;
    }

    .cp-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid #E0E0E0;
      padding: 12px 0;
      font-family: var(--font-body);
      font-size: 18px;
      color: var(--ink);
      transition: border-color 0.3s;
    }

    .cp-input:focus {
      outline: none;
      border-color: var(--orange);
    }

    .cp-input::placeholder {
      color: #BBB;
    }

    .cp-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .cp-chip {
      padding: 14px 28px;
      border: 1px solid #E0E0E0;
      border-radius: 40px;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.3s;
    }

    .cp-chip:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .cp-chip.active {
      background: var(--white);
      border-color: var(--orange);
      color: var(--orange);
      box-shadow: 0 5px 15px rgba(239, 155, 15, 0.1);
    }

    .cp-chip.chip-free {
      border-style: dotted;
    }

    .cp-select {
      position: relative;
      cursor: pointer;
    }

    .cp-select-trigger {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #E0E0E0;
      font-size: 18px;
      color: var(--ink);
      transition: border-color 0.3s;
    }

    .cp-select.active .cp-select-trigger {
      border-color: var(--orange);
    }

    .cp-select-options {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #FFF;
      border: 1px solid #EEE;
      border-radius: 12px;
      margin-top: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      z-index: 100;
      display: none;
      overflow: hidden;
    }

    .cp-select.active .cp-select-options {
      display: block;
    }

    .cp-option {
      padding: 14px 20px;
      font-size: 15px;
      transition: background 0.3s;
    }

    .cp-option:hover {
      background: #F9F9F9;
      color: var(--orange);
    }

    .cp-submit {
      width: 100%;
      background: var(--ink);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      border: 1px solid var(--ink);
      border-radius: 100px;
      padding: 18px;
      margin-top: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .cp-submit svg {
      color: var(--orange);
      transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .cp-submit:hover {
      background: var(--white);
      color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .cp-submit:hover svg {
      transform: translate(3px, -3px);
    }

    .cp-attachment {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink);
      margin-top: 40px;
      cursor: pointer;
    }

    .cp-terms {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 30px;
    }

    .cp-terms input {
      margin-top: 4px;
    }

    .cp-terms-text {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }

    .cp-terms-text a {
      text-decoration: underline;
      color: var(--ink);
    }

    @media (max-width: 768px) {
      .cp-card {
        padding: 40px 25px;
        max-width: 100%;
      }

      .cp-form-title {
        font-size: 32px;
      }
    }

    /* -- REFINED CONTACT POPUP SPACE OPTIMIZATION ---------------------------- */
    .cp-card {
      padding: 40px;
      /* Reduced padding */
    }

    .cp-row {
      display: flex;
      gap: 24px;
      margin-bottom: 24px;
    }

    .cp-row .cp-group {
      flex: 1;
      margin-bottom: 0;
    }

    .cp-group {
      margin-bottom: 24px;
      /* Reduced from 32px */
    }

    .cp-form-title {
      font-size: 32px;
      /* Slightly smaller to save space */
      margin-bottom: 30px;
    }

    .cp-submit {
      margin-top: 30px;
      padding: 18px;
    }

    .cp-attachment {
      margin-top: 30px;
    }

    /* Mobile adjustments */
    @media (max-width: 600px) {
      .cp-row {
        flex-direction: column;
        gap: 24px;
      }
    }

    /* ── STATS & COUNTER EFFECTS ─────────────────────────────────────────────── */
    .y-cred-num,
    .trust-stat-num {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-block;
      color: var(--orange);
      /* Standard Orange */
    }

    .y-cred-card,
    .trust-stat-card {
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      cursor: default;
      position: relative;
      border: 1px solid var(--border);
    }

    .y-cred-card:hover,
    .trust-stat-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 30px 60px rgba(239, 155, 15, 0.08);
      background: var(--white);
      z-index: 2;
    }

    .y-cred-card:hover .y-cred-num,
    .trust-stat-card:hover .trust-stat-num {
      transform: scale(1.1);
      text-shadow: 0 0 20px rgba(239, 155, 15, 0.2);
    }

    /* new css */


    .btn-premium {
      color: black;
      transition: all 0.3s ease;
    }

    /* TEXT */
    /* BASE */
    .btn-premium {
      color: black;
      transition: all 0.3s ease;
    }

    /* SVG default */
    .btn-premium svg circle {
      stroke: black;
      transition: all 0.3s ease;
    }

    .btn-premium svg path {
      fill: black;
      transition: all 0.3s ease;
    }

    /* ✅ BTN-PREMIUM HOVER (orange bg stays as it is) */
    .btn-premium:hover span {
      color: white;
    }

    .btn-premium:hover svg circle {
      stroke: white;
    }

    /* ✅ WHITE BACKGROUND BUTTON */
    .white-bg-button {
      background: transparent;
      border: 1px solid var(--border);
    }

    .white-bg-button:hover span {
      color: black !important;
    }

    .white-bg-button:hover svg circle {
      stroke: black !important;
    }

    .white-bg-button:hover svg path {
      fill: black !important;
    }

    #process .sec-header {
      margin-bottom: 25px;
    }

    #testimonial .sec-header {
      margin-bottom: 0px;
    }

    .attachment-wrapper .btn-premium {
      margin-top: 20px;
    }

    #contact {
      padding: 60px;
    }



    @keyframes fSelectFade {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

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

    @media (max-width: 767px) {
      .y-hero-content {
        margin-top: 50px;
      }

      #process {
        padding: 0 15px;
      }

      #contact {
        padding: 60px 15px;
      }

      .pm-card {
        top: 15px;
      }

      .y-nav {
        justify-content: center;
      }

      .y-hero-content {
        margin-top: 115px;
      }
    }