/* RAS Sportswear — homepage + shared chrome from new-homepage-design */

    :root {
      --canvas: #F6F7F9;
      --surface: #FFFFFF;
      --surface-soft: #F1F3F6;
      --surface-pressed: #E4E7EC;
      --ink: #12151A;
      --ink-secondary: #5C6470;
      --ink-muted: #8A929C;
      --outline: #D5DAE0;
      --primary: #0E1218;
      --on-primary: #FFFFFF;
      --footer: #07090C;
      --accent: #E11D2E;
      --accent-hover: #C41424;
      --on-accent: #FFFFFF;
      --accent-ink: #C41424;
      --page-max: 2000px;
      --hero-max-h: 1000px;
      --page-pad: clamp(16px, 2.4vw, 32px);
      --gutter: clamp(16px, 1.6vw, 24px);
      --section-y: clamp(48px, 5vw, 72px);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-pill: 999px;
      --header-h: 88px;
      --focus-ring: 3px solid var(--accent);
      --text-eyebrow: 12px;
      --text-ui: 14px;
      --text-small: 15px;
      --text-body: 16px;
      --text-title: clamp(22px, 2vw, 28px);
      --text-h3: clamp(19px, 1.6vw, 22px);
      --text-section: clamp(32px, 4vw, 48px);
      --text-display: clamp(36px, 4.5vw, 64px);
      --text-stat: clamp(48px, 5vw, 72px);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Google Sans", system-ui, sans-serif;
      font-size: var(--text-body);
      line-height: 1.6;
      color: var(--ink);
      background: var(--canvas);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: "Google Sans", system-ui, sans-serif;
    }

    h1 {
      font-size: var(--text-display);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.025em;
    }

    h2 {
      font-size: var(--text-section);
      font-weight: 600;
      line-height: 1.12;
      letter-spacing: -0.02em;
    }

    h3 {
      font-size: var(--text-title);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.015em;
    }

    h4 {
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

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

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: var(--focus-ring);
      outline-offset: 3px;
    }

    .skip-link {
      position: absolute;
      left: var(--page-pad);
      top: 8px;
      z-index: 400;
      padding: 12px 18px;
      background: var(--accent);
      color: var(--on-accent);
      font-size: var(--text-ui);
      font-weight: 600;
      border-radius: var(--radius-pill);
      transform: translateY(-160%);
    }

    .skip-link:focus {
      transform: translateY(0);
      outline: 3px solid var(--ink);
      outline-offset: 3px;
    }

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

    button,
    input,
    select,
    textarea {
      font-family: inherit;
    }

    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }

    ::selection {
      background: var(--accent);
      color: var(--on-accent);
    }

    .wrap {
      width: 100%;
      max-width: var(--page-max);
      margin-inline: auto;
      padding-inline: var(--page-pad);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      height: var(--header-h);
      background: transparent;
      overflow: visible;
      transition: padding 0.3s ease;
    }

    .site-header:has(.mobile-nav.is-open) {
      height: auto;
    }

    .site-header.is-scrolled {
      padding-block: 10px;
    }

    .site-header.is-scrolled .header-shell {
      padding-inline: 24px;
      padding-block: 12px;
      background: rgba(246, 247, 249, 0.35);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

    .header-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      height: 100%;
      min-height: 0;
      overflow: visible;
      background: rgba(246, 247, 249, 0.2);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-pill);
      transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
      padding-block: 16px;
    }

    .header-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      min-width: 0;
    }

    .header-logo {
      display: flex;
      align-items: center;
      padding: 4px 6px;
    }

    .header-logo img,
    .site-header .nav-logo-img {
      height: 34px !important;
      width: auto !important;
    }

    @media (min-width: 768px) {
      .header-logo img,
      .site-header .nav-logo-img {
        height: 40px !important;
      }
    }

    .site-header .header-right,
    .site-header .navbar-right {
      gap: 8px;
    }

    .site-header .header-quote,
    .site-header .header-quote.nav-cta {
      display: inline-flex;
    }

    .header-nav {
      display: none;
      align-items: center;
      gap: 8px;
      overflow: visible;
    }

    @media (min-width: 1080px) {
      .header-nav {
        display: flex;
      }
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      min-height: 44px;
      padding: 10px 18px;
      background: #E8EAEE;
      color: var(--ink);
      font-size: var(--text-ui);
      font-weight: 500;
      white-space: nowrap;
      border: 0;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .nav-link:hover {
      background: var(--surface-pressed);
      color: var(--ink);
    }

    .nav-folder {
      position: relative;
      z-index: 1;
      padding-bottom: 16px;
      margin-bottom: -16px;
    }

    .nav-folder:hover,
    .nav-folder:focus-within {
      z-index: 70;
    }

    .nav-folder__menu {
      position: absolute;
      top: 100%;
      left: auto;
      right: 0;
      width: min(640px, 70vw);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 10px 0;
      background: var(--surface);
      border: 1px solid var(--outline);
      border-radius: var(--radius-lg);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.15s ease, visibility 0.15s ease;
      z-index: 60;
    }

    .nav-folder__menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 100%;
      height: 20px;
    }

    .nav-folder:hover .nav-folder__menu,
    .nav-folder:focus-within .nav-folder__menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .nav-folder__menu a {
      display: flex;
      align-items: center;
      min-height: 44px;
      margin: 2px 8px;
      padding: 12px 16px;
      color: var(--ink);
      font-size: var(--text-ui);
      font-weight: 500;
      border-radius: var(--radius-md);
      transition: background 0.15s ease, color 0.15s ease;
    }

    .nav-folder__menu a:hover,
    .nav-folder__menu a:focus-visible {
      background: var(--surface-pressed);
      color: var(--ink);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 45px;
      padding: 12px 22px;
      background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
      color: var(--on-accent);
      font-size: var(--text-ui);
      font-weight: 600;
      border: 0;
      border-radius: var(--radius-pill);
      cursor: pointer;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -2px 4px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.15);
      transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.12s ease;
    }

    .btn:hover {
      background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
      color: var(--on-accent);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -2px 4px rgba(0, 0, 0, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.18);
      transform: translateY(-1px);
    }

    .btn:active {
      transform: translateY(1px);
      box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.15);
    }

    .btn .material-symbols-outlined {
      font-size: 18px !important;
    }

    .btn-soft {
      background: linear-gradient(180deg, #2A313B 0%, #0E1218 100%);
      color: #fff;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -3px 6px rgba(0, 0, 0, 0.45);
    }

    .btn-soft:hover {
      background: linear-gradient(180deg, #323A46 0%, #13171F 100%);
      color: #fff;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -3px 6px rgba(0, 0, 0, 0.45);
      transform: translateY(-1px);
    }

    .btn-soft:active {
      transform: translateY(1px);
      box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    }

    .hero-stage {
      height: auto;
      min-height: min(var(--hero-max-h), calc(100dvh - var(--header-h)));
      max-height: var(--hero-max-h);
      padding-bottom: var(--page-pad);
      overflow: visible;
    }

    .hero-stage .hero {
      display: grid;
      gap: var(--gutter);
      height: auto;
      min-height: min(
        calc(var(--hero-max-h) - var(--page-pad)),
        calc(100dvh - var(--header-h) - var(--page-pad))
      );
      max-height: calc(var(--hero-max-h) - var(--page-pad));
      background: none;
      background-image: none;
      padding: 0;
      overflow: visible;
      align-items: stretch;
      justify-content: initial;
    }

    @media (min-width: 960px) {
      .hero-stage .hero {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        align-items: stretch;
      }
    }

    .hero-left {
      display: grid;
      grid-template-rows: minmax(min-content, 1fr) auto;
      gap: var(--gutter);
      min-height: 0;
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      min-height: 0;
    }

    .hero-card--headline {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: clamp(32px, 4vw, 48px);
      padding: clamp(32px, 3vw, 40px);
      background: var(--primary);
      color: #fff;
    }

    .hero-headline__text {
      display: flex;
      flex-direction: column;
      gap: clamp(20px, 2.5vw, 28px);
    }

    .hero-card--headline h1 {
      margin: 0;
      position: relative;
      z-index: 1;
      max-width: 12ch;
      font-size: var(--text-display);
      line-height: 1.02;
      font-weight: 700;
      letter-spacing: -0.025em;
      color: #fff;
    }

    .hero-sub {
      margin: 0;
      max-width: 50ch;
      font-size: var(--text-body);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.72);
    }

    .hero-card--headline .btn {
      align-self: flex-start;
      z-index: 1;
      height: auto;
      padding: 16px 28px;
      font-size: 16px;
      gap: 10px;
    }

    .hero-card--headline .btn .material-symbols-outlined {
      font-size: 20px !important;
    }

    .hero-card__deco {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .hero-card__deco circle {
      fill: none;
      stroke: rgba(255, 255, 255, 0.05);
      stroke-width: 1.5;
    }

    .hero-card--visual {
      display: grid;
      grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
      gap: var(--gutter);
      min-height: clamp(300px, 34vh, 380px);
      margin: 0;
      overflow: visible;
      background: transparent;
      border-radius: 0;
    }

    .hero-visual__media {
      min-width: 0;
      min-height: 0;
      overflow: hidden;
      background: var(--surface-pressed);
      border-radius: var(--radius-xl);
    }

    .hero-visual__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-visual__media img {
      object-position: center 24%;
    }

    .hero-visual__services {
      position: relative;
      min-width: 0;
      min-height: 0;
      overflow: hidden;
      background: var(--surface);
      color: var(--ink);
      border-radius: var(--radius-xl);
    }

    .hero-service__slide {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(24px, 3vw, 40px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.55s ease, visibility 0.55s ease;
    }

    .hero-service__slide.is-active {
      opacity: 1;
      visibility: visible;
    }

    .hero-service__copy {
      position: relative;
      z-index: 1;
      max-width: 42ch;
      padding-bottom: 48px;
    }

    .hero-service__copy h3 {
      margin: 0;
      font-size: clamp(20px, 3vw, 30px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.025em;
      color: var(--ink);
    }

    .hero-service__copy p {
      margin: 0;
      padding-top: 12px;
      font-size: var(--text-body);
      line-height: 1.5;
      color: var(--ink-secondary);
    }

    .hero-service__cta {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 20px;
      color: var(--ink);
      font-size: var(--text-ui);
      font-weight: 600;
    }

    .hero-service__cta .material-symbols-outlined {
      font-size: 18px !important;
    }

    .hero-visual__services .hero-progress button::after {
      background: var(--outline);
    }

    .hero-visual__services .hero-progress button.is-active::after {
      background: var(--ink);
    }

    @media (max-width: 599px) {
      .hero-card--visual {
        grid-template-columns: 1fr;
      }

      .hero-visual__media {
        min-height: 260px;
      }

      .hero-visual__services {
        min-height: 300px;
      }
    }

    .hero-card--feature {
      background: var(--primary);
      min-height: min(52vh, 520px);
    }

    @media (min-width: 960px) {
      .hero-card--feature {
        min-height: 0;
      }
    }

    .hero-card--feature img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.55s ease;
    }

    .hero-card--feature img.is-active {
      opacity: 1;
    }

    .hero-card--feature::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.15) 32%, rgba(7, 9, 12, 0.88) 100%);
      pointer-events: none;
    }

    .hero-play {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 2;
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.85);
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
    }

    .hero-feature__copy {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 28px;
      z-index: 2;
      padding: 0 clamp(24px, 2.4vw, 32px) 28px;
      color: #fff;
      transition: opacity 0.3s ease;
    }

    .hero-feature__copy.is-swapping {
      opacity: 0;
    }

    .hero-feature__copy .eyebrow {
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 8px;
      font-size: var(--text-eyebrow);
      letter-spacing: 0.12em;
    }

    .hero-feature__copy p {
      margin: 0;
      max-width: 46ch;
      font-size: var(--text-body);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.95);
    }

    .hero-progress {
      position: absolute;
      left: clamp(24px, 2.4vw, 32px);
      right: clamp(24px, 2.4vw, 32px);
      bottom: 20px;
      z-index: 2;
      display: flex;
      gap: 8px;
    }

    .hero-progress button {
      flex: 1;
      height: 44px;
      padding: 0;
      border: 0;
      border-radius: 99px;
      background: transparent;
      cursor: pointer;
    }

    .hero-progress button::after {
      content: "";
      display: block;
      height: 3px;
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.28);
    }

    .hero-progress button.is-active::after {
      background: #fff;
    }

    @media (max-width: 959px) {
      .hero-stage {
        height: auto;
        min-height: 0;
        max-height: none;
      }

      .hero-stage .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        grid-template-rows: auto auto;
        padding-block: 0;
      }

      .hero-left {
        grid-template-rows: auto auto;
      }
    }

    .split-stage {
      padding-top: var(--section-y);
      padding-bottom: var(--section-y);
    }

    .split-head {
      margin: 0 0 40px;
      text-align: left;
    }

    .split-head h2 {
      margin: 0;
      font-size: var(--text-section);
      line-height: 1.12;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-flow: row;
      gap: var(--gutter);
    }

    @media (min-width: 900px) {
      .split {
        grid-template-columns: 1fr 1fr;
      }
    }

    .split-card {
      position: relative;
      display: block;
      min-height: min(52vh, 520px);
      overflow: hidden;
      background: var(--primary);
      color: #fff;
      border-radius: var(--radius-xl);
    }

    @media (max-width: 899px) {
      .split-card {
        min-height: min(42vh, 400px);
      }
    }

    .split-card:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
    }

    .split-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 18%;
      transition: transform 0.6s ease;
    }

    .split-card:hover img,
    .split-card:focus-visible img {
      transform: scale(1.05);
    }

    .split-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.06) 38%, rgba(7, 9, 12, 0.78) 100%);
      pointer-events: none;
    }

    .split-card__go {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 2;
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .split-card:hover .split-card__go,
    .split-card:focus-visible .split-card__go {
      background: var(--accent);
      transform: translateY(-1px);
    }

    .split-card__go .material-symbols-outlined {
      font-size: 22px;
    }

    .split-card__copy {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      display: grid;
      grid-template-rows: auto minmax(2.6em, auto) auto;
      gap: 8px;
      padding: clamp(24px, 2.4vw, 32px);
      color: #fff;
    }

    .split-card h3 {
      margin: 0;
      font-size: var(--text-title);
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.2;
      color: #fff;
    }

    .split-card p {
      margin: 0;
      max-width: 28ch;
      font-size: var(--text-body);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.9);
    }

    .split-card__cta {
      margin-top: 6px;
      font-size: var(--text-ui);
      font-weight: 600;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .split-card__cta .material-symbols-outlined {
      font-size: 18px !important;
    }

    .trust-stage {
      padding-bottom: var(--section-y);
    }

    .trust {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      padding-block: var(--section-y);
    }

    @media (min-width: 900px) {
      .trust {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding-block: var(--section-y);
      }
    }

    .trust-item {
      min-width: 0;
      text-align: left;
    }

    @media (min-width: 900px) {
      .trust-item {
        padding: 4px clamp(28px, 3.2vw, 48px);
      }

      .trust-item:first-child {
        padding-left: 8px;
      }

      .trust-item:last-child {
        padding-right: 8px;
      }

      .trust-item:not(:last-child) {
        position: relative;
      }

      .trust-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 12%;
        bottom: 12%;
        right: 0;
        width: 1px;
        background: var(--outline);
      }
    }

    .trust-stat {
      margin-bottom: 8px;
    }

    .trust-stat strong {
      font-size: var(--text-stat);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--ink);
    }

    .trust-item h3 {
      margin: 0 0 8px;
      font-size: var(--text-body);
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
    }

    .trust-item p {
      margin: 0;
      max-width: 34ch;
      font-size: var(--text-body);
      line-height: 1.5;
      color: var(--ink-secondary);
    }

    .eyebrow {
      display: block;
      margin-bottom: 10px;
      font-size: var(--text-eyebrow);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-ink);
    }

    .section {
      padding: var(--section-y) 0;
    }

    .bg-canvas {
      background: var(--canvas);
    }

    .section__inner {
      max-width: var(--page-max);
      margin: 0 auto;
      padding-inline: var(--page-pad);
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 40px;
    }

    .section-head--center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head h2,
    .cta-banner h2 {
      margin: 0 0 16px;
      font-size: var(--text-section);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.12;
    }

    .cta-banner h2 {
      color: #fff;
    }

    .section-head p {
      margin: 0 0 16px;
      font-size: var(--text-body);
      line-height: 1.5;
      color: var(--ink-secondary);
    }

    .cards {
      display: grid;
      gap: 16px;
    }

    @media (min-width: 700px) {
      .cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1100px) {
      .cards {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .cat-card {
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: flex-end;
      border-radius: var(--radius-lg);
    }

    .cat-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .cat-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.06) 38%, rgba(7, 9, 12, 0.78) 100%);
      pointer-events: none;
    }

    .cat-card__overlay {
      position: relative;
      z-index: 1;
      width: 100%;
      padding: clamp(24px, 2.4vw, 32px);
    }

    .cat-card__kicker {
      display: block;
      margin-bottom: 4px;
      font-size: var(--text-eyebrow);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.92);
    }

    .cat-card h3 {
      margin: 0 0 8px;
      font-size: var(--text-title);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.015em;
      color: #fff;
    }

    .cat-card__more {
      font-size: var(--text-ui);
      font-weight: 600;
      color: #fff;
    }

    .process-stage {
      padding-bottom: var(--section-y);
    }

    body:not(.is-home) .process-stage {
      padding-top: var(--section-y);
    }

    .process .section-label {
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 12px;
    }

    #process {
      scroll-margin-top: calc(var(--header-h) + 16px);
    }

    .process {
      position: relative;
      overflow: hidden;
      background: var(--primary);
      color: #fff;
      border-radius: var(--radius-xl);
      padding: clamp(24px, 3.2vw, 48px);
    }

    .process-head {
      margin-bottom: clamp(32px, 4vw, 56px);
    }

    .process-head h2 {
      margin: 0;
      max-width: 18ch;
      font-size: var(--text-section);
      line-height: 1.12;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #fff;
    }

    .process-head__copy p {
      margin: 16px 0 0;
      max-width: 46ch;
      font-size: 16px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.72);
    }

    .process-steps {
      --step-pad: clamp(20px, 2vw, 28px);
      --icon-size: 44px;
      --marker-top: calc(var(--step-pad) + var(--icon-size) + 16px + 6px);
      --process-cols: 4;
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: var(--gutter);
      position: relative;
    }

    @media (min-width: 640px) {
      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 900px) {
      .process-steps {
        grid-template-columns: repeat(var(--process-cols, 4), 1fr);
      }
    }

    .process-step {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      min-height: 100%;
      padding: var(--step-pad);
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--radius-lg);
    }

    .process-step__icon {
      width: var(--icon-size);
      height: var(--icon-size);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .process-step__icon .material-symbols-outlined {
      font-size: 22px;
    }

    .process-step__num {
      position: absolute;
      top: 0px;
      right: 10px;
      z-index: 0;
      font-size: clamp(88px, 9vw, 132px);
      line-height: 0.7;
      font-weight: 700;
      letter-spacing: -0.06em;
      background: linear-gradient(135deg, var(--accent) 0%, rgba(255, 255, 255, 0.05) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      opacity: 0.13;
      pointer-events: none;
      user-select: none;
    }

    .process-step h3,
    .process-step p {
      position: relative;
      z-index: 1;
    }

    .process-step h3 {
      margin: 0;
      font-size: var(--text-title);
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.2;
      color: #fff;
    }

    .process-step p {
      margin: 0;
      max-width: 32ch;
      font-size: var(--text-body);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.72);
    }

    .process-cta {
      display: flex;
      justify-content: center;
      margin-top: clamp(28px, 3vw, 40px);
    }

    .process-cta .btn {
      padding: 16px 28px;
      font-size: 16px;
    }

    .services-stage {
      padding-bottom: var(--section-y);
    }

    .services-head {
      margin-bottom: 40px;
      text-align: center;
    }

    .services-head h2 {
      margin: 0 auto;
      max-width: none;
      font-size: var(--text-section);
      line-height: 1.12;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .services-head p {
      margin: 16px auto 0;
      max-width: 46ch;
      font-size: 16px;
      line-height: 1.5;
      color: var(--ink-secondary);
    }

    .service-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--gutter);
    }

    @media (min-width: 900px) {
      .service-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .service-card {
      position: relative;
      display: block;
      min-height: min(48vh, 420px);
      overflow: hidden;
      background: var(--primary);
      color: #fff;
      border-radius: var(--radius-xl);
    }

    .service-card[hidden] {
      display: none;
    }

    @media (max-width: 899px) {
      .service-card {
        min-height: min(42vh, 360px);
      }
    }

    .service-card:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
    }

    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-card:hover img,
    .service-card:focus-visible img {
      transform: scale(1.05);
    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 9, 12, 0.06) 38%, rgba(7, 9, 12, 0.78) 100%);
      pointer-events: none;
    }

    .service-card__go {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 2;
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .service-card:hover .service-card__go,
    .service-card:focus-visible .service-card__go {
      background: var(--accent);
      transform: translateY(-1px);
    }

    .service-card__go .material-symbols-outlined {
      font-size: 22px;
    }

    .service-card__copy {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      display: grid;
      gap: 8px;
      padding: clamp(24px, 2.4vw, 32px);
      color: #fff;
    }

    .service-card h3 {
      margin: 0;
      font-size: var(--text-title);
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.2;
      color: #fff;
    }

    .service-card p {
      margin: 0;
      max-width: 32ch;
      font-size: var(--text-body);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.9);
    }

    .services-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: clamp(24px, 2.4vw, 32px);
    }

    .services-cta .btn {
      padding: 12px 22px;
      font-size: var(--text-ui);
    }

    .faq-stage {
      padding-block: var(--section-y);
    }

    .faq {
      max-width: none;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(24px, 4vw, 48px);
      align-items: start;
    }

    @media (min-width: 860px) {
      .faq {
        grid-template-columns: 1fr 1fr;
      }
    }

    .faq-media {
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--outline);
    }

    .faq-media img {
      width: 100%;
      height: 100%;
      max-height: 700px;
      object-fit: cover;
      display: block;
      aspect-ratio: 4 / 5;
    }

    .faq-head {
      text-align: left;
      margin-bottom: clamp(20px, 2.5vw, 32px);
    }

    .faq-head h2 {
      margin: 0 0 10px;
      font-size: var(--text-section);
      line-height: 1.12;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .faq-head p {
      margin: 0;
      color: var(--ink-secondary);
      font-size: var(--text-body);
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--outline);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      background: none;
      border: 0;
      cursor: pointer;
      text-align: left;
      font-size: var(--text-ui);
      font-weight: 600;
      color: var(--ink);
      font-family: inherit;
    }

    .faq-q .material-symbols-outlined {
      flex: none;
      font-size: 22px !important;
      color: var(--ink-secondary);
      transition: transform 0.2s ease;
    }

    .faq-item.is-open .faq-q .material-symbols-outlined {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
    }

    .faq-a__inner {
      padding: 0 20px 18px;
      color: var(--ink-secondary);
      font-size: 15px;
      line-height: 1.6;
    }

    .cta-stage {
      padding-bottom: var(--section-y);
    }

    .cta-banner {
      position: relative;
      overflow: hidden;
      background: var(--primary);
      color: #fff;
      text-align: center;
      border-radius: var(--radius-xl);
      padding: var(--section-y) clamp(24px, 3.2vw, 48px);
    }

    .cta-banner .eyebrow {
      color: rgba(255, 255, 255, 0.92);
    }

    .cta-banner p {
      margin: 0 auto 28px;
      max-width: 48ch;
      color: rgba(255, 255, 255, 0.7);
      font-size: var(--text-body);
      line-height: 1.5;
    }

    footer.site-footer {
      max-width: 1200px;
      margin-inline: auto;
      background: transparent;
      color: var(--ink-secondary);
      padding: var(--section-y) 0;
    }

    .footer-grid {
      max-width: var(--page-max);
      margin: 0 auto;
      padding-inline: var(--page-pad);
      display: grid;
      gap: 32px;
    }

    @media (min-width: 800px) {
      .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
      }
    }

    .site-footer h4 {
      margin: 0 0 12px;
      color: var(--ink);
      font-size: 20px;
    }

    .site-footer a:hover {
      color: var(--accent);
    }

    .site-footer p,
    .site-footer li {
      margin: 0;
      font-size: var(--text-small);
      line-height: 1.8;
    }

    .site-footer ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-brand img {
      height: 42px;
      width: auto;
      margin-bottom: 12px;
    }

    .footer-social {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--outline);
      color: var(--ink);
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .footer-social a:hover {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .footer-social a .material-symbols-outlined {
      font-size: 22px !important;
    }

    .footer-bottom {
      max-width: var(--page-max);
      margin: 32px auto 0;
      padding: 24px var(--page-pad) 0;
      border-top: 1px solid var(--outline);
      font-size: 14px;
    }

    .footer-bottom a {
      text-decoration: underline;
    }

    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: #E8EAEE;
      color: var(--ink);
      border: 0;
      border-radius: 14px;
      cursor: pointer;
    }

    @media (min-width: 1080px) {
      .nav-toggle {
        display: none;
      }
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      margin: 0 auto 12px;
      max-width: var(--page-max);
      max-height: calc(100vh - 120px);
      overflow: auto;
      padding: 8px 4px 16px;
      background: transparent;
    }

    .mobile-nav.is-open {
      display: flex;
      background: var(--surface);
      border: 1px solid var(--outline);
      border-radius: var(--radius-lg);
      padding: 12px 16px 16px;
    }

    .mobile-nav .btn {
      margin-top: 12px;
      width: 100%;
    }

    .mobile-nav a,
    .mobile-folder__toggle {
      display: flex;
      align-items: center;
      min-height: 44px;
      padding: 12px 0;
      border-bottom: 1px solid var(--surface-pressed);
      color: var(--ink);
      font-weight: 500;
      background: none;
      border-left: 0;
      border-right: 0;
      border-top: 0;
      width: 100%;
      text-align: left;
      cursor: pointer;
      font-size: var(--text-ui);
    }

    .mobile-folder__panel {
      display: none;
      padding: 0 0 8px 12px;
    }

    .mobile-folder.is-open .mobile-folder__panel {
      display: flex;
      flex-direction: column;
    }

    .mobile-folder__panel a {
      font-size: var(--text-ui);
      font-weight: 400;
      color: var(--ink-secondary);
    }

    .mobile-folder__panel a:hover,
    .mobile-folder__panel a:focus-visible {
      color: var(--ink);
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 500;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(14, 18, 24, 0.62);
    }

    .modal.is-open {
      display: flex;
    }

    .modal__box {
      width: min(640px, 100%);
      max-height: calc(100vh - 48px);
      overflow: auto;
      background: var(--surface);
      padding: 28px;
      position: relative;
      border-radius: var(--radius-xl);
    }

    .modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 44px;
      height: 44px;
      border: 0;
      background: transparent;
      cursor: pointer;
      color: var(--ink);
      border-radius: 12px;
    }

    .modal h2 {
      margin: 0 0 20px;
      font-size: var(--text-section);
      font-weight: 600;
    }

    .modal__success {
      display: none;
    }

    .modal.is-success .modal__form {
      display: none;
    }

    .modal.is-success .modal__success {
      display: block;
    }

    .modal__success p {
      margin: 0 0 20px;
      font-size: var(--text-body);
      color: var(--ink-secondary);
    }

    .form-hint {
      display: block;
      margin-top: 6px;
      font-size: var(--text-ui);
      color: var(--ink-secondary);
    }

    .form-row {
      display: grid;
      gap: 12px;
      margin-bottom: 12px;
    }

    @media (min-width: 640px) {
      .form-row {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group {
      margin-bottom: 12px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--outline);
      background: var(--canvas);
      color: var(--ink);
      font-size: var(--text-body);
      border-radius: 12px;
      line-height: 1.4;
    }

    .form-group textarea {
      min-height: 110px;
      resize: vertical;
    }

    .header-quote {
      display: inline-flex;
      padding: 10px 16px;
      background: linear-gradient(180deg, #2A313B 0%, #0E1218 100%);
      color: #fff;
      font-weight: 500;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -3px 6px rgba(0, 0, 0, 0.45);
      transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.12s ease;
    }

    .header-quote:hover {
      background: linear-gradient(180deg, #323A46 0%, #13171F 100%);
      color: #fff;
      transform: translateY(-1px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -3px 6px rgba(0, 0, 0, 0.45);
    }

    .header-quote:active {
      transform: translateY(1px);
      box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 479px) {
      .header-quote {
        padding: 10px 12px;
        font-size: 13px;
      }

      .header-quote .material-symbols-outlined {
        display: none;
      }
    }

    @media (min-width: 720px) {
      .header-quote {
        padding: 12px 22px;
      }
    }

    body.is-locked {
      overflow: hidden;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .btn:hover,
      .split-card:hover .split-card__go,
      .service-card:hover .service-card__go {
        transform: none;
      }

      .split-card:hover img,
      .split-card:focus-visible img,
      .service-card:hover img,
      .service-card:focus-visible img {
        transform: none;
      }
    }

    .to-top {
      position: fixed;
      right: clamp(16px, 2.4vw, 32px);
      bottom: clamp(16px, 2.4vw, 32px);
      z-index: 300;
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 50%;
      background: linear-gradient(180deg, #2A313B 0%, #0E1218 100%);
      color: #fff;
      cursor: pointer;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -3px 6px rgba(0, 0, 0, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.25);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.12s ease;
    }

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

    .to-top:hover {
      transform: translateY(-1px);
    }

    .to-top:active {
      transform: translateY(1px);
      box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.22);
    }

    .to-top .material-symbols-outlined {
      font-size: 22px !important;
    }

    /* ── Laravel chrome: live modal, FAQ details, buttons ── */
    .btn-primary,
    .header-quote {
      border-radius: var(--radius-pill);
    }

    .btn-secondary {
      background: transparent;
      color: var(--color-primary);
      border: 1px solid var(--color-primary);
      box-shadow: none;
    }

    .btn-secondary:hover {
      background: var(--color-primary);
      color: var(--color-on-primary);
      box-shadow: none;
      transform: translateY(-1px);
    }

    .modal-overlay {
      background: rgba(14, 18, 24, 0.62);
    }

    .modal-overlay .modal-container {
      border-radius: var(--radius-xl);
      max-width: 640px;
    }

    .modal-overlay .modal-close {
      border-radius: 12px;
      width: 44px;
      height: 44px;
      min-height: 44px;
      color: var(--ink);
    }

    .modal-overlay .modal-close .material-symbols-outlined {
      font-size: 22px;
    }

    .modal-overlay .form-input,
    .modal-overlay .form-textarea,
    .modal-overlay select.form-input {
      border-radius: 12px;
      background: var(--canvas);
    }

    .faq-item summary {
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item[open] .faq-q .material-symbols-outlined {
      transform: rotate(180deg);
    }

    .faq-item .faq-a,
    .faq-item .faq-answer {
      max-height: none;
      overflow: visible;
    }

    .private-label-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--gutter);
    }

    @media (min-width: 700px) {
      .private-label-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1100px) {
      .private-label-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .private-label-stage {
      padding-block: var(--section-y);
    }

    .private-label-stage .services-head {
      max-width: 720px;
      margin-inline: auto;
      margin-bottom: 40px;
    }

    .private-label-stage .services-head h2 {
      max-width: none;
      line-height: 1.15;
      text-wrap: balance;
    }

    .private-label-card {
      background: var(--surface);
      border: 1px solid var(--outline);
      border-radius: var(--radius-lg);
      padding: clamp(24px, 2.4vw, 32px);
    }

    .private-label-card h3 {
      margin: 0 0 8px;
      font-size: var(--text-title);
    }

    .private-label-card p {
      margin: 0;
      max-width: none;
      color: var(--ink-secondary);
      font-size: var(--text-body);
      line-height: 1.5;
    }

    .btn {
      overflow: visible;
    }

    .section.bg-canvas,
    #categories-overview.section {
      padding: var(--section-y) 0 !important;
    }

    .faq {
      background: transparent;
    }

    footer.site-footer {
      max-width: 1200px;
      margin-inline: auto;
      background: transparent;
    }

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

    @media (min-width: 800px) {
      .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 32px;
      }
    }

    .back-to-top,
    .to-top {
      position: fixed;
      right: clamp(16px, 2.4vw, 32px);
      bottom: clamp(16px, 2.4vw, 32px);
      z-index: 300;
      width: 48px;
      height: 48px;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 50% !important;
      background: linear-gradient(180deg, #2A313B 0%, #0E1218 100%);
      color: #fff;
      cursor: pointer;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -3px 6px rgba(0, 0, 0, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.25);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.12s ease;
    }

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

    .back-to-top:hover,
    .to-top:hover {
      background: linear-gradient(180deg, #323A46 0%, #13171F 100%);
      color: #fff;
      transform: translateY(-1px);
    }

    .form-input,
    .form-textarea,
    select.form-input {
      border-radius: 12px;
      background: var(--canvas);
    }

    .modal-overlay .modal-container {
      border-radius: var(--radius-xl);
      border: 0;
      max-width: 640px;
      padding: 28px;
    }

    .modal-overlay .modal-title {
      font-size: var(--text-section);
      font-weight: 600;
      margin-bottom: 20px;
    }

    .modal-submit-btn.btn {
      border-radius: var(--radius-pill) !important;
      min-width: 0;
      text-transform: none;
    }
  