      @font-face {
        font-family: "ITCAvantGardePro";
        src: url("font/ITCAvantGardePro-Bold.otf") format("opentype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
      }

      :root {
        --brand-primary: #1f1b2c;
        --brand-secondary: #ff6f3c;
        --brand-accent: #6c5ce7;
        --bg-soft: #f7f6fb;
        --text-main: #1c1c1c;
        --text-muted: #6e6e73;
        --card-border: rgba(255, 255, 255, 0.1);
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
        background: var(--bg-soft);
        color: var(--text-main);
        line-height: 1.6;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "ITCAvantGardePro", "Montserrat", "Inter", sans-serif;
        font-weight: 700;
        margin-top: 1rem !important;
      }

      h3 {
        color: #726a8d;
      }

      img {
        max-width: 100%;
        height: auto;
      }

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

      .page {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

      /* Header + navigation */
      header {
        background: #fff;
        color: var(--text-main);
        position: relative;
        z-index: 10;
        box-shadow: 0 12px 30px rgba(15, 10, 49, 0.08);
      }

      .nav-primary {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        padding: 2.75rem 5vw;
        flex-wrap: wrap;
      }

      .nav-secondary {
        padding: 0 5vw;
        background: #fff;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 0.65rem;
      }

      .logo-mark {
        height: 52px;
        width: auto;
        display: block;
      }

      .search-bar {
        flex: 1;
        max-width: 520px;
        background: #f7f6fb;
        border-radius: 999px;
        border: 2px solid rgba(108, 92, 231, 0.25);
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.95rem 1.6rem;
        color: #6e6e73;
      }

      .search-bar input {
        border: none;
        background: transparent;
        outline: none;
        font-size: 1rem;
        width: 100%;
        color: var(--text-main);
      }

      .search-icon {
        display: inline-flex;
        align-items: center;
        color: #6c5ce7;
      }

      .nav-utility {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: auto;
      }

      .utility-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.95rem;
        color: var(--text-main);
        font-weight: 600;
      }

      .utility-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f7f6fb;
        display: grid;
        place-items: center;
        font-size: 0.9rem;
      }

      .cart-link {
        position: relative;
        padding-right: 0.5rem;
      }

      .cart-badge {
        position: absolute;
        top: -6px;
        right: -4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #f938b4;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
      }

      .nav-menu {
        display: flex;
        justify-content: space-between;
        gap: 1.25rem;
        font-weight: 500;
        font-size: 1.0625rem;
        padding: 0.85rem 0;
      }

      .mobile-close {
        display: none;
      }

      .nav-menu a {
        position: relative;
        padding: 0.35rem 0;
      }

      .nav-menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.35rem;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #f938b4, #a36bff);
        border-radius: 999px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.24s ease;
      }

      .nav-menu a:hover::after,
      .nav-menu a.is-active::after {
        transform: scaleX(1);
      }

      .cta-btn {
        background: var(--brand-secondary);
        color: #fff;
        border: none;
        padding: 0.85rem 1.6rem;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .cta-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 15px 35px rgba(255, 111, 60, 0.35);
      }

      .mobile-toggle {
        display: none;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(31, 27, 44, 0.15);
        background: transparent;
        color: var(--text-main);
        font-size: 1.1rem;
      }

      /* Hero */
      .hero {
        background: #f7ab2b;
        color: #fff;
        padding: 4rem 5vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("images/header-image.png") center/contain no-repeat;
        opacity: 1;
        z-index: 0;
        pointer-events: none;
        height: 100%;
        top: 0;
        bottom: 0;
      }

      .hero-banner__content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
        align-items: center;
        max-width: 720px;
      }

      .hero-banner__content h1 {
        font-size: clamp(2.3rem, 4.2vw, 4rem);
        margin: 0;
        line-height: 1.05;
      }

      .hero-banner__content p {
        margin: 0;
        font-size: 1rem;
        max-width: 42ch;
      }

      .hero-pill {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        letter-spacing: 0.04em;
      }

      .code-display {
        display: inline-flex;
        align-items: center;
        gap: 0.85rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 999px;
        padding: 0.6rem 1.4rem;
        backdrop-filter: blur(8px);
      }

      .code-label {
        font-weight: 600;
        opacity: 0.9;
      }

      .code-value {
        font-size: 1.35rem;
        font-weight: 700;
        letter-spacing: 0.08em;
      }

      .copy-btn {
        border: none;
        background: #fff;
        color: #f05a2b;
        font-size: 1.2rem;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .copy-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

      .copy-btn.copied {
        background: #2f2870;
        color: #fff;
      }

      .code-note {
        width: 100%;
        max-width: 680px;
        margin: 1rem auto 0;
        padding: 1.25rem 1.6rem;
        border-radius: 28px;
        border: 1px solid rgba(129, 121, 222, 0.35);
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 20px 60px rgba(20, 15, 29, 0.12);
        backdrop-filter: blur(12px);
        font-size: 0.95rem;
        color: var(--text-main);
        text-align: left;
        transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .code-note[open] {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(129, 121, 222, 0.55);
        box-shadow: 0 25px 60px rgba(20, 15, 29, 0.18);
      }

      .code-note summary {
        list-style: none;
        cursor: pointer;
        font-weight: 600;
        letter-spacing: 0.01em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin: 0;
      }

      .code-note summary::-webkit-details-marker {
        display: none;
      }

      .code-note summary::after {
        content: "+";
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(129, 121, 222, 0.16);
        border: 1px solid rgba(129, 121, 222, 0.35);
        display: grid;
        place-items: center;
        font-weight: 700;
        font-size: 1.1rem;
        color: #726a8d;
        flex-shrink: 0;
      }

      .code-note[open] summary::after {
        content: "−";
      }

      .code-note summary:focus-visible {
        outline: 2px solid rgba(129, 121, 222, 0.55);
        outline-offset: 6px;
        border-radius: 999px;
      }

      .code-note__content {
        margin-top: 1rem;
        opacity: 0.92;
      }

      .code-note__content p {
        margin: 0;
      }


      .section-how {
        padding-top: 3.5rem;
      }

      .section-header--center {
        flex-direction: column;
        text-align: center;
      }

      .section-header--center p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .section-header__subtext {
        color: var(--text-muted);
        margin-top: 0.5rem;
      }

      .how-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
      }

      .section-how .section-header .pill {
        padding: 0.55rem 1.3rem;
        font-size: 1.05rem;
      }

      .section-how .section-header h2 {
        color: #8179de;
      }

      .how-card {
        background: #fff;
        border-radius: 24px;
        border: 2px solid rgba(47, 40, 112, 0.12);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 20px 40px rgba(20, 15, 29, 0.08);
      }

      .how-card__number {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid rgba(47, 40, 112, 0.25);
        display: grid;
        place-items: center;
        font-weight: 700;
        color: #2f2870;
        font-size: 1.1rem;
      }

      .how-card p {
        margin: 0;
        color: var(--text-muted);
        flex: 1;
      }

      .how-card__action {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 0.85rem 1.25rem;
        border-radius: 999px;
        font-weight: 600;
        border: none;
        background: #f05a2b;
        color: #fff;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .how-card__action.secondary {
        background: #8179de;
        color: #fff;
      }

      .how-card__action:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(32, 26, 78, 0.25);
      }

      /* Products row */
      .section {
        padding: 4rem 5vw;
      }

      .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .section-header h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        color: #726a8d;
      }

      .section-header p {
        margin: 0;
        color: var(--text-muted);
      }

      .product-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
      }

      .product-card {
        background: #fff;
        border-radius: 20px;
        padding: 1.75rem;
        border: 1px solid rgba(31, 27, 44, 0.06);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(15, 10, 49, 0.08);
      }

      .product-media {
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        display: block;
        background: #efedf7;
        box-shadow: inset 0 0 0 1px rgba(31, 27, 44, 0.04);
      }

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

      .pill {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.45rem 1rem;
        border-radius: 999px;
        font-size: 0.95rem;
        background: rgba(129, 121, 222, 0.15);
        color: #8179de;
        font-weight: 600;
        margin-bottom: 0.75rem;
      }

      .product-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
        color: #726a8d;
      }

      .product-desc {
        color: var(--text-muted);
        margin: 0;
      }

      .product-meta {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
      }

      .link {
        color: var(--brand-secondary);
        font-weight: 600;
      }

      .section-cta {
        display: flex;
        justify-content: center;
        margin-top: 2.5rem;
      }

      .section-cta__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.8rem;
        border-radius: 999px;
        background: #8179de;
        color: #fff;
        font-weight: 600;
        box-shadow: 0 15px 30px rgba(129, 121, 222, 0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .section-cta__button:hover {
        transform: translateY(-2px);
        box-shadow: 0 25px 45px rgba(129, 121, 222, 0.4);
      }

      .references-highlight {
        padding: 4rem 5vw;
      }

      .references-highlight__inner {
        background: linear-gradient(135deg, #f8f5fc, #e2d2f2);
        border-radius: 32px;
        padding: 3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        align-items: center;
      }

      .references-highlight__content h2 {
        margin: 0.35rem 0 1rem;
        font-size: clamp(2rem, 3.5vw, 2.8rem);
        color: #726a8d;
      }

      .references-highlight__content p {
        margin: 0 0 0.5rem;
        color: #4a4a4a;
      }

        .references-highlight-cont {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
      }


      .references-highlight__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 360px;
        padding: 0.85rem 1.6rem;
        border-radius: 999px;
        background: #8179de;
        color: #fff;
        font-weight: 600;
        box-shadow: 0 20px 35px rgba(108, 92, 231, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .references-highlight__btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 25px 45px rgba(108, 92, 231, 0.35);
      }

      .references-highlight__brand {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        font-weight: 600;
        color: #6c5ce7;
      }

      .references-highlight__brand img {
        display: block;
        height: 34px;
        width: auto;
      }

      .references-highlight__carousel {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
      }

      .references-highlight__carousel::-webkit-scrollbar {
        height: 6px;
      }

      .references-highlight__carousel::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 999px;
      }

      .references-highlight__item {
        flex: 1;
        min-width: 220px;
        height: clamp(190px, 28vw, 320px);
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(15, 10, 49, 0.15);
        border: none;
        background: none;
        padding: 0;
        cursor: pointer;
        font: inherit;
      }

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

      .contact-cta {
        padding: 4rem 5vw;
      }

      .contact-cta__content {
        background: #f0eefb;
        border-radius: 32px;
        padding: 3rem 4rem;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        align-items: center;
      }

      .contact-cta__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .contact-cta__text {
        flex: 1;
        min-width: 240px;
      }

      .contact-cta__text .pill {
        margin-bottom: 0.5rem;
      }

      .contact-cta__content h2 {
        margin: 0.5rem 0 1rem;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        color: #8179de;
      }

      .contact-cta__content p {
        margin: 0 0 1.5rem;
        color: #4a4a4a;
        font-size: 1.5625rem;
        font-weight: 500;
      }

      .contact-cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.8rem;
        border-radius: 999px;
        border: 2px solid #7a6be7;
        color: #7a6be7;
        font-weight: 600;
        font-size: 1rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .contact-cta__btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(122, 107, 231, 0.25);
      }

      .contact-cta__visual {
        display: flex;
        justify-content: center;
        flex: 0 0 auto;
      }

      .contact-cta__visual img {
        width: clamp(70px, 14vw, 110px);
        height: auto;
        display: block;
      }

      /* Footer */
      .site-footer {
        background: #22093d;
        color: rgba(255, 255, 255, 0.85);
        padding: 4rem 5vw 3rem;
      }

      .site-footer h4 {
        margin: 0 0 1rem;
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-family: "Montserrat", "Inter", sans-serif;
        font-weight: 700;
        color: #fff;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
        padding-left: clamp(0.5rem, 3vw, 2.5rem);
      }

      .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .footer-column a {
        color: #b1abc6;
        font-weight: 500;
        font-size: 0.875rem;
        line-height: 1.35;
      }

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

      .footer-social .social-links {
        display: flex;
        gap: 0.75rem;
      }

      .social-icon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid #8179de;
        display: grid;
        place-items: center;
        padding: 0.6rem;
      }

      .social-icon:hover {
        background: rgba(255, 255, 255, 0.1);
      }

      .social-icon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        display: block;
      }

      .footer-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin: 2.5rem 0 2rem;
      }

      .footer-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
      }

      .footer-brand {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 700;
      }

      .footer-brand__logo {
        width: 128px;
        height: auto;
      }

      .footer-payments {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
      }

      .payment-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .payment-badge img {
        height: 28px;
        width: auto;
        display: block;
      }

      .lightbox[hidden] {
        display: none;
      }

      .lightbox {
        position: fixed;
        inset: 0;
        background: rgba(11, 9, 28, 0.82);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        z-index: 100;
      }

      body.lightbox-open {
        overflow: hidden;
      }

      .lightbox__backdrop {
        position: absolute;
        inset: 0;
      }

      .lightbox__dialog {
        position: relative;
        background: #fff;
        border-radius: 20px;
        padding: 1.5rem;
        max-width: 960px;
        width: min(90vw, 960px);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        z-index: 2;
      }

      .lightbox__dialog img {
        width: 100%;
        max-height: 70vh;
        object-fit: cover;
        border-radius: 12px;
      }

      .lightbox__close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        border: none;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1.4rem;
        cursor: pointer;
      }

      .lightbox__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(11, 9, 28, 0.75);
        color: #fff;
        font-size: 1.4rem;
        font-weight: 700;
        cursor: pointer;
        z-index: 3;
        transition: background 0.2s ease, transform 0.2s ease;
      }

      .lightbox__nav:hover {
        background: rgba(108, 92, 231, 0.9);
        transform: translateY(-50%) scale(1.05);
      }

      .lightbox__nav:focus-visible {
        outline: 2px solid rgba(108, 92, 231, 0.9);
        outline-offset: 3px;
      }

      .lightbox__nav--prev {
        left: 0.75rem;
      }

      .lightbox__nav--next {
        right: 0.75rem;
      }

      .lightbox__caption {
        margin: 0;
        font-weight: 600;
        color: #2f2870;
      }

      .lightbox__cta {
        align-self: flex-start;
        display: inline-flex;
        padding: 0.7rem 1.4rem;
        border-radius: 999px;
        border: 2px solid #6c5ce7;
        color: #6c5ce7;
        font-weight: 600;
      }
      @media (max-width: 900px) {

        .hero::before {
          background-size: cover;
          height: 100%;
        }

        .contact-cta__content {
          padding: 2.5rem;
        }

        .contact-cta__row {
          flex-direction: column;
          text-align: center;
        }

        .contact-cta__content p {
          font-size: 1.1rem;
        }

        .contact-cta__visual img {
          width: 80px;
        }

        .references-highlight__btn {
          margin-left: auto;
          margin-right: auto;
        }

        .nav-menu {
          position: fixed;
          inset: 0;
          flex-direction: column;
          padding: 6rem 10vw;
          background: rgba(255, 255, 255, 0.97);
          backdrop-filter: blur(18px);
          transform: translateY(-100%);
          transition: transform 0.3s ease;
          text-align: center;
        }

        .mobile-close {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          top: 1.25rem;
          right: 1.25rem;
          width: 44px;
          height: 44px;
          border-radius: 50%;
          border: 1px solid rgba(31, 27, 44, 0.15);
          background: #fff;
          font-size: 1.4rem;
          color: #2f2870;
        }

        .nav-menu.open {
          transform: translateY(0);
        }

        .mobile-toggle {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          order: -1;
          margin-right: 0.5rem;
        }

        .nav-primary {
          gap: 1rem;
          padding: 1.5rem 5vw;
        }

        .search-bar {
          order: 3;
          width: 100%;
          margin-top: 0.5rem;
        }

        .nav-utility {
          width: auto;
          justify-content: flex-end;
          flex-wrap: nowrap;
          margin-left: auto;
        }

        .utility-link.utility-language,
        .utility-link.utility-account {
          display: none;
        }

        .hero-stats {
          flex-direction: column;
        }
      }

      @media (max-width: 640px) {
        header {
          position: sticky;
          top: 0;
          z-index: 50;
        }

        .logo {
          transition: opacity 0.2s ease, max-width 0.2s ease;
        }

        .logo-mark {
          height: 38px;
        }

        .search-bar {
          max-width: 100%;
          padding: 0.6rem 1rem;
          gap: 0.65rem;
          transition: padding 0.2s ease, box-shadow 0.2s ease;
        }

        .search-bar input {
          font-size: 0.85rem;
        }

        body.search-bar-focused .logo {
          opacity: 0;
          max-width: 0;
          pointer-events: none;
        }

        body.search-bar-focused .search-bar {
          padding: 0.65rem 1.2rem;
          box-shadow: 0 12px 30px rgba(47, 40, 112, 0.15);
        }
      }
