/* BjjDistribution main stylesheet.
   Extracted from the supplied standalone homepage and loaded by functions.php.

   ═════════════════════════════════════════
       CSS CUSTOM PROPERTIES
    ═════════════════════════════════════════ */
    :root {
      /* Colors */
      --navy: #13294B;
      --navy-dark: #0C1D36;
      --navy-light: #1A3459;
      --gold: #f7b756;
      --gold-light: #f9cb82;
      --gold-dark: #e09f3e;
      --white: #FFFFFF;
      --off-white: #F7F5F1;
      --cream: #F0EDE7;
      --charcoal: #2A2E35;
      --charcoal-light: #4A4E55;
      --border: #E7E3DC;
      --border-light: #F0EDE7;

      /* Typography */
      --font-serif: "Lora", Georgia, serif;
      --font-sans: "Lora", Georgia, serif;

      /* Spacing (8px rhythm) */
      --sp-1: 8px;
      --sp-2: 16px;
      --sp-3: 24px;
      --sp-4: 32px;
      --sp-5: 40px;
      --sp-6: 48px;
      --sp-8: 64px;
      --sp-10: 80px;
      --sp-12: 96px;
      --sp-16: 128px;

      /* Layout */
      --container-max: 1240px;
      --container-narrow: 960px;
      --container-wide: 1400px;

      /* Borders & Radius */
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-xl: 20px;
      --radius-full: 9999px;

      /* Shadows */
      --shadow-sm: 0 1px 3px rgba(19,41,75,0.06);
      --shadow-md: 0 4px 16px rgba(19,41,75,0.08);
      --shadow-lg: 0 8px 32px rgba(19,41,75,0.10);
      --shadow-xl: 0 16px 48px rgba(19,41,75,0.12);
      --shadow-gold: 0 4px 20px rgba(198,166,100,0.25);

      /* Transitions */
      --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
      --duration-fast: 200ms;
      --duration-normal: 300ms;
      --duration-slow: 500ms;

      /* Header */
      --header-height: 92px;
      --header-height-scrolled: 92px;
    }

    /* ═════════════════════════════════════════
       RESET & BASE
    ═════════════════════════════════════════ */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.7;
      color: var(--charcoal);
      background-color: var(--white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color var(--duration-fast) var(--ease-out);
    }

    button {
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
      font-size: inherit;
    }

    ul, ol {
      list-style: none;
    }

    ::selection {
      background-color: var(--gold);
      color: var(--white);
    }

    /* Focus styles for accessibility */
    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: var(--radius-sm);
    }

    /* ═════════════════════════════════════════
       UTILITY CLASSES
    ═════════════════════════════════════════ */
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--sp-3);
    }

    .container--narrow {
      max-width: var(--container-narrow);
    }

    .container--wide {
      max-width: var(--container-wide);
    }

    /* Section eyebrow / label */
    .eyebrow,
    .brand-eyebrow,
    .wholesale-eyebrow,
    .about-eyebrow,
    .contact-eyebrow,
    .slide__eyebrow {
      display: inline-flex !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 6px 14px !important;
      border-radius: 999px !important;
      background: rgba(19, 41, 75, 0.08) !important;
      color: var(--navy) !important;
      font-weight: 700 !important;
      font-size: 11px !important;
      letter-spacing: 1.5px !important;
      text-transform: uppercase !important;
      margin-bottom: var(--sp-3) !important;
      font-family: var(--font-sans) !important;
    }

    .eyebrow::before,
    .brand-eyebrow::before,
    .wholesale-eyebrow::before,
    .about-eyebrow::before,
    .contact-eyebrow::before,
    .slide__eyebrow::before {
      content: "" !important;
      width: 6px !important;
      height: 6px !important;
      border-radius: 50% !important;
      background: var(--navy) !important;
      box-shadow: 0 0 0 4px rgba(19, 41, 75, 0.12) !important;
      display: inline-block !important;
    }

    /* Section heading */
    .section-heading {
      font-family: var(--font-serif);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 500;
      line-height: 1.2;
      color: var(--navy);
      margin-bottom: var(--sp-3);
    }

    .section-heading--light {
      color: var(--white);
    }

    /* Gold underline accent */
    .gold-underline {
      position: relative;
      display: inline-block;
    }

    .gold-underline::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 60px;
      height: 2px;
      background: var(--gold);
      border-radius: 1px;
    }

    .gold-underline--center::after {
      left: 50%;
      transform: translateX(-50%);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-1);
      padding: 14px 32px;
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      border-radius: var(--radius-full);
      transition: all var(--duration-normal) var(--ease-out);
      white-space: nowrap;
    }

    .btn--gold {
      background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
      color: var(--white);
      box-shadow: 0 6px 20px rgba(19, 41, 75, 0.15);
    }

    .btn--gold:hover {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      box-shadow: 0 8px 32px rgba(19, 41, 75, 0.25);
      transform: translateY(-2px);
    }

    .btn--gold:active {
      transform: translateY(0);
      box-shadow: 0 6px 20px rgba(19, 41, 75, 0.15);
    }

    .btn--outline {
      border: 1.5px solid var(--navy);
      color: var(--navy);
      background: transparent;
    }

    .btn--outline:hover {
      background: var(--navy-light);
      color: var(--white);
      border-color: var(--navy-light);
      transform: translateY(-2px);
    }

    .btn--outline-white {
      border: 1.5px solid rgba(255,255,255,0.4);
      color: var(--white);
      background: transparent;
    }

    .btn--outline-white:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .btn--white {
      background: var(--white);
      color: var(--navy);
      font-weight: 600;
    }

    .btn--white:hover {
      background: var(--off-white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn--sm {
      padding: 10px 24px;
      font-size: 13px;
    }

    /* Scroll reveal animation base */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .dummy-visual-card {
      border-radius: 22px;
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(16,40,74,.10);
      box-shadow: 0 22px 44px rgba(16,40,74,.13);
      backdrop-filter: blur(14px);
      min-height: 230px;
      padding: 25px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 38px rgba(16,40,74,.07);
    }

    .reveal-delay-1 { transition-delay: 100ms; }
    .reveal-delay-2 { transition-delay: 200ms; }
    .reveal-delay-3 { transition-delay: 300ms; }
    .reveal-delay-4 { transition-delay: 400ms; }

    /* ═════════════════════════════════════════
       3.1 — HEADER
    ═════════════════════════════════════════ */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--header-height);
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all var(--duration-normal) var(--ease-out);
      border-bottom: 1px solid transparent;
    }

    .header.is-scrolled {
      height: var(--header-height-scrolled);
      background: rgba(255,255,255,0.98);
      border-bottom-color: var(--border);
      box-shadow: 0 1px 8px rgba(19,41,75,0.06);
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform var(--duration-normal) var(--ease-out);
    }

    .header.is-scrolled .logo-mark {
      width: 36px;
      height: 36px;
    }

    .logo:hover .logo-mark {
      transform: scale(1.05);
    }

    .logo-mark svg {
      width: 22px;
      height: 22px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo-name {
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.5px;
    }

    .header.is-scrolled .logo-name {
      font-size: 16px;
    }

    .logo-tagline {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* Desktop Nav */
    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
      transition: gap var(--duration-normal) var(--ease-out);
    }

    .nav__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      background: var(--off-white);
      border-radius: var(--radius-full);
      transition: color var(--duration-fast) var(--ease-out);
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .nav__icon {
      width: 16px;
      height: 16px;
      stroke-width: 2px;
      flex-shrink: 0;
    }

    /* Liquid slide-in fill background for hover (rounded leading edge) */
    .nav__link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -120%;
      width: 120%;
      height: 100%;
      border-radius: 0 100px 100px 0;
      background: var(--cream);
      z-index: -1;
      transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav__link:hover {
      color: var(--navy-dark);
    }

    .nav__link:hover::before {
      left: 0;
    }

    /* Keyframes for liquid slide-in animation on active page load */
    @keyframes activeWaterFillLeft {
      0% {
        left: -120%;
      }
      100% {
        left: 0;
      }
    }

    .nav__link.is-active {
      color: var(--white) !important;
      font-weight: 600;
      background: var(--off-white);
    }

    .nav__link.is-active::before {
      background: var(--navy);
      border-radius: 0 100px 100px 0;
      left: 0;
      animation: activeWaterFillLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    .nav__link.is-active:hover::before {
      background: var(--navy);
      left: 0;
    }

    .nav__link.is-active:hover {
      color: var(--white);
    }

    .header__cta {
      flex-shrink: 0;
      margin-left: var(--sp-2);
      background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
      color: var(--white) !important;
      box-shadow: 0 4px 15px rgba(224, 159, 62, 0.2) !important;
    }

    .header__cta:hover {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
      box-shadow: 0 6px 20px rgba(224, 159, 62, 0.3) !important;
      transform: translateY(-2px) !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      gap: 5px;
      border-radius: var(--radius-md);
      transition: background var(--duration-fast) var(--ease-out);
    }

    .hamburger:hover {
      background: var(--off-white);
    }

    .hamburger__line {
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all var(--duration-normal) var(--ease-out);
      transform-origin: center;
    }

    .hamburger.is-open .hamburger__line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open .hamburger__line:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.is-open .hamburger__line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Drawer */
    .mobile-drawer {
      position: fixed;
      top: var(--header-height);
      left: auto;
      right: 0;
      width: 80vw;
      max-width: 320px;
      bottom: 0;
      z-index: 999;
      background: var(--white);
      padding: var(--sp-4) var(--sp-3);
      transform: translateX(100%);
      opacity: 0;
      transition: transform var(--duration-slow) var(--ease-in-out), opacity var(--duration-normal) var(--ease-out);
      overflow-y: auto;
      box-shadow: -10px 0 30px rgba(16,40,74,0.12);
    }

    .mobile-drawer.is-open {
      transform: translateX(0);
      opacity: 1;
    }

    .mobile-drawer__nav {
      display: flex;
      flex-direction: column;
      gap: var(--sp-1);
    }

    .mobile-drawer__link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      font-size: 16px;
      font-weight: 500;
      color: var(--navy);
      background: var(--off-white);
      border-radius: var(--radius-full);
      margin-bottom: var(--sp-1);
      transition: color var(--duration-fast) var(--ease-out);
      position: relative;
      z-index: 1;
      overflow: hidden;
      width: max-content !important;
    }

    .mobile-drawer__link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -120%;
      width: 120%;
      height: 100%;
      border-radius: 0 100px 100px 0;
      background: var(--cream);
      z-index: -1;
      transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-drawer__link:hover {
      color: var(--navy-dark);
    }

    .mobile-drawer__link:hover::before {
      left: 0;
    }

    .mobile-drawer__link.is-active {
      color: var(--white) !important;
      font-weight: 600;
      background: var(--off-white);
    }

    .mobile-drawer__link.is-active::before {
      background: var(--navy);
      border-radius: 0 100px 100px 0;
      left: 0;
      animation: activeWaterFillLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    .mobile-drawer__link.is-active:hover::before {
      background: var(--navy);
      left: 0;
    }

    .mobile-drawer__link.is-active:hover {
      color: var(--white);
    }

    .mobile-drawer__cta {
      margin-top: var(--sp-4);
      display: inline-flex !important;
      width: max-content !important;
      margin-left: 20px !important;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
      color: var(--white) !important;
      box-shadow: 0 4px 15px rgba(224, 159, 62, 0.2) !important;
    }

    .mobile-drawer__cta:hover {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
      box-shadow: 0 6px 20px rgba(224, 159, 62, 0.3) !important;
      transform: translateY(-2px) !important;
    }

    /* ═════════════════════════════════════════
       3.2 — HERO SLIDER
    ═════════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      aspect-ratio: 2048 / 920;
      background: #ffffff url('https://bjjdistribution.co.uk/wp-content/uploads/2026/07/banner101-scaled-1.png') no-repeat center top;
      background-size: 100% 100%;
      display: flex;
      align-items: flex-end;
      padding-top: var(--header-height);
      overflow: hidden;
    }

    /* Subtle decorative background elements */
    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(198,166,100,0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(19,41,75,0.04) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
      gap: clamp(var(--sp-4), 4vw, var(--sp-8));
      align-items: flex-end;
      padding: var(--sp-12) 0 var(--sp-3) 0;
    }

    /* Slider */
    .slider {
      position: relative;
      overflow: hidden;
    }

    .slider__track {
      display: flex;
      transition: transform var(--duration-slow) var(--ease-in-out);
    }

    .slider__slide {
      min-width: 100%;
      opacity: 0.3;
      transition: opacity var(--duration-slow) var(--ease-out);
    }

    .slider__slide.is-active {
      opacity: 1;
    }

    .slide__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(19, 41, 75, 0.08);
      color: var(--navy);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: var(--sp-3);
    }

    .slide__eyebrow::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--navy);
      box-shadow: 0 0 0 4px rgba(19, 41, 75, 0.12);
    }

    .slide__heading {
      font-family: var(--font-serif);
      font-size: clamp(40px, 3.75vw, 54px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -.025em;
      color: var(--navy);
      margin-bottom: var(--sp-3);
      min-height: 2.2em;
      max-width: 760px;
    }

    .hero-title-line {
      display: block;
      white-space: nowrap;
    }

    .slide__text {
      font-size: clamp(16px, 1.1vw, 18px);
      line-height: 1.75;
      color: var(--charcoal-light);
      margin-bottom: var(--sp-5);
      max-width: 670px;
      min-height: 3.5em;
    }

    .slide__buttons {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-2);
    }

    /* Slider Controls */
    .slider__controls {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      margin-top: var(--sp-6);
    }

    .slider__dots {
      display: flex;
      gap: 10px;
    }

    .slider__dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 1.5px solid var(--gold);
      background: transparent;
      transition: all var(--duration-normal) var(--ease-out);
      cursor: pointer;
      padding: 0;
    }

    .slider__dot.is-active {
      background: var(--gold);
      box-shadow: 0 0 8px rgba(198,166,100,0.4);
    }

    .slider__dot:hover:not(.is-active) {
      background: rgba(198,166,100,0.3);
    }

    .slider__arrows {
      display: flex;
      gap: 8px;
    }

    .slider__arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--charcoal-light);
      transition: all var(--duration-fast) var(--ease-out);
    }

    .slider__arrow:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(198,166,100,0.05);
    }

    .slider__arrow svg {
      width: 16px;
      height: 16px;
    }

    /* Hero Visual — CSS Beauty Product Illustration */
    .hero__visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 480px;
    }

    .hero__visual-bg {
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: linear-gradient(145deg, rgba(19,41,75,0.04), rgba(198,166,100,0.06));
      border: 1px solid rgba(198,166,100,0.1);
    }

    .hero__product-group {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 20px;
    }

    /* Stylized bottle 1 — tall serum */
    .bottle-serum {
      width: 56px;
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    .bottle-serum__dropper {
      width: 8px;
      height: 28px;
      background: linear-gradient(180deg, var(--gold-dark), var(--gold));
      margin: 0 auto;
      border-radius: 4px 4px 0 0;
    }

    .bottle-serum__neck {
      width: 14px;
      height: 10px;
      background: var(--navy);
      margin: 0 auto;
      border-radius: 2px 2px 0 0;
    }

    .bottle-serum__body {
      width: 52px;
      height: 120px;
      background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: 8px 8px 6px 6px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .bottle-serum__body::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 8px;
      width: 14px;
      height: 50px;
      background: rgba(255,255,255,0.08);
      border-radius: 4px;
    }

    .bottle-serum__label {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 28px;
      height: 28px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bottle-serum__label::after {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
    }

    /* Stylized jar */
    .jar-cream {
      width: 80px;
      position: relative;
      animation: float 6s ease-in-out infinite 1s;
    }

    .jar-cream__lid {
      width: 72px;
      height: 18px;
      background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
      margin: 0 auto;
      border-radius: 6px 6px 0 0;
    }

    .jar-cream__body {
      width: 80px;
      height: 80px;
      background: linear-gradient(180deg, #F8F6F3, #EDE9E1);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 10px 10px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .jar-cream__body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 20px;
      background: linear-gradient(180deg, rgba(198,166,100,0.15), transparent);
    }

    .jar-cream__label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-serif);
      font-size: 10px;
      font-weight: 500;
      color: var(--navy);
      letter-spacing: 2px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* Stylized bottle 2 — pump */
    .bottle-pump {
      width: 52px;
      position: relative;
      animation: float 6s ease-in-out infinite 2s;
    }

    .bottle-pump__head {
      width: 24px;
      height: 8px;
      background: var(--gold);
      margin: 0 auto;
      border-radius: 4px 4px 0 0;
    }

    .bottle-pump__tube {
      width: 6px;
      height: 16px;
      background: linear-gradient(180deg, var(--gold), var(--gold-dark));
      margin: 0 auto;
    }

    .bottle-pump__neck {
      width: 18px;
      height: 8px;
      background: var(--navy);
      margin: 0 auto;
      border-radius: 2px;
    }

    .bottle-pump__body {
      width: 48px;
      height: 110px;
      background: linear-gradient(135deg, #F8F6F3, #E8E4DC);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 8px 8px;
      margin: 0 auto;
      position: relative;
    }

    .bottle-pump__body::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 6px;
      width: 10px;
      height: 60px;
      background: rgba(198,166,100,0.1);
      border-radius: 4px;
    }

    .bottle-pump__stripe {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 2px;
      background: var(--gold);
      border-radius: 1px;
    }

    /* Small round bottle */
    .bottle-round {
      width: 44px;
      position: relative;
      animation: float 6s ease-in-out infinite 0.5s;
      align-self: center;
    }

    .bottle-round__cap {
      width: 20px;
      height: 12px;
      background: var(--navy);
      margin: 0 auto;
      border-radius: 4px 4px 0 0;
    }

    .bottle-round__body {
      width: 44px;
      height: 70px;
      background: linear-gradient(180deg, var(--gold), var(--gold-dark));
      border-radius: 8px 8px 12px 12px;
      margin: 0 auto;
      position: relative;
    }

    .bottle-round__body::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 8px;
      width: 10px;
      height: 30px;
      background: rgba(255,255,255,0.15);
      border-radius: 4px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* Decorative dots */
    .hero__dot {
      position: absolute;
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.3;
    }

    .hero__dot:nth-child(1) { top: 15%; right: 20%; animation: float 5s ease-in-out infinite; }
    .hero__dot:nth-child(2) { bottom: 25%; left: 10%; animation: float 7s ease-in-out infinite 1s; }
    .hero__dot:nth-child(3) { top: 40%; right: 8%; width: 4px; height: 4px; animation: float 4s ease-in-out infinite 2s; }

    /* ═════════════════════════════════════════
       3.3 — TRUST BAR
    ═════════════════════════════════════════ */
    .trust-bar {
      background: var(--navy);
      padding: var(--sp-5) 0;
      position: relative;
      z-index: 3;
    }

    .trust-bar__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-4);
    }

    .trust-bar__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--sp-1);
    }

    .trust-bar__icon {
      width: 36px;
      height: 36px;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .trust-bar__title {
      font-family: var(--font-serif);
      font-size: 16px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.3;
    }

    .trust-bar__text {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.5;
    }

    /* ═════════════════════════════════════════
       3.4 — TWO-SIDED VALUE SECTION
    ═════════════════════════════════════════ */
    .two-sided {
      padding: var(--sp-16) 0;
      background: var(--white);
    }

    .two-sided__header {
      text-align: center;
      margin-bottom: var(--sp-8);
    }

    .two-sided__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-4);
    }

    .value-card {
      padding: var(--sp-8);
      border-radius: var(--radius-xl);
      transition: all var(--duration-normal) var(--ease-out);
      position: relative;
      overflow: hidden;
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform var(--duration-normal) var(--ease-out);
      transform-origin: left;
    }

    .value-card:hover::before {
      transform: scaleX(1);
    }

    .value-card--dark {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
    }

    .value-card--dark:hover {
      box-shadow: 0 12px 48px rgba(19,41,75,0.25);
      transform: translateY(-4px);
    }

    .value-card--light {
      background: var(--off-white);
      border: 1px solid var(--border);
    }

    .value-card--light:hover {
      box-shadow: var(--shadow-xl);
      transform: translateY(-4px);
      border-color: transparent;
    }

    .value-card__icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--sp-4);
    }

    .value-card--dark .value-card__icon {
      background: rgba(198,166,100,0.12);
    }

    .value-card--light .value-card__icon {
      background: rgba(19,41,75,0.06);
    }

    .value-card__icon svg {
      width: 26px;
      height: 26px;
    }

    .value-card--dark .value-card__icon svg {
      color: var(--gold);
    }

    .value-card--light .value-card__icon svg {
      color: var(--navy);
    }

    .value-card__title {
      font-family: var(--font-serif);
      font-size: 26px;
      font-weight: 500;
      margin-bottom: var(--sp-4);
      line-height: 1.25;
    }

    .value-card--light .value-card__title {
      color: var(--navy);
    }

    .value-card__list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: var(--sp-6);
    }

    .value-card__list-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      line-height: 1.6;
    }

    .value-card--dark .value-card__list-item {
      color: rgba(255,255,255,0.75);
    }

    .value-card--light .value-card__list-item {
      color: var(--charcoal-light);
    }

    .value-card__check {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 2px;
    }

    .value-card--dark .value-card__check {
      color: var(--gold);
    }

    .value-card--light .value-card__check {
      color: var(--gold-dark);
    }

    /* ═════════════════════════════════════════
       3.5 — BRANDS WE DISTRIBUTE
    ═════════════════════════════════════════ */
    .brands {
      padding: var(--sp-16) 0;
      background: var(--off-white);
    }

    .brands__header {
      text-align: center;
      margin-bottom: var(--sp-8);
    }

    .brands__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-3);
      margin-bottom: var(--sp-6);
    }

    /* BRAND LOGO — Replace each .brand-logo with <img> tags for real logos */
    .brand-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      padding: var(--sp-2) var(--sp-3);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 500;
      color: var(--charcoal-light);
      letter-spacing: 0.5px;
      filter: grayscale(100%) opacity(0.5);
      transition: all var(--duration-normal) var(--ease-out);
      cursor: default;
    }

    .brand-logo:hover {
      filter: grayscale(0%) opacity(1);
      border-color: var(--gold);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    /* Marquee */
    .brands__marquee {
      overflow: hidden;
      padding: var(--sp-3) 0;
      margin-bottom: var(--sp-6);
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }

    .brands__marquee-track {
      display: flex;
      gap: var(--sp-3);
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    .brands__marquee-track:hover {
      animation-play-state: paused;
    }

    .brands__marquee-item {
      flex-shrink: 0;
      padding: 12px 28px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      font-family: var(--font-serif);
      font-size: 14px;
      font-weight: 500;
      color: var(--charcoal-light);
      white-space: nowrap;
      filter: grayscale(100%) opacity(0.4);
      transition: all var(--duration-normal) var(--ease-out);
    }

    .brands__marquee-item:hover {
      filter: grayscale(0%) opacity(1);
      color: var(--navy);
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .brands__cta {
      text-align: center;
    }

    /* ═════════════════════════════════════════
       3.6 — WHY CHOOSE US
    ═════════════════════════════════════════ */
    .why-us {
      padding: var(--sp-16) 0;
      background: var(--white);
    }

    .why-us__header {
      text-align: center;
      margin-bottom: var(--sp-10);
    }

    .why-us__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-4);
    }

    .why-card {
      text-align: center;
      padding: var(--sp-5) var(--sp-3);
      border-radius: var(--radius-lg);
      transition: all var(--duration-normal) var(--ease-out);
    }

    .why-card:hover {
      background: var(--off-white);
      transform: translateY(-4px);
    }

    .why-card__icon {
      width: 56px;
      height: 56px;
      margin: 0 auto var(--sp-3);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(198,166,100,0.08);
      color: var(--gold);
      transition: all var(--duration-normal) var(--ease-out);
    }

    .why-card:hover .why-card__icon {
      background: var(--gold);
      color: var(--white);
      box-shadow: 0 6px 20px rgba(19, 41, 75, 0.15);
    }

    .why-card__icon svg {
      width: 26px;
      height: 26px;
    }

    .why-card__title {
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: var(--sp-2);
      line-height: 1.3;
    }

    .why-card__text {
      font-size: 14px;
      color: var(--charcoal-light);
      line-height: 1.7;
    }

    /* ═════════════════════════════════════════
       3.7 — HOW IT WORKS
    ═════════════════════════════════════════ */
    .how-it-works {
      padding: var(--sp-16) 0;
      background: var(--off-white);
    }

    .how-it-works__header {
      text-align: center;
      margin-bottom: var(--sp-10);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-4);
      position: relative;
    }

    /* Gold connecting line */
    .steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(16.67% + 20px);
      right: calc(16.67% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      opacity: 0.3;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step__number {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--sp-4);
      font-family: var(--font-serif);
      font-size: 24px;
      font-weight: 500;
      color: var(--gold);
      position: relative;
      z-index: 2;
      transition: all var(--duration-normal) var(--ease-out);
    }

    .step:hover .step__number {
      background: var(--gold);
      color: var(--white);
      box-shadow: 0 6px 20px rgba(19, 41, 75, 0.15);
    }

    .step__title {
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 500;
      color: var(--navy);
      margin-bottom: var(--sp-2);
    }

    .step__text {
      font-size: 14px;
      color: var(--charcoal-light);
      line-height: 1.7;
      max-width: 280px;
      margin: 0 auto;
    }

    /* ═════════════════════════════════════════
       3.8 — STATS STRIP
    ═════════════════════════════════════════ */
    .stats {
      background: var(--navy);
      padding: var(--sp-10) 0;
    }

    .stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-4);
      text-align: center;
    }

    .stat {
      position: relative;
    }

    .stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.1);
    }

    .stat__number {
      font-family: var(--font-serif);
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 500;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .stat__suffix {
      font-family: var(--font-serif);
      font-size: clamp(24px, 3vw, 32px);
      color: var(--gold-light);
    }

    .stat__label {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: var(--sp-1);
    }

    /* ═════════════════════════════════════════
       3.9 — TESTIMONIALS
    ═════════════════════════════════════════ */
    .testimonials {
      padding: var(--sp-16) 0;
      background: var(--white);
    }

    .testimonials__header {
      text-align: center;
      margin-bottom: var(--sp-10);
    }

    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-4);
    }

    .testimonial {
      padding: var(--sp-6);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      transition: all var(--duration-normal) var(--ease-out);
      position: relative;
    }

    .testimonial:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: transparent;
    }

    .testimonial__quote-mark {
      position: absolute;
      top: 20px;
      right: 24px;
      font-family: var(--font-serif);
      font-size: 60px;
      color: var(--gold);
      opacity: 0.15;
      line-height: 1;
    }

    .testimonial__text {
      font-size: 15px;
      line-height: 1.8;
      color: var(--charcoal-light);
      margin-bottom: var(--sp-5);
      position: relative;
      z-index: 1;
      font-style: italic;
    }

    .testimonial__author {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
    }

    .testimonial__avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--off-white);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .testimonial__avatar svg {
      width: 20px;
      height: 20px;
      color: var(--charcoal-light);
    }

    .testimonial__name {
      font-weight: 600;
      font-size: 14px;
      color: var(--navy);
    }

    .testimonial__role {
      font-size: 12px;
      color: var(--charcoal-light);
    }

    /* ═════════════════════════════════════════
       3.10 — FINAL CTA
    ═════════════════════════════════════════ */
    .final-cta {
      padding: var(--sp-16) 0;
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(198,166,100,0.08) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
    }

    .final-cta__inner {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .final-cta__heading {
      font-family: var(--font-serif);
      font-size: clamp(30px, 4.5vw, 48px);
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: var(--sp-3);
    }

    .final-cta__text {
      font-size: 17px;
      color: rgba(255,255,255,0.6);
      max-width: 560px;
      margin: 0 auto var(--sp-6);
      line-height: 1.7;
    }

    .final-cta__buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--sp-3);
    }

    /* ═════════════════════════════════════════
       3.11 — FOOTER
    ═════════════════════════════════════════ */
    .footer {
      background: var(--navy-dark);
      padding-top: var(--sp-12);
      color: rgba(255,255,255,0.5);
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: var(--sp-8);
      padding-bottom: var(--sp-10);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer__brand .logo {
      margin-bottom: var(--sp-3);
    }

    .footer__brand .logo-name {
      color: var(--white);
    }

    .footer__brand-text {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .footer__column-title {
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: var(--sp-4);
    }

    .footer__links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer__link {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      transition: all var(--duration-fast) var(--ease-out);
    }

    .footer__link:hover {
      color: var(--gold);
      padding-left: 4px;
    }

    .footer__contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      margin-bottom: 14px;
      line-height: 1.6;
    }

    .footer__contact-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 3px;
      color: var(--gold);
    }

    .footer__contact-text {
      max-width: 280px;
      margin: 0 0 18px;
      color: rgba(255,255,255,0.58);
      font-size: 14px;
      line-height: 1.7;
    }

    .footer__contact-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 20px;
      border-radius: var(--radius-full);
      background: var(--gold);
      color: var(--navy-dark);
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(228, 163, 66, .22);
      transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
    }

    .footer__contact-button:hover {
      background: var(--gold-light);
      color: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(228, 163, 66, .30);
    }

    .footer__bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--sp-4) 0;
      font-size: 13px;
      text-align: center;
    }

    /* ═════════════════════════════════════════
       RESPONSIVE
    ═════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero__inner {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
        text-align: center;
      }

      .slide__text {
        margin-left: auto;
        margin-right: auto;
      }

      .slide__buttons {
        justify-content: center;
      }

      .slider__controls {
        justify-content: center;
      }

      .hero__visual {
        min-height: 320px;
      }

      .hero__visual-bg {
        width: 300px;
        height: 300px;
      }

      .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-5);
      }

      .two-sided__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
      }

      .brands__grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps::before {
        display: none;
      }

      .steps {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
        max-width: 400px;
        margin: 0 auto;
      }

      .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-6);
      }

      .stat:not(:last-child)::after {
        display: none;
      }

      .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
      }

      .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-6);
      }
    }

    @media (max-width: 768px) {
      :root {
        --header-height: 72px;
        --header-height-scrolled: 72px;
      }

      .header .header__inner {
        position: relative;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding-left: 24px;
        padding-right: 76px;
      }

      .nav {
        display: none;
      }

      .header__cta {
        display: none;
      }

      .hamburger {
        display: flex !important;
        position: absolute !important;
        right: 24px !important;
        top: 50% !important;
        z-index: 1002;
        transform: translateY(-50%) !important;
        margin: 0 !important;
      }

      .mobile-drawer {
        top: var(--header-height);
      }

      .hero {
        min-height: auto;
        aspect-ratio: auto;
        background-size: cover;
        padding-top: 112px !important;
        padding-bottom: var(--sp-6);
      }

      .hero__inner {
        padding: var(--sp-4) 0;
      }

      .slide__heading {
        font-size: clamp(28px, 7vw, 38px);
      }

      .slide__text {
        font-size: 15px;
      }

      .hero__visual {
        min-height: 260px;
      }

      .hero__visual-bg {
        width: 240px;
        height: 240px;
      }

      .bottle-serum { transform: scale(0.8); }
      .jar-cream { transform: scale(0.8); }
      .bottle-pump { transform: scale(0.8); }
      .bottle-round { transform: scale(0.8); }

      .trust-bar__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-4);
      }

      .trust-bar__title {
        font-size: 14px;
      }

      .brands__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-us__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: var(--sp-3);
      }

      .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-5);
      }

      .final-cta__buttons {
        flex-direction: column;
        align-items: center;
      }

      .final-cta__buttons .btn {
        width: 100%;
        max-width: 320px;
      }

      .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--sp-6);
      }

      .footer__bottom {
        flex-direction: column;
        gap: var(--sp-2);
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 var(--sp-2);
      }

      .value-card {
        padding: var(--sp-5) var(--sp-4);
      }

      .btn {
        padding: 12px 24px;
        font-size: 13px;
      }

      .brands__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-2);
      }

      .brand-logo {
        height: 64px;
        font-size: 14px;
      }
    }

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }

      .brands__marquee-track {
        animation: none;
      }
    }

/* WordPress compatibility */
body.admin-bar .header { top: 32px; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
@media (max-width: 782px) { body.admin-bar .header { top: 46px; } }

/* Logo image custom styles */
.logo-image {
  height: 76px;
  width: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .logo-image {
    height: 52px;
  }
}

/* Header container shifts (moves logo/CTA outward when top, aligns boxed when scrolled) */
@media (min-width: 769px) {
  .header .container {
    max-width: 1500px;
    padding: 0 var(--sp-4);
    transition: max-width var(--duration-normal) var(--ease-out), padding var(--duration-normal) var(--ease-out);
  }
  .header.is-past-hero .container {
    max-width: 1300px;
    padding: 0 var(--sp-3);
  }
  .header.is-past-hero .nav {
    gap: 10px;
  }
  .header.is-past-hero .nav__link {
    gap: 3px;
  }
}


/* =========================================================
   SCOPED VARIABLES FOR NEW HOMEPAGE SECTIONS
   ========================================================= */
.audience, .solutions, .process, .categories, .why, .split-audience, .statement, .final-cta, .btn-primary, .btn-secondary, .btn-navy, .cta-box, .accordion-item {
  --navy: #10284a;
  --navy-2: #061833;
  --navy-3: #193760;
  --gold: #E4A342;
  --gold-2: #f7b84f;
  --cream: #fbf5ea;
  --cream-2: #fff9f0;
  --beige: #efe1cd;
  --line: rgba(16, 40, 74, .12);
  --shadow: 0 22px 70px rgba(16, 40, 74, .14);
  --soft-shadow: 0 14px 45px rgba(16, 40, 74, .10);
  --gold-shadow: 0 16px 36px rgba(228, 163, 66, .28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1280px;
  --font-body: "Lora", Georgia, serif;
  --font-display: "Lora", Georgia, serif;
}

/* Global Font definitions for fallback */
:root {
  --font-body: "Lora", Georgia, serif;
  --font-display: "Lora", Georgia, serif;
}

/* Ensure reveal.visible also supports reveal.is-visible */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: #fff;
      box-shadow: var(--gold-shadow);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 48px rgba(228, 163, 66, .34);
    }

    .btn-secondary {
      color: var(--gold);
      background: rgba(255, 255, 255, .55);
      border-color: rgba(228, 163, 66, .45);
    }

    .btn-secondary:hover {
      color: var(--navy);
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: var(--soft-shadow);
    }

    .btn-navy {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 18px 42px rgba(16, 40, 74, .20);
    }

    .btn-navy:hover {
      transform: translateY(-3px);
      background: var(--navy-2);
    }



    .audience {
      background: #fffdf9;
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .audience-card {
      position: relative;
      min-height: 360px;
      padding: 38px;
      border-radius: var(--radius-xl);
      background-color: #fffcf8;
      border: 1px solid rgba(16, 40, 74, .10);
      box-shadow: var(--soft-shadow);
      overflow: hidden;
      transition: transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  box-shadow 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  border-color 1.2s ease-out, 
                  background-color 1.2s ease-out;
    }

    .audience-card:hover,
    .audience-card.is-active {
      background-color: var(--navy) !important;
      border-color: var(--navy) !important;
      transform: translateY(-8px);
      box-shadow: 0 20px 42px rgba(11, 29, 61, 0.25);
      transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  border-color .4s ease-in, 
                  background-color .4s ease-in;
    }

    .audience-card:hover h3,
    .audience-card.is-active h3 {
      color: var(--gold) !important;
    }

    .audience-card:hover p,
    .audience-card.is-active p {
      color: rgba(255, 255, 255, 0.8) !important;
    }

    .audience-card:hover .icon-box,
    .audience-card.is-active .icon-box {
      background: rgba(255, 255, 255, 0.12) !important;
      color: #ffffff !important;
    }

    .audience-card:hover .link-arrow,
    .audience-card.is-active .link-arrow {
      color: var(--gold) !important;
    }

    .audience-card:hover h3,
    .audience-card:hover p,
    .audience-card:hover .icon-box,
    .audience-card:hover .link-arrow,
    .audience-card.is-active h3,
    .audience-card.is-active p,
    .audience-card.is-active .icon-box,
    .audience-card.is-active .link-arrow {
      transition: color .4s ease-in, background .4s ease-in, border-color .4s ease-in;
    }

    .audience-card .icon-box,
    .audience-card h3,
    .audience-card p,
    .audience-card .link-arrow {
      position: relative;
      z-index: 2;
      transition: color 1.2s ease-out, background 1.2s ease-out, border-color 1.2s ease-out;
    }

    .audience-card::after {
      display: none;
    }

    .card-circle {
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(228, 163, 66, .12);
      pointer-events: none;
      z-index: 0;
      right: -72px;
      top: -80px;
      transform: none;
      transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  transform 0.4s ease;
    }

    .icon-box {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      background: rgba(228, 163, 66, .14);
      color: var(--gold);
      margin-bottom: 26px;
    }

    .audience-card h3 {
      margin-bottom: 16px;
      color: var(--navy) !important;
    }

    .audience-card p {
      max-width: 560px;
      margin-bottom: 28px;
    }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-weight: 850;
      transition: gap .2s ease, color .2s ease;
    }

    .audience-card .link-arrow {
      color: var(--navy) !important;
    }

    .link-arrow:hover {
      gap: 13px;
      color: var(--navy);
    }

    .solutions {
      background:
        linear-gradient(180deg, #fffdf9, #fbf5ea),
        radial-gradient(circle at 13% 12%, rgba(228, 163, 66, .12), transparent 30%);
    }

    .bento-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      grid-auto-rows: minmax(230px, auto);
      gap: 24px;
    }

    .solution-card {
      position: relative;
      padding: 30px;
      border-radius: 28px;
      background-color: #fffcf8;
      border: 1px solid rgba(16, 40, 74, .10);
      box-shadow: 0 14px 42px rgba(16, 40, 74, .08);
      overflow: hidden;
      transition: transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  box-shadow 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  border-color 1.2s ease-out, 
                  background-color 1.2s ease-out;
    }

    .solution-card.is-active {
      background-color: var(--navy) !important;
      border-color: var(--navy) !important;
      transform: translateY(-8px);
      box-shadow: 0 20px 42px rgba(11, 29, 61, 0.25);
      transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                  border-color .4s ease-in, 
                  background-color .4s ease-in;
    }

    .solution-card.large {
      grid-row: span 2;
      background-color: #fffcf8;
      border-color: rgba(228, 163, 66, .28);
    }

    .solution-card.wide {
      grid-column: span 2;
      background-color: #fffcf8;
    }

    .solution-card .icon-box {
      width: 58px;
      height: 58px;
      border-radius: 19px;
      margin-bottom: 22px;
    }

    .solution-card h3 {
      font-size: 25px;
      margin-bottom: 14px;
      color: var(--navy) !important;
    }

    .solution-card.is-active h3 {
      color: var(--gold) !important;
    }

    .solution-card p {
      font-size: 16px;
    }

    .solution-card.is-active p {
      color: rgba(255, 255, 255, 0.8) !important;
    }

    .solution-card.is-active .icon-box {
      background: rgba(255, 255, 255, 0.12) !important;
      color: #ffffff !important;
    }

    .solution-card .large-number {
      position: absolute;
      right: 20px;
      bottom: -34px;
      color: rgba(228, 163, 66, .12);
      font-size: 142px;
      font-weight: 900;
      line-height: 1;
      z-index: 1;
    }

    .solution-card.is-active .large-number {
      color: rgba(255, 255, 255, 0.05) !important;
    }

    .solution-card.is-active .mini-stat {
      background: rgba(255, 255, 255, 0.08) !important;
      border-color: rgba(255, 255, 255, 0.08) !important;
    }

    .solution-card.is-active .mini-stat strong {
      color: var(--gold) !important;
    }

    .solution-card.is-active .mini-stat span {
      color: rgba(255, 255, 255, 0.8) !important;
    }

    .solution-card .icon-box,
    .solution-card h3,
    .solution-card p,
    .solution-card .large-number,
    .solution-card .solutions-stats,
    .solution-card .mini-stat,
    .solution-card .mini-stat strong,
    .solution-card .mini-stat span {
      position: relative;
      z-index: 2;
      transition: color 1.2s ease-out, background 1.2s ease-out, border-color 1.2s ease-out;
    }

    .solution-card.is-active h3,
    .solution-card.is-active p,
    .solution-card.is-active .large-number,
    .solution-card.is-active .solutions-stats,
    .solution-card.is-active .mini-stat,
    .solution-card.is-active .mini-stat strong,
    .solution-card.is-active .mini-stat span,
    .solution-card.is-active .icon-box {
      transition: color .4s ease-in, background .4s ease-in, border-color .4s ease-in;
    }

    .large-number {
      position: absolute;
      right: 20px;
      bottom: -34px;
      color: rgba(228, 163, 66, .12);
      font-size: 142px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.08em;
      pointer-events: none;
    }

    .solutions-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 16px;
      margin-top: 30px;
      position: relative;
      z-index: 1;
    }

    .mini-stat {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(16, 40, 74, .08);
    }

    .mini-stat strong {
      display: block;
      color: var(--navy);
      font-size: 24px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .mini-stat span {
      color: #64748b;
      font-size: 12px;
      font-weight: 750;
    }

    .process {
      background: #fffdf9;
    }

    /* Responsive Horizontal Timeline */
    .process-timeline-container {
      position: relative;
      margin-top: 60px;
      padding: 20px 0;
    }

    /* Connecting Line (Desktop) */
    .timeline-line {
      position: absolute;
      top: 95px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: #e2e8f0;
      z-index: 1;
    }

    .timeline-line-progress {
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: var(--gold);
      transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Steps Grid (Desktop) */
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    /* Individual Step Card */
    .timeline-step {
      text-align: center;
      padding: 35px 20px;
      border-radius: 24px;
      background-color: rgba(19, 41, 75, 0);
      border: 1px solid transparent;
      box-shadow: none;
      cursor: pointer;
      transition: background-color 1.2s ease-out, border-color 1.2s ease-out, box-shadow 1.2s ease-out, transform 1.2s ease-out;
    }

    .timeline-step.is-active {
      background-color: var(--navy) !important;
      border-color: var(--navy) !important;
      box-shadow: 0 20px 48px rgba(11, 29, 61, 0.25);
      transition: background-color 0.4s ease-in, border-color 0.4s ease-in, box-shadow 0.4s ease-in, transform 0.4s ease-in;
    }

    /* Number Node */
    .step-node {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--navy);
      border: 2px solid var(--navy);
      box-shadow: 0 8px 24px rgba(19, 41, 75, 0.12);
      color: #ffffff;
      font-size: 22px;
      font-weight: 800;
      display: grid;
      place-items: center;
      margin: 0 auto 28px auto;
      transition: background 1.2s ease-out, border-color 1.2s ease-out, color 1.2s ease-out, box-shadow 1.2s ease-out;
    }

    .timeline-step.is-active .step-node {
      background: #ffffff !important;
      border-color: #ffffff !important;
      color: var(--navy) !important;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25) !important;
      transition: background 0.4s ease-in, border-color 0.4s ease-in, color 0.4s ease-in, box-shadow 0.4s ease-in;
    }

    /* Step Content Styles */
    .step-content h3 {
      font-size: 19px;
      margin-bottom: 12px;
      color: var(--gold);
      font-weight: 750;
      transition: color 1.2s ease-out;
    }

    .timeline-step.is-active .step-content h3 {
      color: var(--gold) !important;
      transition: color 0.4s ease-in;
    }

    .step-content p {
      font-size: 14.2px;
      color: #64748b;
      line-height: 1.6;
      max-width: 280px;
      margin: 0 auto;
      transition: color 1.2s ease-out;
    }

    .timeline-step.is-active .step-content p {
      color: rgba(255, 255, 255, 0.8) !important;
      transition: color 0.4s ease-in;
    }

    /* Responsive Media Queries (Mobile / Tablet) */
    @media (max-width: 991px) {
      .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
      .timeline-line {
        display: none;
      }
      .timeline-step {
        padding: 24px 16px;
      }
    }

    @media (max-width: 600px) {
      .process-timeline-container {
        padding-left: 20px;
      }
      .timeline-line {
        display: block;
        top: 80px;
        bottom: 80px;
        left: 76px;
        right: auto;
        width: 2px;
        height: auto;
      }
      .timeline-line-progress {
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .process-timeline {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .timeline-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        padding: 20px 16px;
        transform: none !important;
      }
      .step-node {
        margin: 0 20px 0 0;
        flex-shrink: 0;
      }
      .step-content p {
        margin: 0;
        max-width: none;
      }
    }

    .categories {
      background:
        radial-gradient(circle at 85% 10%, rgba(228, 163, 66, .12), transparent 28%),
        linear-gradient(180deg, #fbf5ea, #fffdf9);
    }



    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .category-card {
      position: relative;
      padding: 28px;
      min-height: 220px;
      border-radius: 28px;
      background: #fffcf8;
      border: 1px solid rgba(16, 40, 74, .10);
      box-shadow: 0 14px 42px rgba(16, 40, 74, .07);
      overflow: hidden;
      transition: transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  border-color 1.2s ease-out,
                  background-color 1.2s ease-out;
    }

    .category-card:hover {
      background-color: var(--navy) !important;
      border-color: var(--navy) !important;
      transform: translateY(-8px);
      box-shadow: 0 20px 42px rgba(11, 29, 61, 0.25);
      transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  border-color .4s ease-in,
                  background-color .4s ease-in;
    }

    .category-card::before {
      content: "";
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 22px;
      height: 7px;
      border-radius: 999px;
      background: rgba(228, 163, 66, .16);
      transition: background .4s ease;
    }

    .category-card::after {
      content: "";
      position: absolute;
      left: 28px;
      bottom: 22px;
      height: 7px;
      width: var(--progress, 44%);
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transition: opacity .4s ease, background .4s ease;
    }

    .category-card h3 {
      font-size: 24px;
      margin-bottom: 12px;
      color: var(--navy);
      transition: color 1.2s ease-out;
    }

    .category-card p {
      font-size: 15px;
      padding-bottom: 36px;
      transition: color 1.2s ease-out;
    }

    .category-card:hover h3 {
      color: var(--gold) !important;
      transition: color .4s ease-in;
    }

    .category-card:hover p {
      color: rgba(255, 255, 255, .8) !important;
      transition: color .4s ease-in;
    }

    .category-card:hover::before {
      background: rgba(255, 255, 255, .12);
    }

    .why {
      background: #fffdf9;
    }

    .why-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 48px;
      align-items: stretch;
    }

    .why-aside {
      position: sticky;
      top: 116px;
      align-self: stretch;
      height: 100%;
      min-height: 100%;
      padding: 36px;
      border-radius: var(--radius-xl);
      background: var(--navy);
      box-shadow: 0 30px 80px rgba(16, 40, 74, .24);
      overflow: hidden;
    }

    .why-aside::after {
      display: none;
    }

    .why-aside .card-circle {
      width: 320px;
      height: 320px;
      right: -118px;
      top: auto;
      bottom: -140px;
      background: rgba(228, 163, 66, .12);
      z-index: 0;
    }

    .why-aside .eyebrow {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, .10) !important;
      color: #fff !important;
    }

    .why-aside .eyebrow::before {
      background: var(--gold) !important;
      box-shadow: 0 0 0 4px rgba(228, 163, 66, .18) !important;
    }

    .why-aside h2,
    .why-aside p {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .why-typeword {
      display: inline-block;
      color: var(--gold);
      white-space: nowrap;
    }

    .why-typeword::after {
      content: "";
      display: inline-block;
      width: 2px;
      height: .9em;
      margin-left: 4px;
      background: currentColor;
      transform: translateY(.09em);
      animation: typeCaretBlink 1s steps(1) infinite;
    }

    .why-aside p {
      color: rgba(255,255,255,.75);
      margin-top: 20px;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid rgba(16, 40, 74, .12);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 12px 32px rgba(16, 40, 74, .06);
      overflow: hidden;
    }

    .accordion-trigger {
      width: 100%;
      min-height: 80px;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border: 0;
      background: transparent;
      color: var(--navy);
      cursor: pointer;
      text-align: left;
      font-size: 21px;
      font-weight: 850;
    }

    .accordion-trigger .plus {
      flex: 0 0 auto;
      position: relative;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(228, 163, 66, .14);
      color: var(--gold);
      font-size: 28px;
      line-height: 1;
      transition: transform .25s ease, background .25s ease;
    }

    .accordion-item.open .plus {
      transform: none;
      background: var(--gold);
      color: #fff;
      font-size: 0;
    }

    .accordion-item.open .plus::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 12px;
      height: 7px;
      box-sizing: border-box;
      border-left: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translate(-50%, -62%) rotate(-45deg);
    }

    .accordion-content {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .32s ease;
    }

    .accordion-item.open .accordion-content {
      grid-template-rows: 1fr;
    }

    .accordion-content-inner {
      overflow: hidden;
    }

    .accordion-content p {
      padding: 0 28px 28px;
      color: #5f6f84;
    }

    .split-audience {
      background: linear-gradient(180deg, #fbf5ea, #fffdf9);
    }

    .split-wrap {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .split-card {
      position: relative;
      min-height: 520px;
      padding: 42px;
      border-radius: 34px;
      background-color: #fffcf8;
      border: 1px solid rgba(16, 40, 74, .10);
      box-shadow: var(--soft-shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  border-color 1.2s ease-out,
                  background-color 1.2s ease-out;
    }

    .split-card.brand-side {
      background-color: #fffcf8;
    }

    .split-card.buyer-side {
      background-color: #fffcf8;
    }

    .split-card:hover,
    .split-card.is-active {
      background-color: var(--navy) !important;
      border-color: var(--navy) !important;
      transform: translateY(-8px);
      box-shadow: 0 20px 42px rgba(11, 29, 61, 0.25);
      transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  border-color .4s ease-in,
                  background-color .4s ease-in;
    }

    .split-card > :not(.card-circle) {
      position: relative;
      z-index: 2;
    }

    .split-card .card-circle {
      position: absolute;
      z-index: 0;
    }

    .split-card .eyebrow,
    .split-card h2,
    .split-card p,
    .split-card .feature-list li,
    .split-card .btn {
      transition: color 1.2s ease-out, background .4s ease, border-color .4s ease, box-shadow .4s ease;
    }

    .split-card:hover h2,
    .split-card.is-active h2 {
      color: var(--gold) !important;
    }

    .split-card:hover p,
    .split-card:hover .feature-list li,
    .split-card.is-active p,
    .split-card.is-active .feature-list li {
      color: rgba(255, 255, 255, 0.8) !important;
    }

    .split-card:hover .eyebrow,
    .split-card.is-active .eyebrow {
      background: rgba(255, 255, 255, 0.08) !important;
      color: #fff !important;
    }

    .split-card:hover .eyebrow::before,
    .split-card.is-active .eyebrow::before {
      background: var(--gold) !important;
      box-shadow: 0 0 0 4px rgba(228, 163, 66, .18) !important;
    }

    .split-card:hover .feature-list li::before,
    .split-card.is-active .feature-list li::before {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(228, 163, 66, .85);
    }

    .split-card:hover .btn,
    .split-card.is-active .btn {
      background: rgba(255, 255, 255, .08) !important;
      border: 1.5px solid rgba(255, 255, 255, .30) !important;
      color: #fff !important;
      box-shadow: none !important;
    }

    .split-card:hover .btn:hover {
      border-color: var(--gold) !important;
      color: var(--gold) !important;
      background: rgba(255, 255, 255, .05) !important;
    }

    .split-card h2 {
      font-size: clamp(31px, 3vw, 48px);
      margin-bottom: 18px;
    }

    .split-card p {
      max-width: 590px;
      margin-bottom: 28px;
    }

    .feature-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin: 28px 0 34px;
    }

    .feature-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: #344156;
      font-weight: 650;
    }

    .feature-list li::before {
      content: "";
      flex: 0 0 auto;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      margin-top: 3px;
      background: rgba(228, 163, 66, .18);
      border: 6px solid rgba(228, 163, 66, .70);
    }

    .statement {
      padding: 96px 0;
      background: var(--navy);
      overflow: hidden;
    }

    .statement-card {
      position: relative;
      padding: 72px;
      border-radius: 38px;
      background:
        radial-gradient(circle at 90% 20%, rgba(228, 163, 66, .20), transparent 25%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      border: 1px solid rgba(255,255,255,.12);
      text-align: center;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .16);
    }

    .statement-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 180px;
      height: 5px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: var(--gold);
    }

    .statement-card h2 {
      color: #fff;
      max-width: 980px;
      margin: 0 auto 22px;
      font-family: var(--font-display);
      font-size: clamp(34px, 4vw, 64px);
      letter-spacing: -.05em;
    }

    .statement-card p {
      color: rgba(255,255,255,.72);
      max-width: 760px;
      margin: 0 auto 34px;
    }

    .final-cta {
      background:
        radial-gradient(circle at 18% 20%, rgba(228, 163, 66, .16), transparent 28%),
        linear-gradient(180deg, #fffdf9, #fbf1e2);
    }

    .audience,
    .solutions,
    .categories,
    .split-audience,
    .why,
    .final-cta {
      background: #fffdf9;
    }

    .cta-box {
      position: relative;
      padding: 24px 48px 48px;
      border-radius: 42px;
      text-align: center;
      background: var(--navy);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 24px 58px rgba(11, 29, 61, 0.25);
      overflow: hidden;
    }

    .cta-box::before,
    .cta-box::after {
      display: none !important;
    }

    .cta-box > * {
      position: relative;
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }



    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-box .card-circle {
      position: absolute !important;
      right: -72px;
      top: -80px;
      z-index: 1 !important;
    }

    .cta-box h2 {
      max-width: 840px;
      margin: 0 auto 20px;
      color: #ffffff;
    }

    .cta-box p {
      max-width: 740px;
      margin: 0 auto 34px;
      color: rgba(255, 255, 255, 0.85);
    }

    .cta-box .eyebrow {
      background: rgba(255, 255, 255, 0.08) !important;
      color: #ffffff !important;
    }

    .cta-box .eyebrow::before {
      background: var(--gold) !important;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12) !important;
    }

    /* CTA Box Buttons */
    .cta-box .btn-primary,
    .cta-box .btn-navy,
    .cta-box .btn-secondary {
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      color: #ffffff;
      box-shadow: none;
    }

    .cta-box .btn-primary:hover,
    .cta-box .btn-navy:hover,
    .cta-box .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-3px);
      box-shadow: none;
    }



    .cta-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .site-footer {
      background: var(--navy-2);
      color: #fff;
      padding: 70px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .8fr .8fr 1fr;
      gap: 42px;
      padding-bottom: 46px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-logo .brand-text strong,
    .footer-logo .brand-text span {
      color: #fff;
    }

    .footer-col p,
    .footer-col a,
    .copyright {
      color: rgba(255,255,255,.67);
      font-size: 15px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 16px;
      letter-spacing: .02em;
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1180px) {
      .nav-menu {
        gap: 8px;
      }
      .nav-link {
        padding: 0 13px;
        font-size: 14px;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 34px;
      }
      .hero-copy {
        max-width: 900px;
        padding-bottom: 0;
      }
      .hero-visual {
        min-height: 520px;
        padding-bottom: 60px;
      }
      .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .solution-card.large,
      .solution-card.wide {
        grid-column: span 1;
        grid-row: span 1;
      }
    }

    @media (max-width: 980px) {
      .container {
        width: min(100% - 36px, var(--container));
      }
      .section {
        padding: 78px 0;
      }
      .mobile-menu-toggle {
        display: inline-flex;
      }
      .nav-menu {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 26px;
        background: rgba(255,255,255,.96);
        border: 1px solid rgba(16, 40, 74, .10);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease;
      }
      .nav-menu.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      .nav-link, .nav-cta {
        width: 100%;
        justify-content: center;
      }
      .trust-strip,
      .audience-grid,
      .split-wrap,
      .why-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .why-aside {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
      }
      .process-line {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 44px;
      }
      .process-line::before {
        left: 47px;
        right: auto;
        top: 40px;
        bottom: 40px;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(228,163,66,.50), transparent);
      }
      .step-card {
        display: grid;
        grid-template-columns: 94px 1fr;
        gap: 22px;
        align-items: center;
        text-align: left;
        padding: 0;
      }
      .step-number {
        margin: 0;
      }
      .step-card p {
        margin: 0;
        max-width: none;
      }
      .category-grid,
      .bento-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 720px) {
      h1 {
        font-size: clamp(40px, 12vw, 58px);
      }
      .hero {
        min-height: auto;
      }
      .hero-grid {
        min-height: auto;
      }
      .hero-copy {
        padding: 58px 0 20px;
      }
      .hero-actions,
      .cta-actions {
        align-items: stretch;
        flex-direction: column;
      }
      .btn {
        width: 100%;
      }
      .hero-visual {
        min-height: 420px;
        padding-bottom: 46px;
      }
      .retail-blur {
        inset: 0 -60px 40px -30px;
      }
      .product-stage {
        height: 390px;
        transform: scale(.78);
        transform-origin: center bottom;
      }
      .hero-mini-card {
        left: 26px;
        top: 6px;
        width: 210px;
      }
      .audience-card,
      .solution-card,
      .split-card,
      .why-aside,
      .statement-card,
      .cta-box {
        padding: 28px;
        border-radius: 26px;
      }
      .solutions-stats {
        grid-template-columns: 1fr;
      }
      .accordion-trigger {
        font-size: 18px;
        padding: 20px;
      }
      .accordion-content p {
        padding: 0 20px 22px;
      }
      .statement-card h2 {
        font-size: 34px;
      }
      .brand-text strong {
        font-size: 20px;
      }
      .brand-mark {
        width: 50px;
        height: 50px;
        font-size: 29px;
      }
    }

    @media (max-width: 480px) {
      .container {
        width: min(100% - 28px, var(--container));
      }
      .nav-wrap {
        min-height: 74px;
      }
      .brand-text span {
        font-size: 9px;
      }
      .section-header {
        margin-bottom: 36px;
      }
      .hero-copy .lead,
      p {
        font-size: 16px;
      }
      .trust-chip {
        padding: 13px;
      }
      .step-card {
        grid-template-columns: 70px 1fr;
      }
      .step-number {
        width: 70px;
        height: 70px;
        font-size: 23px;
      }
      .process-line::before {
        left: 35px;
      }
      .product-stage {
        transform: scale(.62);
        height: 330px;
      }
      .hero-mini-card {
        display: none;
      }
    }


    /* =========================================================
       Commercial typography refinement
       Goal: premium B2B website feel, not oversized mockup text
       Font system: refined display + clean UI sans
       ========================================================= */
    :root {
      --container: 1240px;
      --font-body: "Lora", Georgia, serif;
      --font-display: "Lora", Georgia, serif;
      --shadow: 0 18px 54px rgba(16, 40, 74, .12);
      --soft-shadow: 0 12px 34px rgba(16, 40, 74, .085);
      --gold-shadow: 0 12px 28px rgba(228, 163, 66, .24);
    }

    body {
      font-size: 16px;
      line-height: 1.62;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    .section {
      padding: 84px 0;
    }

    .section-header {
      max-width: 760px;
      margin-bottom: 44px;
    }

    .eyebrow {
      padding: 7px 14px;
      font-size: 11px;
      letter-spacing: .105em;
      margin-bottom: 14px;
      font-weight: 800;
    }

    h1, h2, h3, h4 {
      letter-spacing: -.032em;
      text-wrap: balance;
    }

    h1 {
      font-size: clamp(44px, 4.35vw, 64px);
      line-height: 1.03;
      letter-spacing: -.038em;
      font-weight: 700;
    }

    h2 {
      font-size: clamp(30px, 2.9vw, 44px);
      line-height: 1.12;
      font-weight: 800;
    }

    h3 {
      font-size: clamp(20px, 1.55vw, 24px);
      line-height: 1.2;
      font-weight: 800;
    }

    p {
      font-size: 15.5px;
      line-height: 1.72;
    }

    .lead {
      font-size: clamp(16px, 1.05vw, 18px);
      line-height: 1.7;
    }

    .btn {
      min-height: 48px;
      padding: 0 22px;
      font-size: 14px;
      font-weight: 800;
    }

    .site-header.scrolled {
      box-shadow: 0 10px 30px rgba(16, 40, 74, .07);
    }

    .nav-wrap {
      min-height: 76px;
    }

    .brand-mark {
      width: 52px;
      height: 52px;
      font-size: 29px;
    }

    .brand-mark::before {
      width: 39px;
      height: 39px;
    }

    .brand-text strong {
      font-size: 21px;
      letter-spacing: .005em;
    }

    .brand-text span {
      font-size: 10px;
      letter-spacing: .13em;
    }

    .nav-menu {
      gap: 10px;
    }

    .nav-link {
      min-height: 42px;
      padding: 0 15px;
      font-size: 14px;
      font-weight: 750;
    }

    .nav-cta {
      min-height: 44px;
      padding: 0 20px;
    }

    .hero {
      min-height: 760px;
      padding-top: 76px;
    }

    .hero::before {
      inset: 76px 0 0;
    }

    .hero-grid {
      min-height: calc(760px - 76px);
      gap: 48px;
    }

    .hero-copy {
      max-width: 660px;
      padding: 70px 0 40px;
    }

    .hero-copy h1 {
      max-width: 680px;
      margin-bottom: 20px;
    }

    .hero-copy .lead {
      max-width: 590px;
      margin-bottom: 28px;
      color: #344156;
    }

    .hero-actions {
      gap: 12px;
      margin-bottom: 26px;
    }

    .trust-strip {
      max-width: 650px;
      gap: 10px;
    }

    .trust-chip {
      padding: 12px;
      border-radius: 16px;
    }

    .trust-chip strong {
      font-size: 13px;
    }

    .trust-chip span {
      font-size: 11.5px;
    }

    .hero-visual {
      min-height: 555px;
      padding-bottom: 60px;
    }

    .product-stage {
      height: 470px;
      transform: scale(.94);
      transform-origin: center bottom;
    }

    .perfume::after {
      font-size: 18px;
    }

    .lipstick::after {
      font-size: 13px;
    }

    .cream-jar::after {
      font-size: 27px;
    }

    .bottle::after {
      font-size: 12px;
    }

    .intro-wrap,
    .why-grid,
    .split-wrap {
      gap: 28px;
    }

    .intro-card,
    .solution-card,
    .category-card,
    .split-card {
      box-shadow: var(--soft-shadow);
    }

    .intro-card {
      min-height: 320px;
      padding: 32px;
    }

    .intro-card p,
    .solution-card p,
    .category-card p,
    .step-card p,
    .accordion-content p,
    .footer-col p {
      font-size: 15px;
      line-height: 1.7;
    }

    .icon-box {
      width: 52px;
      height: 52px;
      border-radius: 17px;
    }

    .bento-grid {
      grid-auto-rows: minmax(205px, auto);
      gap: 20px;
    }

    .solution-card {
      padding: 26px;
      border-radius: 24px;
    }

    .solution-card .icon-box {
      width: 50px;
      height: 50px;
      margin-bottom: 18px;
    }

    .solution-card h3 {
      font-size: 21px;
      margin-bottom: 10px;
    }

    .solution-card p {
      font-size: 15px;
    }

    .large-number {
      font-size: 104px;
      bottom: -24px;
      opacity: .85;
    }

    .mini-stat {
      padding: 15px;
      border-radius: 16px;
    }

    .mini-stat strong {
      font-size: 20px;
    }

    .process-line {
      margin-top: 58px;
      gap: 18px;
    }

    .process-line::before {
      top: 39px;
    }

    .step-number {
      width: 78px;
      height: 78px;
      margin-bottom: 22px;
      font-size: 25px;
    }

    .step-card h3 {
      font-size: 19px;
      margin-bottom: 9px;
    }

    .category-grid {
      gap: 18px;
    }

    .category-card {
      min-height: 200px;
      padding: 24px;
      border-radius: 24px;
    }

    .category-card h3 {
      font-size: 21px;
      margin-bottom: 9px;
    }

    .why-aside {
      top: 100px;
      padding: 32px;
      border-radius: 28px;
    }

    .accordion {
      gap: 12px;
    }

    .accordion-item {
      border-radius: 20px;
    }

    .accordion-trigger {
      min-height: 68px;
      padding: 19px 24px;
      font-size: 18px;
      line-height: 1.25;
      font-weight: 800;
    }

    .accordion-trigger .plus {
      width: 32px;
      height: 32px;
      font-size: 24px;
    }

    .accordion-content p {
      padding: 0 24px 24px;
    }

    .split-card {
      min-height: 470px;
      padding: 36px;
      border-radius: 30px;
    }

    .split-card h2 {
      font-size: clamp(28px, 2.4vw, 40px);
      margin-bottom: 14px;
    }

    .feature-list {
      gap: 12px;
      margin: 24px 0 30px;
    }

    .feature-list li {
      font-size: 15px;
      line-height: 1.55;
    }

    .statement {
      padding: 78px 0;
    }

    .statement-card {
      padding: 60px 48px;
      border-radius: 32px;
    }

    .statement-card h2 {
      font-size: clamp(32px, 3.25vw, 52px);
      line-height: 1.08;
      letter-spacing: -.035em;
    }

    .cta-box {
      padding: 64px 42px;
      border-radius: 34px;
    }

    .footer {
      padding: 58px 0 26px;
    }

    @media (max-width: 1100px) {
      .section { padding: 74px 0; }
      .hero { min-height: auto; }
      .hero-grid { min-height: auto; gap: 30px; }
      .hero-copy { padding: 68px 0 18px; }
      .product-stage { transform: scale(.88); }
      .bento-grid { grid-template-columns: 1fr 1fr; }
      .solution-card.large, .solution-card.wide { grid-column: span 2; grid-row: auto; }
      .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 30px; }
      .timeline-line { display: none; }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 32px, var(--container)); }
      .section { padding: 60px 0; }
      .section-header { margin-bottom: 32px; }
      h1 { font-size: clamp(38px, 11vw, 52px); }
      h2 { font-size: clamp(27px, 8vw, 36px); }
      h3 { font-size: 20px; }
      p, .lead { font-size: 15px; }
      .btn { width: 100%; min-height: 48px; }
      .nav-wrap { min-height: 68px; }
      .brand-mark { width: 46px; height: 46px; font-size: 25px; }
      .brand-text strong { font-size: 18px; }
      .brand-text span { font-size: 8.5px; }
      .hero { padding-top: 68px; }
      .hero-copy { padding: 50px 0 10px; }
      .hero-actions { width: 100%; }
      .trust-strip { grid-template-columns: 1fr; }
      .product-stage { transform: scale(.72); height: 380px; }
      .hero-visual { min-height: 420px; padding-bottom: 34px; }
      .intro-card, .solution-card, .category-card, .split-card, .why-aside { padding: 24px; border-radius: 22px; }
      .bento-grid, .category-grid, .split-wrap, .why-grid, .process-timeline { grid-template-columns: 1fr; }
      .solution-card.large, .solution-card.wide { grid-column: auto; }
      .large-number { font-size: 82px; }
      .step-node { width: 68px; height: 68px; font-size: 20px; }
      .split-card { min-height: auto; }
      .statement-card, .cta-box { padding: 44px 24px; border-radius: 26px; }
    }

  


/* =========================================================
   SCOPED VARIABLES FOR NEW BRAND PAGE SECTIONS
   ========================================================= */
.brand-hero, .brand-growth, .brand-growth-card, .brand-categories, .brand-final-cta, .brand-bento-card, .brand-category-card, .brand-cta-card, .brand-accordion-item, .brand-cta-actions, .intro-panel, .problem-card, .process-step, .trust-card, .check-item, .quote-band {
  --navy: #10284a;
  --navy-2: #061833;
  --navy-3: #193760;
  --gold: #E4A342;
  --gold-2: #f5bc59;
  --cream: #fbf5ea;
  --cream-2: #fff9f0;
  --sand: #efe1cd;
  --white: #ffffff;
  --text: #1d2b40;
  --muted: #637083;
  --muted-2: #8792a3;
  --line: rgba(16, 40, 74, .12);
  --line-strong: rgba(16, 40, 74, .18);
  --shadow: 0 22px 70px rgba(16, 40, 74, .13);
  --soft-shadow: 0 14px 45px rgba(16, 40, 74, .09);
  --gold-shadow: 0 16px 36px rgba(228, 163, 66, .26);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1260px;
}

    .btn-light { color: #fff; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.08); }
    .btn-light:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); }

    .brand-hero {
      padding: var(--header-height) 0 0;
      min-height: auto;
      aspect-ratio: 2560 / 830;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 84% 48%, rgba(16,40,74,.14) 0, rgba(16,40,74,.055) 19%, transparent 39%),
        radial-gradient(circle at 65% 22%, rgba(228,163,66,.15) 0, rgba(228,163,66,.055) 24%, transparent 48%),
        radial-gradient(circle at 54% 5%, rgba(255,255,255,.94) 0, rgba(255,255,255,.30) 29%, transparent 55%),
        linear-gradient(125deg, #fffdf8 0%, #faf1e4 48%, #edddc6 100%);
    }

    .brand-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        repeating-linear-gradient(to right, transparent 0 27.5px, rgba(117,91,57,.34) 27.5px 28.5px, transparent 28.5px 56px),
        repeating-linear-gradient(to bottom, transparent 0 27.5px, rgba(117,91,57,.34) 27.5px 28.5px, transparent 28.5px 56px);
      -webkit-mask-image: radial-gradient(circle at 28px 28px, #000 0 6px, transparent 7px);
      -webkit-mask-size: 56px 56px;
      mask-image: radial-gradient(circle at 28px 28px, #000 0 6px, transparent 7px);
      mask-size: 56px 56px;
      opacity: .72;
      pointer-events: none;
    }

    .brand-hero:hover .fx-canvas { opacity: 1; }
    .brand-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; width: 100%; padding: 12px 0 18px; }
    .brand-hero-content { max-width: none; display: grid; grid-template-columns: minmax(0, 820px) minmax(260px, 320px); grid-template-areas: "eyebrow proof" "title proof" "description proof" "actions proof"; column-gap: clamp(24px, 4vw, 64px); align-items: start; }
    .brand-hero-content > .eyebrow { grid-area: eyebrow; justify-self: start; margin-bottom: 8px; }
    .brand-hero-content h1 { grid-area: title; max-width: 760px; font-size: clamp(36px, 2.6vw, 46px); line-height: 1.06; letter-spacing: -.025em; color: var(--navy); }
    .brand-hero-content .lead { grid-area: description; max-width: 720px; margin-top: 10px; font-size: 14.5px; line-height: 1.5; color: #394960; }
    .brand-hero-actions { grid-area: actions; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
    .brand-hero-actions .btn { min-height: 42px; padding-top: 9px; padding-bottom: 9px; }
    .brand-hero-actions .btn-primary { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: 0 12px 30px rgba(16,40,74,.18); }
    .brand-hero-actions .btn-primary:hover { background: linear-gradient(135deg, var(--navy-3), var(--navy)); box-shadow: 0 16px 38px rgba(16,40,74,.24); }
    .brand-hero-actions .btn-secondary { color: var(--navy); background: rgba(255,255,255,.48); border-color: rgba(16,40,74,.55); }
    .brand-hero-actions .btn-secondary:hover { color: var(--gold); background: rgba(255,255,255,.72); border-color: var(--gold); box-shadow: 0 14px 34px rgba(16,40,74,.12); }
    .brand-hero-proof { grid-area: proof; align-self: center; width: 100%; display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 0; }
    .brand-hero-proof .proof-card { position: relative; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 10px; min-height: 52px; padding: 8px 10px; border: 1px solid rgba(16,40,74,.10); background: rgba(255,255,255,.72); backdrop-filter: blur(12px); border-radius: 14px; box-shadow: 0 14px 34px rgba(16,40,74,.08); transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease; }
    .brand-hero-proof .proof-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.90); border-color: rgba(228,163,66,.55); box-shadow: 0 18px 44px rgba(16,40,74,.14), 0 8px 24px rgba(228,163,66,.16); }
    .brand-hero-proof .proof-card::before { content: ""; grid-column: 1; grid-row: 1 / 3; align-self: center; width: 30px; height: 30px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); border: 1px solid rgba(255,255,255,.48); box-shadow: 0 10px 22px rgba(228,163,66,.32); transition: transform .3s ease, box-shadow .3s ease; }
    .brand-hero-proof .proof-card::after { content: ""; position: absolute; left: 27px; top: 50%; width: 10px; height: 6px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: translate(-50%, -62%) rotate(-45deg); }
    .brand-hero-proof .proof-card:hover::before { transform: scale(1.08) rotate(-4deg); box-shadow: 0 12px 26px rgba(228,163,66,.42); }
    .brand-hero-proof .proof-card strong { grid-column: 2; display: block; color: var(--navy-2); font-size: 14px; line-height: 1.1; margin-bottom: 0; }
    .brand-hero-proof .proof-card span { grid-column: 2; color: #46556b; font-size: 12px; line-height: 1.35; display: block; margin-top: 2px; }
    .brand-hero-visual { display: none !important; }

    .brand-hero-visual { min-height: 560px; position: relative; }
    .visual-stage { position: absolute; inset: 0; border-radius: 42px; background: rgba(255,255,255,.36); border: 1px solid rgba(255,255,255,.56); box-shadow: var(--shadow); overflow: hidden; }
    .visual-stage::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 22%, rgba(255,255,255,.80), transparent 33%), linear-gradient(145deg, rgba(255,255,255,.30), rgba(255,255,255,.06)); }
    .shelf-arch { position: absolute; right: -32px; top: 34px; width: 86%; height: 86%; border-radius: 44% 44% 0 0; border: 1px solid rgba(16,40,74,.10); background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.18)); }
    .product { position: absolute; bottom: 82px; border-radius: 22px; box-shadow: 0 24px 44px rgba(16,40,74,.18); border: 1px solid rgba(255,255,255,.65); }
    .bottle-tall { left: 78px; width: 92px; height: 270px; background: linear-gradient(165deg, #fff 0%, #f1eadf 42%, #d9c6ad 100%); }
    .bottle-tall::before { content: ""; position: absolute; top: -44px; left: 24px; width: 44px; height: 62px; border-radius: 12px 12px 6px 6px; background: linear-gradient(180deg, var(--navy), var(--navy-2)); }
    .bottle-tall::after { content: "SERUM"; position: absolute; left: 14px; right: 14px; top: 108px; padding: 11px 4px; border-radius: 13px; background: rgba(16,40,74,.08); color: var(--navy); font-size: 12px; font-weight: 900; text-align: center; letter-spacing: .16em; }
    .jar { left: 190px; width: 150px; height: 155px; background: linear-gradient(160deg, #fff 0%, #f8efe4 50%, #e1c7a6 100%); }
    .jar::before { content: ""; position: absolute; top: -28px; left: 16px; right: 16px; height: 42px; border-radius: 18px 18px 10px 10px; background: linear-gradient(180deg, var(--gold-2), var(--gold)); }
    .jar::after { content: "CREAM"; position: absolute; inset: 58px 20px auto; padding: 10px 6px; border-top: 1px solid rgba(16,40,74,.12); border-bottom: 1px solid rgba(16,40,74,.12); color: var(--navy); text-align: center; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
    .tube { right: 82px; width: 118px; height: 230px; border-radius: 58px 58px 24px 24px; background: linear-gradient(150deg, #fff 5%, #e9e1d6 56%, #c4d1df 100%); transform: rotate(-5deg); }
    .tube::after { content: "SPF"; position: absolute; left: 18px; right: 18px; bottom: 52px; padding: 10px 6px; border-radius: 999px; background: var(--navy); color: #fff; text-align: center; font-size: 13px; font-weight: 900; letter-spacing: .14em; }
    .gold-orbit { position: absolute; right: 48px; top: 82px; width: 152px; height: 152px; border-radius: 999px; border: 1px solid rgba(228,163,66,.34); box-shadow: inset 0 0 0 18px rgba(228,163,66,.09); }
    .floating-panel { position: absolute; left: 32px; top: 48px; width: 250px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.80); border: 1px solid rgba(16,40,74,.10); box-shadow: 0 20px 46px rgba(16,40,74,.13); backdrop-filter: blur(16px); }
    .floating-panel strong { display: block; color: var(--navy-2); font-size: 15px; margin-bottom: 7px; }
    .floating-panel span { display: block; color: var(--muted); font-size: 13px; line-height: 1.5; }
    .mini-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
    .mini-tag { padding: 7px 10px; border-radius: 999px; background: rgba(228,163,66,.13); color: #94611b; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
    .market-card { position: absolute; right: 28px; bottom: 28px; width: 248px; padding: 18px; border-radius: 24px; background: var(--navy); color: #fff; box-shadow: 0 24px 50px rgba(16,40,74,.20); }
    .market-card small { color: rgba(255,255,255,.65); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
    .market-card strong { display: block; margin-top: 8px; font-size: 28px; line-height: 1; letter-spacing: -.04em; }
    .market-card span { display: block; margin-top: 8px; color: rgba(255,255,255,.74); font-size: 13px; line-height: 1.5; }

    .split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center; }
    .intro-panel { padding: 34px; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--line); box-shadow: var(--soft-shadow); }
    .intro-list { display: grid; gap: 14px; margin-top: 24px; }
    .intro-item { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; padding: 18px; border-radius: 20px; background: #fffaf2; border: 1px solid rgba(228,163,66,.15); }
    .intro-icon { width: 46px; height: 46px; border-radius: 15px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 18px; font-weight: 900; }
    .intro-item p { font-size: 14px; margin-top: 5px; line-height: 1.65; }

    .brand-growth {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 6%, rgba(228,163,66,.13), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #fff 100%);
    }
    .brand-growth-header {
      max-width: 900px;
      margin: 0 auto 46px;
      text-align: center;
    }
    .brand-growth-header h2,
    .brand-growth-header .lead {
      margin-left: auto;
      margin-right: auto;
    }
    .brand-growth-header h2 { max-width: 820px; }
    .brand-growth-header .lead { max-width: 800px; margin-top: 16px; }
    .brand-growth-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    .brand-growth-card {
      position: relative;
      min-height: 310px;
      display: flex;
      flex-direction: column;
      padding: 30px;
      overflow: hidden;
      border: 1px solid rgba(16,40,74,.10);
      border-radius: 28px;
      background: #fffdf9;
      box-shadow: 0 14px 42px rgba(16,40,74,.07);
      transition: transform .55s cubic-bezier(.2,.8,.2,1), background .55s ease, border-color .55s ease, box-shadow .55s ease;
    }
    .brand-growth-card > * { position: relative; z-index: 1; }
    .brand-growth-card:hover,
    .brand-growth-card.is-active {
      transform: translateY(-7px);
      border-color: var(--navy);
      background: var(--navy);
      box-shadow: 0 24px 54px rgba(16,40,74,.22);
    }
    .brand-growth-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 30px;
    }
    .brand-growth-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 19px;
      color: var(--navy);
      background: rgba(228,163,66,.16);
      transition: color .45s ease, background .45s ease, transform .45s ease;
    }
    .brand-growth-icon svg {
      width: 27px;
      height: 27px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .brand-growth-card h3 {
      max-width: 290px;
      color: var(--navy);
      font-size: 23px;
      line-height: 1.2;
      transition: color .45s ease;
    }
    .brand-growth-card p {
      margin-top: 12px;
      padding-bottom: 28px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.65;
      transition: color .45s ease;
    }
    .brand-growth-progress {
      height: 7px;
      display: block;
      margin-top: auto;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(228,163,66,.15);
    }
    .brand-growth-progress span {
      width: 18%;
      height: 100%;
      display: block;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transition: width .65s cubic-bezier(.2,.8,.2,1);
    }
    .brand-growth-card:hover .brand-growth-icon,
    .brand-growth-card.is-active .brand-growth-icon {
      color: var(--navy);
      background: var(--gold);
      transform: rotate(-4deg) scale(1.06);
    }
    .brand-growth-card:hover h3,
    .brand-growth-card.is-active h3 { color: var(--gold-2); }
    .brand-growth-card:hover p,
    .brand-growth-card.is-active p { color: rgba(255,255,255,.78); }
    .brand-growth-card:hover .brand-growth-progress,
    .brand-growth-card.is-active .brand-growth-progress { background: rgba(255,255,255,.12); }
    .brand-growth-card:hover .brand-growth-progress span,
    .brand-growth-card.is-active .brand-growth-progress span { width: var(--growth-progress); }

    @media (max-width: 900px) {
      .brand-growth-grid { grid-template-columns: 1fr; }
      .brand-growth-card { min-height: 260px; }
      .brand-growth-card h3 { max-width: none; }
    }

    @media (max-width: 560px) {
      .brand-growth-header { margin-bottom: 34px; }
      .brand-growth-card { min-height: 250px; padding: 24px; border-radius: 24px; }
      .brand-growth-card-top { margin-bottom: 24px; }
    }

    .brand-challenges {
      --challenge-accent: #d96852;
      --challenge-accent-light: #f39a70;
      --challenge-accent-soft: rgba(217,104,82,.14);
      background:
        radial-gradient(circle at 12% 90%, rgba(217,104,82,.10), transparent 25%),
        linear-gradient(180deg, #fbf5ea, #fffaf3);
    }
    .brand-challenges .text-challenge { color: var(--challenge-accent); }
    .challenges-header { max-width: 820px; margin-left: auto; margin-right: auto; }
    .challenges-header h2 { max-width: 720px; }
    .challenges-header .lead { max-width: 760px; margin-top: 16px; }
    .problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .problem-card {
      position: relative;
      min-height: 292px;
      display: flex;
      flex-direction: column;
      padding: 28px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 12px 38px rgba(16,40,74,.07);
      transition: transform .50s cubic-bezier(.2,.8,.2,1), background .50s ease, border-color .50s ease, box-shadow .50s ease;
    }
    .problem-card:hover,
    .problem-card.is-active {
      transform: translateY(-7px);
      border-color: var(--navy);
      background: var(--navy);
      box-shadow: 0 22px 48px rgba(16,40,74,.21);
    }
    .problem-card::before {
      content: "";
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 22px;
      height: 7px;
      border-radius: 999px;
      background: var(--challenge-accent-soft);
      transition: background .45s ease;
    }
    .problem-card::after {
      content: "";
      position: absolute;
      left: 28px;
      bottom: 22px;
      width: 18%;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--challenge-accent), var(--challenge-accent-light));
      transition: width .62s cubic-bezier(.2,.8,.2,1);
    }
    .problem-card:hover::before,
    .problem-card.is-active::before { background: rgba(255,255,255,.12); }
    .problem-card:hover::after,
    .problem-card.is-active::after { width: calc(100% - 56px); }
    .problem-num {
      display: inline-flex;
      width: 44px;
      height: 44px;
      flex: 0 0 auto;
      align-items: center;
      justify-content: center;
      margin-bottom: 26px;
      border-radius: 15px;
      background: var(--challenge-accent-soft);
      color: #a94837;
      font-weight: 900;
      transition: color .42s ease, background .42s ease, transform .42s ease;
    }
    .problem-card h3 { color: var(--navy); transition: color .42s ease; }
    .problem-card p {
      margin-top: 12px;
      padding-bottom: 34px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.65;
      transition: color .42s ease;
    }
    .problem-card:hover .problem-num,
    .problem-card.is-active .problem-num {
      color: #fff;
      background: var(--challenge-accent);
      transform: rotate(-4deg) scale(1.06);
    }
    .problem-card:hover h3,
    .problem-card.is-active h3 { color: var(--challenge-accent-light); }
    .problem-card:hover p,
    .problem-card.is-active p { color: rgba(255,255,255,.78); }

    @media (max-width: 560px) {
      .problem-card { min-height: 260px; padding: 24px; border-radius: 24px; }
      .problem-card::before { left: 24px; right: 24px; }
      .problem-card::after { left: 24px; }
      .problem-card:hover::after,
      .problem-card.is-active::after { width: calc(100% - 48px); }
    }

    .brand-bento-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
    .brand-bento-card { min-height: 244px; padding: 28px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 38px rgba(16,40,74,.07); overflow: hidden; position: relative; }
    .brand-bento-card.large { grid-row: span 2; min-height: 506px; background: linear-gradient(145deg, var(--navy), var(--navy-2)); }
    .brand-bento-card.large h3, .brand-bento-card.large p { color: #fff; }
    .brand-bento-card.large p { color: rgba(255,255,255,.72); }
    .bento-icon { width: 50px; height: 50px; border-radius: 18px; background: rgba(228,163,66,.14); color: var(--gold); display: grid; place-items: center; font-size: 20px; font-weight: 900; margin-bottom: 24px; }
    .brand-bento-card:not(.large) .bento-icon { background: rgba(16,40,74,.07); color: var(--navy); }
    .brand-bento-card h3 { margin-bottom: 12px; }
    .brand-bento-card p { font-size: 14.5px; line-height: 1.7; }
    .brand-path { position: absolute; left: 28px; right: 28px; bottom: 28px; display: grid; gap: 12px; }
    .path-pill { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82); font-size: 13px; font-weight: 800; }
    .path-pill span { color: var(--gold); }

    .brand-process {
      background:
        radial-gradient(circle at 86% 12%, rgba(228,163,66,.11), transparent 27%),
        linear-gradient(180deg, #fffaf3, #fff);
    }
    .process-wrap { position: relative; }
    .brand-process .section-header { max-width: 900px; margin-left: auto; margin-right: auto; }
    .brand-process .section-header h2 { max-width: 820px; }
    .brand-process .section-header .lead { max-width: 800px; margin-top: 16px; }
    .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
    .process-step {
      position: relative;
      min-height: 310px;
      display: flex;
      flex-direction: column;
      padding: 26px 24px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 12px 36px rgba(16,40,74,.06);
      transition: transform .50s cubic-bezier(.2,.8,.2,1), background .50s ease, border-color .50s ease, box-shadow .50s ease;
    }
    .process-step:hover,
    .process-step.is-active {
      transform: translateY(-7px);
      border-color: var(--navy);
      background: var(--navy);
      box-shadow: 0 22px 48px rgba(16,40,74,.21);
    }
    .process-step::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      height: 7px;
      border-radius: 999px;
      background: rgba(228,163,66,.15);
      transition: background .45s ease;
    }
    .process-step::after {
      content: "";
      position: absolute;
      left: 24px;
      bottom: 22px;
      width: 18%;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transition: width .62s cubic-bezier(.2,.8,.2,1);
    }
    .process-step:hover::before,
    .process-step.is-active::before { background: rgba(255,255,255,.12); }
    .process-step:hover::after,
    .process-step.is-active::after { width: calc(100% - 48px); }
    .brand-process .step-number {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      margin-bottom: 26px;
      border-radius: 16px;
      background: rgba(228,163,66,.16);
      color: #a66d1d;
      font-weight: 900;
      box-shadow: none;
      transition: color .42s ease, background .42s ease, transform .42s ease, box-shadow .42s ease;
    }
    .process-step h3 {
      color: var(--navy);
      font-size: 20px;
      letter-spacing: -.03em;
      transition: color .42s ease;
    }
    .process-step p {
      margin-top: 10px;
      padding-bottom: 34px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
      transition: color .42s ease;
    }
    .process-step:hover .step-number,
    .process-step.is-active .step-number {
      color: var(--navy);
      background: var(--gold);
      box-shadow: 0 12px 28px rgba(228,163,66,.28);
      transform: rotate(-4deg) scale(1.06);
    }
    .process-step:hover h3,
    .process-step.is-active h3 { color: var(--gold-2); }
    .process-step:hover p,
    .process-step.is-active p { color: rgba(255,255,255,.78); }

    @media (min-width: 861px) and (max-width: 1120px) {
      .process-step:last-child { grid-column: 1 / -1; min-height: 250px; }
    }

    @media (max-width: 560px) {
      .process-step { min-height: 270px; padding: 24px; border-radius: 24px; }
    }

    .brand-categories {
      background:
        radial-gradient(circle at 8% 8%, rgba(228,163,66,.10), transparent 25%),
        linear-gradient(180deg, #fff, #fffdf9);
    }
    .brand-categories .category-shell {
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .brand-categories .category-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 32px; align-items: stretch; }
    .brand-categories .category-feature {
      padding: 34px;
      border: 1px solid rgba(228,163,66,.18);
      border-radius: 30px;
      background: linear-gradient(145deg, #fbf1e3, #fffaf2);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 14px 38px rgba(16,40,74,.07);
    }
    .brand-categories .category-feature p { margin-top: 16px; }
    .brand-categories .category-note {
      position: static;
      margin-top: 26px;
      padding: 18px;
      border: 1px solid rgba(16,40,74,.08);
      border-radius: 20px;
      background: rgba(255,255,255,.72);
      color: var(--navy);
      box-shadow: none;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.6;
    }
    .brand-categories .category-feature.is-active {
      position: relative;
      overflow: hidden;
      border-color: var(--navy);
      background: linear-gradient(145deg, var(--navy), var(--navy-2));
      box-shadow: 0 24px 54px rgba(16,40,74,.22);
      transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
    }
    .brand-categories .category-feature.is-active:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 64px rgba(16,40,74,.27);
    }
    .brand-categories .category-feature > :not(.card-circle) {
      position: relative;
      z-index: 1;
    }
    .brand-categories .category-feature .card-circle {
      right: -105px;
      top: -105px;
      width: 290px;
      height: 290px;
      background: rgba(228,163,66,.16);
    }
    .brand-categories .category-feature.is-active .eyebrow {
      color: #fff !important;
      background: rgba(255,255,255,.10) !important;
      box-shadow: none;
    }
    .brand-categories .category-feature.is-active .eyebrow::before {
      background: var(--gold) !important;
      box-shadow: 0 0 0 4px rgba(228,163,66,.18) !important;
    }
    .brand-categories .category-feature.is-active h2,
    .brand-categories .category-feature.is-active h2 .text-gold {
      color: var(--gold-2) !important;
    }
    .brand-categories .category-feature.is-active .lead { color: rgba(255,255,255,.78); }
    .brand-categories .category-review {
      position: relative;
      z-index: 1;
      margin-top: 34px;
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,.16);
    }
    .brand-categories .category-review-label {
      display: block;
      color: var(--gold-2);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
    }
    .brand-categories .category-review ul {
      display: grid;
      gap: 11px;
      margin-top: 16px;
    }
    .brand-categories .category-review li {
      display: grid;
      grid-template-columns: 24px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      color: rgba(255,255,255,.88);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
    }
    .brand-categories .category-review li::before {
      content: "\2713";
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--navy);
      background: var(--gold);
      font-size: 12px;
      font-weight: 900;
    }
    .brand-categories .category-review p {
      margin-top: 18px;
      color: rgba(255,255,255,.64);
      font-size: 13px;
      line-height: 1.55;
    }
    .brand-category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .brand-category-card {
      position: relative;
      min-height: 190px;
      padding: 22px 22px 34px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fffdf9;
      box-shadow: 0 10px 30px rgba(16,40,74,.055);
      transition: transform .48s cubic-bezier(.2,.8,.2,1), background .48s ease, border-color .48s ease, box-shadow .48s ease;
    }
    .brand-category-card::after {
      content: "";
      position: absolute;
      left: 22px;
      bottom: 18px;
      width: 18%;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transition: width .60s cubic-bezier(.2,.8,.2,1);
    }
    .brand-category-card:hover,
    .brand-category-card.is-active {
      transform: translateY(-5px);
      border-color: var(--navy);
      background: var(--navy);
      box-shadow: 0 18px 40px rgba(16,40,74,.20);
    }
    .brand-category-card:hover::after,
    .brand-category-card.is-active::after { width: calc(100% - 44px); }
    .brand-category-card > span {
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border-radius: 13px;
      background: rgba(228,163,66,.15);
      color: #a66d1d;
      font-size: 13px;
      font-weight: 900;
      transition: color .40s ease, background .40s ease, transform .40s ease;
    }
    .brand-category-card h4 { color: var(--navy); transition: color .40s ease; }
    .brand-category-card p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.6; transition: color .40s ease; }
    .brand-category-card:hover > span,
    .brand-category-card.is-active > span {
      color: var(--navy);
      background: var(--gold);
      transform: rotate(-4deg) scale(1.06);
    }
    .brand-category-card:hover h4,
    .brand-category-card.is-active h4 { color: var(--gold-2); }
    .brand-category-card:hover p,
    .brand-category-card.is-active p { color: rgba(255,255,255,.78); }

    .trust-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
    .trust-card { padding: 28px; border-radius: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); min-height: 280px; }
    .trust-card .tag { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(228,163,66,.15); color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px; }
    .trust-card p { margin-top: 12px; font-size: 14.5px; line-height: 1.7; }

    .brand-trust .section-header h2 .text-gold {
      color: var(--gold-2) !important;
    }

    .brand-trust .trust-card {
      position: relative;
      overflow: hidden;
      transition: transform .50s cubic-bezier(.2,.8,.2,1), background .50s ease, border-color .50s ease, box-shadow .50s ease;
    }

    .brand-trust .trust-card::after {
      content: "";
      position: absolute;
      left: 28px;
      bottom: 22px;
      width: 18%;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transition: width .62s cubic-bezier(.2,.8,.2,1);
    }

    .brand-trust .trust-card .tag,
    .brand-trust .trust-card h3,
    .brand-trust .trust-card p {
      position: relative;
      z-index: 1;
      transition: color .42s ease, background .42s ease, transform .42s ease;
    }

    .brand-trust .trust-card p {
      padding-bottom: 34px;
    }

    .brand-trust .trust-card:hover,
    .brand-trust .trust-card.is-active {
      transform: translateY(-7px);
      border-color: var(--navy);
      background: var(--navy);
      box-shadow: 0 22px 48px rgba(6,24,51,.30);
    }

    .brand-trust .trust-card:hover::after,
    .brand-trust .trust-card.is-active::after {
      width: calc(100% - 56px);
    }

    .brand-trust .trust-card:hover .tag,
    .brand-trust .trust-card.is-active .tag {
      color: #fff;
      background: rgba(255,255,255,.10);
      transform: rotate(-3deg) scale(1.04);
    }

    .brand-trust .trust-card:hover h3,
    .brand-trust .trust-card.is-active h3 {
      color: var(--gold-2);
    }

    .brand-trust .trust-card:hover p,
    .brand-trust .trust-card.is-active p {
      color: rgba(255,255,255,.82);
    }

    .checklist-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: start; }
    .checklist-panel { padding: 34px; border-radius: 34px; background: var(--navy); color: #fff; box-shadow: var(--shadow); position: sticky; top: 112px; }
    .checklist-panel h2 { color: #fff; }
    .checklist-panel p { color: rgba(255,255,255,.72); margin-top: 18px; }
    .checklist-panel .btn { margin-top: 28px; }
    .checklist { display: grid; gap: 14px; }
    .check-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(16,40,74,.06); }
    .check-mark { width: 44px; height: 44px; border-radius: 50%; background: rgba(228,163,66,.16); color: #a66d1d; display: grid; place-items: center; font-weight: 900; }
    .check-item p { margin-top: 6px; font-size: 14px; line-height: 1.6; }

    .quote-band { border-radius: 38px; padding: 44px; background: linear-gradient(135deg, var(--cream), #fff); border: 1px solid rgba(228,163,66,.18); box-shadow: var(--soft-shadow); display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
    .quote-band h2 { max-width: 860px; }
    .quote-band p { max-width: 760px; margin-top: 16px; }

    .faq-wrap { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
    .brand-accordion-item { border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; box-shadow: 0 10px 28px rgba(16,40,74,.05); transition: border-color .28s ease, box-shadow .28s ease; }
    .brand-accordion-item.active { border-color: rgba(228,163,66,.34); box-shadow: 0 16px 38px rgba(16,40,74,.08); }
    .brand-accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 24px; border: 0; background: transparent; color: var(--navy-2); cursor: pointer; font-weight: 850; font-size: 16px; text-align: left; }
    .brand-accordion-trigger .plus { flex: 0 0 auto; position: relative; width: 32px; height: 32px; border-radius: 50%; background: rgba(228,163,66,.14); color: #a66d1d; display: grid; place-items: center; transition: transform .24s ease, background .24s ease, color .24s ease; }
    .brand-accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .brand-accordion-panel p { padding: 0 24px 22px; font-size: 15px; line-height: 1.72; }
    .brand-accordion-item.active .plus { background: var(--gold); color: #fff; font-size: 0; transform: none; }
    .brand-accordion-item.active .plus::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 11px;
      height: 7px;
      box-sizing: border-box;
      border-left: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translate(-50%, -62%) rotate(-45deg);
    }

    .brand-final-cta {
      position: static !important;
      overflow: visible !important;
      padding: 74px 0 0;
      background: #fffdf9;
    }
    .brand-final-cta .brand-cta-card {
      display: block;
      margin-bottom: -304px;
      padding: 24px 48px 48px;
      border-radius: 42px;
      text-align: center;
    }
    .brand-final-cta .brand-cta-card::after {
      display: none;
    }
    .brand-final-cta .brand-cta-card h2,
    .brand-final-cta .brand-cta-card p,
    .brand-final-cta .brand-cta-actions {
      position: relative;
      z-index: 2;
    }
    .brand-final-cta .brand-cta-card p {
      max-width: 740px;
      margin: 0 auto 34px;
    }
    .brand-final-cta .brand-cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .wholesale-final-cta {
      position: static !important;
      overflow: visible !important;
      padding: 74px 0 0;
      background: #fffdf9;
    }
    .wholesale-final-cta .wholesale-cta-card {
      display: block;
      margin-bottom: -304px;
      padding: 24px 48px 48px;
      border-radius: 42px;
      text-align: center;
      position: relative;
      z-index: 5;
    }
    .wholesale-final-cta .wholesale-cta-card::after {
      display: none;
    }
    .wholesale-final-cta .wholesale-cta-card h2,
    .wholesale-final-cta .wholesale-cta-card p,
    .wholesale-final-cta .wholesale-cta-actions {
      position: relative;
      z-index: 2;
    }
    .wholesale-final-cta .wholesale-cta-card p {
      max-width: 740px;
      margin: 0 auto 34px;
    }
    .wholesale-final-cta .wholesale-cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .site-footer { padding: 58px 0 28px; background: var(--navy-2); color: #fff; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; margin-bottom: 38px; }
    .footer-brand p { color: rgba(255,255,255,.62); max-width: 370px; margin-top: 16px; font-size: 14px; }
    .footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
    .footer-col a { display: block; color: rgba(255,255,255,.62); font-size: 14px; margin-bottom: 10px; transition: color .2s ease; }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.52); font-size: 13px; }

    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1120px) {
      .brand-hero-grid, .split-grid, .category-layout, .checklist-layout { grid-template-columns: 1fr; }
      .brand-hero { display: block; min-height: auto; aspect-ratio: auto; padding-top: 122px; }
      .brand-hero-grid { max-width: 820px; padding: 58px 0 42px; text-align: center; }
      .brand-hero-content { display: block; max-width: 820px; }
      .brand-hero-content h1 { margin-left: auto; margin-right: auto; }
      .brand-hero-content, .brand-hero-content .lead, .brand-hero-proof { margin-left: auto; margin-right: auto; }
      .brand-hero-actions { justify-content: center; }
      .brand-hero-proof { width: min(100%, 720px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
      .brand-hero-visual { min-height: 520px; max-width: 620px; width: 100%; margin: 0 auto; }
      .problem-grid { grid-template-columns: repeat(2, 1fr); }
      .brand-bento-grid { grid-template-columns: repeat(2, 1fr); }
      .brand-bento-card.large { grid-column: span 2; min-height: 390px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: 1fr; }
      .checklist-panel { position: static; }
      .brand-cta-card, .quote-band { grid-template-columns: 1fr; }
      .brand-cta-actions { justify-content: flex-start; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 860px) {
      .container { width: min(100% - 32px, var(--container)); }
      .section { padding: 72px 0; }
      .nav-links, .nav-actions { display: none; }
      .mobile-toggle { display: block; }
      .site-header.menu-open .nav-links { display: flex; position: absolute; left: 16px; right: 16px; top: 86px; flex-direction: column; align-items: stretch; border-radius: 24px; padding: 12px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
      .site-header.menu-open .nav-link { width: 100%; text-align: center; }
      .brand-hero { padding: 112px 0 58px; }
      .brand-hero-grid { gap: 0; padding: 0; }
      .brand-hero-content h1 { font-size: clamp(34px, 9vw, 44px); }
      .brand-hero-proof, .problem-grid, .brand-category-grid, .process-grid, .brand-bento-grid { grid-template-columns: 1fr; }
      .brand-bento-card.large { grid-column: auto; min-height: 430px; }
      .visual-stage { border-radius: 32px; }
      .brand-hero-visual { min-height: 500px; }
      .floating-panel { width: 220px; }
      .product.bottle-tall { left: 48px; }
      .product.jar { left: 154px; }
      .product.tube { right: 42px; }
      .market-card { width: 224px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; }
    }

    @media (max-width: 560px) {
      h1 { font-size: clamp(40px, 12vw, 54px); }
      h2 { font-size: clamp(30px, 9vw, 38px); }
      .brand-hero-actions, .brand-cta-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .brand-hero-visual { min-height: 420px; }
      .floating-panel { left: 18px; top: 22px; width: calc(100% - 36px); }
      .product.bottle-tall { width: 72px; height: 210px; left: 32px; bottom: 68px; }
      .product.jar { width: 116px; height: 126px; left: 110px; bottom: 68px; }
      .product.tube { width: 86px; height: 180px; right: 28px; bottom: 74px; }
      .market-card { left: 18px; right: 18px; bottom: 18px; width: auto; }
      .intro-panel, .category-shell, .quote-band, .brand-cta-card { padding: 26px; border-radius: 30px; }
    }
  


/* =========================================================
   SCOPED VARIABLES FOR NEW WHOLESALE PAGE SECTIONS
   ========================================================= */
.wholesale-hero, .wholesale-final-cta, .wholesale-bento-card, .wholesale-category-card, .wholesale-cta-card, .wholesale-accordion-item, .wholesale-cta-actions, .challenge-panel, .challenge-item, .solution-card-dark, .workflow-item, .wholesale-process-step, .trust-card, .aside-card, .form-card, .check-item, .wholesale-cta-panel {
  --navy: #10284a;
  --navy-2: #061833;
  --navy-3: #183a65;
  --gold: #E4A342;
  --gold-2: #f4bc5f;
  --cream: #fbf5ea;
  --cream-2: #fff9f0;
  --warm: #f2dfc6;
  --white: #ffffff;
  --text: #1d2b40;
  --muted: #647184;
  --muted-2: #8792a3;
  --line: rgba(16, 40, 74, .12);
  --line-strong: rgba(16, 40, 74, .18);
  --success: #2d8a61;
  --error: #b94040;
  --shadow: 0 22px 70px rgba(16, 40, 74, .13);
  --soft-shadow: 0 14px 45px rgba(16, 40, 74, .09);
  --gold-shadow: 0 16px 36px rgba(228, 163, 66, .26);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1260px;
}

    .wholesale-hero {
      padding: var(--header-height) 0 0;
      min-height: auto;
      aspect-ratio: 2560 / 830;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 84% 48%, rgba(16,40,74,.14) 0, rgba(16,40,74,.055) 19%, transparent 39%),
        radial-gradient(circle at 65% 22%, rgba(228,163,66,.15) 0, rgba(228,163,66,.055) 24%, transparent 48%),
        radial-gradient(circle at 54% 5%, rgba(255,255,255,.94) 0, rgba(255,255,255,.30) 29%, transparent 55%),
        linear-gradient(125deg, #fffdf8 0%, #faf1e4 48%, #edddc6 100%);
    }

    .wholesale-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        repeating-linear-gradient(to right, transparent 0 27.5px, rgba(117,91,57,.34) 27.5px 28.5px, transparent 28.5px 56px),
        repeating-linear-gradient(to bottom, transparent 0 27.5px, rgba(117,91,57,.34) 27.5px 28.5px, transparent 28.5px 56px);
      -webkit-mask-image: radial-gradient(circle at 28px 28px, #000 0 6px, transparent 7px);
      -webkit-mask-size: 56px 56px;
      mask-image: radial-gradient(circle at 28px 28px, #000 0 6px, transparent 7px);
      mask-size: 56px 56px;
      opacity: .72;
      pointer-events: none;
    }

    .wholesale-hero:hover .fx-canvas { opacity: 1; }
    .wholesale-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; width: 100%; padding: 12px 0 18px; }
    .wholesale-hero-content { max-width: none; display: grid; grid-template-columns: minmax(0, 820px) minmax(260px, 320px); grid-template-areas: "eyebrow proof" "title proof" "description proof" "actions proof"; column-gap: clamp(24px, 4vw, 64px); align-items: start; }
    .wholesale-hero-content > .eyebrow { grid-area: eyebrow; justify-self: start; margin-bottom: 8px; }
    .wholesale-hero-content h1 { grid-area: title; max-width: 820px; font-size: clamp(36px, 2.6vw, 46px); line-height: 1.06; letter-spacing: -.025em; color: var(--navy); }
    .wholesale-hero-content .lead { grid-area: description; max-width: 720px; margin-top: 10px; font-size: 14.5px; line-height: 1.5; color: #394960; }
    .wholesale-hero-actions { grid-area: actions; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
    .wholesale-hero-actions .btn { min-height: 42px; padding-top: 9px; padding-bottom: 9px; }
    .wholesale-hero-actions .btn-primary { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: 0 12px 30px rgba(16,40,74,.18); }
    .wholesale-hero-actions .btn-primary:hover { background: linear-gradient(135deg, var(--navy-3), var(--navy)); box-shadow: 0 16px 38px rgba(16,40,74,.24); }
    .wholesale-hero-actions .btn-secondary { color: var(--navy); background: rgba(255,255,255,.48); border-color: rgba(16,40,74,.55); }
    .wholesale-hero-actions .btn-secondary:hover { color: var(--gold); background: rgba(255,255,255,.72); border-color: var(--gold); box-shadow: 0 14px 34px rgba(16,40,74,.12); }
    .wholesale-hero-proof { grid-area: proof; align-self: center; width: 100%; display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 0; }
    .wholesale-hero-proof .proof-card { position: relative; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 10px; min-height: 52px; padding: 8px 10px; border: 1px solid rgba(16,40,74,.10); background: rgba(255,255,255,.72); backdrop-filter: blur(12px); border-radius: 14px; box-shadow: 0 14px 34px rgba(16,40,74,.08); transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease; }
    .wholesale-hero-proof .proof-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.90); border-color: rgba(228,163,66,.55); box-shadow: 0 18px 44px rgba(16,40,74,.14), 0 8px 24px rgba(228,163,66,.16); }
    .wholesale-hero-proof .proof-card::before { content: ""; grid-column: 1; grid-row: 1 / 3; align-self: center; width: 30px; height: 30px; border-radius: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); border: 1px solid rgba(255,255,255,.48); box-shadow: 0 10px 22px rgba(228,163,66,.32); transition: transform .3s ease, box-shadow .3s ease; }
    .wholesale-hero-proof .proof-card::after { content: ""; position: absolute; left: 27px; top: 50%; width: 10px; height: 6px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: translate(-50%, -62%) rotate(-45deg); }
    .wholesale-hero-proof .proof-card:hover::before { transform: scale(1.08) rotate(-4deg); box-shadow: 0 12px 26px rgba(228,163,66,.42); }
    .wholesale-hero-proof .proof-card strong { grid-column: 2; display: block; color: var(--navy-2); font-size: 14px; line-height: 1.1; margin-bottom: 0; }
    .wholesale-hero-proof .proof-card span { grid-column: 2; color: #46556b; font-size: 12px; line-height: 1.35; display: block; margin-top: 2px; }
    .wholesale-hero-visual { display: none !important; }

    .brand-hero-proof .proof-card,
    .wholesale-hero-proof .proof-card {
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      min-height: 64px;
      padding: 10px 14px 10px 11px;
      border-radius: 999px;
      background: rgba(239,229,213,.82);
      box-shadow: inset 0 0 0 1px rgba(16,40,74,.05);
      transform: translateX(0);
      transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
      animation: heroProofPillEnter .58s cubic-bezier(.2,.8,.2,1) backwards;
    }
    .brand-hero-proof .proof-card:nth-child(2),
    .wholesale-hero-proof .proof-card:nth-child(2) { animation-delay: .10s; }
    .brand-hero-proof .proof-card:nth-child(3),
    .wholesale-hero-proof .proof-card:nth-child(3) { animation-delay: .20s; }
    .brand-hero-proof .proof-card:hover,
    .brand-hero-proof .proof-card.is-active,
    .wholesale-hero-proof .proof-card:hover,
    .wholesale-hero-proof .proof-card.is-active {
      z-index: 1;
      transform: translateX(-7px);
      background: rgba(255,255,255,.96);
      border-color: rgba(228,163,66,.34);
      box-shadow: 0 14px 30px rgba(65,44,11,.13);
    }
    .brand-hero-proof .proof-card::before,
    .wholesale-hero-proof .proof-card::before { content: none; }
    .brand-hero-proof .proof-card::after,
    .wholesale-hero-proof .proof-card::after {
      content: none;
      display: none;
    }
    .proof-card-icon {
      grid-column: 1 !important;
      width: 42px;
      height: 42px;
      display: grid !important;
      place-items: center;
      margin: 0 !important;
      border-radius: 50%;
      color: #fff !important;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      box-shadow: 0 10px 22px rgba(228,163,66,.30);
      transition: transform .30s ease, box-shadow .30s ease;
    }
    .proof-card:hover .proof-card-icon,
    .proof-card.is-active .proof-card-icon {
      transform: scale(1.08) rotate(-4deg);
      box-shadow: 0 12px 26px rgba(228,163,66,.42);
    }
    .proof-card-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .proof-card-copy {
      grid-column: 2 !important;
      min-width: 0;
      display: grid !important;
      gap: 3px;
      margin: 0 !important;
    }
    .brand-hero-proof .proof-card-copy strong,
    .wholesale-hero-proof .proof-card-copy strong {
      grid-column: auto;
      color: var(--navy-2);
      font-size: 14px;
      line-height: 1.15;
    }
    .brand-hero-proof .proof-card-copy > span,
    .wholesale-hero-proof .proof-card-copy > span {
      grid-column: auto;
      color: #46556b;
      font-size: 12px;
      line-height: 1.35;
      margin: 0;
    }
    .wholesale-bento-card.large {
      min-height: 504px;
      background: linear-gradient(145deg, var(--navy), var(--navy-2));
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .wholesale-bento-card.large h3, .wholesale-bento-card.large p { color: #fff; }
    .wholesale-bento-card.large p { color: rgba(255,255,255,.76); }
    .bento-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: rgba(228,163,66,.14);
      color: var(--gold);
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s ease, color 0.4s ease;
    }
    .bento-icon-box svg {
      width: 22px;
      height: 22px;
    }
    .wholesale-bento-card.large .bento-icon-box {
      background: rgba(255,255,255,.11);
      color: var(--gold-2);
    }
    .wholesale-bento-card p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--muted); }
    .wholesale-bento-visual {
      margin-top: auto;
      height: 150px;
      border-radius: 22px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      overflow: hidden;
      position: relative;
    }
    .wholesale-bento-visual::before {
      content: "";
      position: absolute;
      inset: 20px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(228,163,66,.10));
    }
    .wholesale-bento-visual::after {
      content: "Verified sourcing\A Category fit\A Bulk enquiry";
      white-space: pre-line;
      position: absolute;
      left: 28px;
      top: 24px;
      right: 28px;
      color: rgba(255,255,255,.85);
      font-size: 12.5px;
      font-weight: 700;
      line-height: 2;
    }

    /* Bento Card Hover and theme animations */
    .wholesale-bento-card:hover {
      background-color: var(--navy) !important;
      border-color: var(--navy) !important;
      box-shadow: 0 24px 54px rgba(16,40,74,0.18) !important;
      transform: translateY(-8px);
    }
    .wholesale-bento-card:hover h3 {
      color: var(--gold-2) !important;
    }
    .wholesale-bento-card:hover p {
      color: rgba(255, 255, 255, 0.76) !important;
    }
    .wholesale-bento-card:hover .bento-icon-box {
      background: #ffffff !important;
      color: var(--navy) !important;
      transform: scale(1.06) rotate(-4deg);
    }

    .wholesale-bento-card.large:hover {
      background-color: var(--navy-2) !important;
      border-color: var(--gold) !important;
      box-shadow: 0 28px 60px rgba(16,40,74,0.30) !important;
      transform: translateY(-8px);
    }
    .wholesale-bento-card.large:hover .bento-icon-box {
      background: #ffffff !important;
      color: var(--navy) !important;
      transform: scale(1.06) rotate(-4deg);
    }

    /* Dynamic bottom progress bar */
    .wholesale-bento-card .card-progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: rgba(0, 0, 0, 0.05);
    }
    .wholesale-bento-card .card-progress-bar span {
      display: block;
      height: 100%;
      width: 15%;
      background: var(--gold);
      transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .wholesale-bento-card:hover .card-progress-bar span {
      width: var(--growth-progress, 100%) !important;
    }

    @keyframes heroProofPillEnter {
      from { opacity: 0; transform: translateX(18px) scale(.97); }
      to { opacity: 1; transform: translateX(0) scale(1); }
    }

    @media (max-width: 520px) {
      .brand-hero-proof .proof-card,
      .wholesale-hero-proof .proof-card {
        grid-template-columns: 42px minmax(0, 1fr);
        border-radius: 24px;
      }
      .brand-hero-proof .proof-card:hover,
      .brand-hero-proof .proof-card.is-active,
      .wholesale-hero-proof .proof-card:hover,
      .wholesale-hero-proof .proof-card.is-active { transform: translateX(0); }
      .brand-hero-proof .proof-card::after,
      .wholesale-hero-proof .proof-card::after { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .brand-hero-proof .proof-card,
      .wholesale-hero-proof .proof-card,
      .proof-card-icon { animation: none; transition: none; }
    }

    .wholesale-hero-visual { min-height: 560px; position: relative; }

        .wholesale-bento-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
    .wholesale-bento-card { min-height: 242px; padding: 28px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 38px rgba(16,40,74,.07); overflow: hidden; position: relative; }
    .wholesale-bento-card.large { grid-row: span 2; min-height: 502px; background: linear-gradient(145deg, var(--navy), var(--navy-2)); }
    .wholesale-bento-card.large h3, .wholesale-bento-card.large p { color: #fff; }
    .wholesale-bento-card.large p { color: rgba(255,255,255,.72); }
    .bento-icon { width: 50px; height: 50px; border-radius: 18px; background: rgba(228,163,66,.14); color: var(--gold); display: grid; place-items: center; font-size: 20px; font-weight: 900; margin-bottom: 24px; }
    .wholesale-bento-card.large .bento-icon { background: rgba(255,255,255,.11); color: var(--gold-2); }
    .wholesale-bento-card p { margin-top: 12px; font-size: 14.5px; line-height: 1.7; }
    .wholesale-bento-visual { position: absolute; left: 28px; right: 28px; bottom: 28px; height: 165px; border-radius: 26px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.13); overflow: hidden; }
    .wholesale-bento-visual::before { content: ""; position: absolute; inset: 26px; border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(228,163,66,.14)); }
    .wholesale-bento-visual::after { content: "Verified sourcing\A Category fit\A Bulk enquiry"; white-space: pre-line; position: absolute; left: 32px; top: 32px; right: 32px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 800; line-height: 2.1; }

    .wholesale-bento-card {
      cursor: pointer;
      transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 1.2s ease-out,
        background-color 1.2s ease-out;
    }

    .wholesale-bento-card > :not(.card-circle) {
      position: relative;
      z-index: 2;
    }

    .wholesale-bento-card .card-circle {
      background: rgba(228, 163, 66, .14);
    }

    .wholesale-bento-card .bento-icon {
      display: none;
    }

    .wholesale-bento-card .bento-icon-box {
      width: 58px;
      height: 58px;
      border-radius: 19px;
      background: rgba(228, 163, 66, .14);
      color: var(--gold);
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      transition: color 1.2s ease-out, background 1.2s ease-out, transform .45s ease;
    }

    .wholesale-bento-card .bento-icon-box svg {
      width: 30px;
      height: 30px;
    }

    .wholesale-bento-card.large .bento-icon-box {
      background: rgba(255,255,255,.12);
      color: #ffffff;
    }

    .wholesale-bento-card h3,
    .wholesale-bento-card p,
    .wholesale-bento-card .solutions-stats,
    .wholesale-bento-card .mini-stat,
    .wholesale-bento-card .mini-stat strong,
    .wholesale-bento-card .mini-stat span {
      transition: color 1.2s ease-out, background 1.2s ease-out, border-color 1.2s ease-out;
    }

    .wholesale-bento-card:hover,
    .wholesale-bento-card.is-active {
      background-color: var(--navy) !important;
      border-color: var(--navy) !important;
      box-shadow: 0 20px 42px rgba(11, 29, 61, 0.25) !important;
      transform: translateY(-8px);
      transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color .4s ease-in,
        background-color .4s ease-in;
    }

    .wholesale-bento-card.large:hover,
    .wholesale-bento-card.large.is-active {
      background: linear-gradient(145deg, var(--navy), var(--navy-2)) !important;
      border-color: rgba(228, 163, 66, .38) !important;
      box-shadow: 0 22px 48px rgba(11, 29, 61, 0.28) !important;
    }

    .wholesale-bento-card:hover h3,
    .wholesale-bento-card.is-active h3 {
      color: var(--gold) !important;
    }

    .wholesale-bento-card:hover p,
    .wholesale-bento-card.is-active p {
      color: rgba(255, 255, 255, 0.8) !important;
    }

    .wholesale-bento-card:hover .bento-icon-box,
    .wholesale-bento-card.is-active .bento-icon-box {
      background: rgba(255, 255, 255, 0.12) !important;
      color: #ffffff !important;
      transform: scale(1.06) rotate(-4deg);
      transition: color .4s ease-in, background .4s ease-in, transform .45s ease;
    }

    .wholesale-bento-card .solutions-stats {
      margin-top: 30px;
    }

    .wholesale-bento-card .mini-stat {
      background: rgba(255,255,255,.64);
      border-color: rgba(16, 40, 74, .08);
    }

    .wholesale-bento-card:hover .mini-stat,
    .wholesale-bento-card.is-active .mini-stat {
      background: rgba(255, 255, 255, 0.08) !important;
      border-color: rgba(255, 255, 255, 0.08) !important;
    }

    .wholesale-bento-card:hover .mini-stat strong,
    .wholesale-bento-card.is-active .mini-stat strong {
      color: var(--gold) !important;
    }

    .wholesale-bento-card:hover .mini-stat span,
    .wholesale-bento-card.is-active .mini-stat span {
      color: rgba(255, 255, 255, 0.8) !important;
    }

    .wholesale-bento-card:hover .solutions-bullet-list,
    .wholesale-bento-card.is-active .solutions-bullet-list {
      max-height: 220px;
      opacity: 1;
      margin-top: 24px;
      transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s ease-in,
        margin-top 0.5s ease-in;
    }

    .wholesale-bento-card:hover .solutions-bullet-list li,
    .wholesale-bento-card.is-active .solutions-bullet-list li {
      color: rgba(255, 255, 255, 0.8) !important;
      transition: color 0.4s ease-in;
    }

    .wholesale-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; background: #fff; box-shadow: var(--soft-shadow); }
    .wholesale-process-step { padding: 30px 24px; border-right: 1px solid var(--line); min-height: 280px; position: relative; }
    .wholesale-process-step:last-child { border-right: 0; }
    .wholesale-process-step p { margin-top: 12px; font-size: 14.5px; line-height: 1.65; }

    #process.wholesale-process-section {
      background:
        radial-gradient(circle at 84% 12%, rgba(228,163,66,.14), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(16,40,74,.08), transparent 24%),
        linear-gradient(180deg, #fffaf3, #fffdf9);
    }

    #process.wholesale-process-section .section-header h2 {
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    #process.wholesale-process-section .wholesale-process-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      border: 0;
      border-radius: 0;
      overflow: visible;
      background: transparent;
      box-shadow: none;
    }

    #process.wholesale-process-section .wholesale-process-step {
      min-height: 300px;
      padding: 28px 24px 38px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 12px 36px rgba(16,40,74,.06);
      cursor: pointer;
      transition: transform .5s cubic-bezier(.2,.8,.2,1), background .5s ease, border-color .5s ease, box-shadow .5s ease;
    }

    #process.wholesale-process-section .wholesale-process-step:last-child,
    #process.wholesale-process-section .wholesale-process-step:nth-child(odd) {
      border: 1px solid var(--line);
    }

    #process.wholesale-process-section .wholesale-process-step > * {
      position: relative;
      z-index: 2;
    }

    #process.wholesale-process-section .wholesale-process-step::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      height: 7px;
      border-radius: 999px;
      background: rgba(228,163,66,.15);
      transition: background .45s ease;
      z-index: 2;
    }

    #process.wholesale-process-section .wholesale-process-step::after {
      content: "";
      position: absolute;
      left: 24px;
      bottom: 22px;
      width: 18%;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transition: width .62s cubic-bezier(.2,.8,.2,1);
      z-index: 3;
    }

    #process.wholesale-process-section .wholesale-step-num {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      border-radius: 16px;
      background: rgba(228,163,66,.16);
      color: #a66d1d;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      box-shadow: none;
      transition: color .42s ease, background .42s ease, transform .42s ease, box-shadow .42s ease;
    }

    #process.wholesale-process-section .wholesale-process-step h3 {
      color: var(--navy);
      font-size: 20px;
      line-height: 1.25;
      margin: 0;
      transition: color .42s ease;
    }

    #process.wholesale-process-section .wholesale-process-step p {
      margin-top: 12px;
      padding-bottom: 28px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.68;
      transition: color .42s ease;
    }

    #process.wholesale-process-section .wholesale-process-step:hover,
    #process.wholesale-process-section .wholesale-process-step.is-active {
      transform: translateY(-7px);
      border-color: var(--navy);
      background: var(--navy);
      box-shadow: 0 22px 48px rgba(16,40,74,.21);
    }

    #process.wholesale-process-section .wholesale-process-step:hover::before,
    #process.wholesale-process-section .wholesale-process-step.is-active::before {
      background: rgba(255,255,255,.12);
    }

    #process.wholesale-process-section .wholesale-process-step:hover::after,
    #process.wholesale-process-section .wholesale-process-step.is-active::after {
      width: calc(100% - 48px);
    }

    #process.wholesale-process-section .wholesale-process-step:hover .wholesale-step-num,
    #process.wholesale-process-section .wholesale-process-step.is-active .wholesale-step-num {
      color: var(--navy);
      background: var(--gold);
      box-shadow: 0 12px 28px rgba(228,163,66,.28);
      transform: rotate(-4deg) scale(1.06);
    }

    #process.wholesale-process-section .wholesale-process-step:hover h3,
    #process.wholesale-process-section .wholesale-process-step.is-active h3 {
      color: var(--gold-2);
    }

    #process.wholesale-process-section .wholesale-process-step:hover p,
    #process.wholesale-process-section .wholesale-process-step.is-active p {
      color: rgba(255,255,255,.78);
    }

    .category-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: start; }
    .category-note { position: sticky; top: 104px; padding: 34px; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--line); box-shadow: var(--soft-shadow); }
    .category-note .btn { margin-top: 26px; }

    #categories.wholesale-categories-section.brand-categories {
      background:
        radial-gradient(circle at 8% 8%, rgba(228,163,66,.10), transparent 25%),
        radial-gradient(circle at 86% 18%, rgba(16,40,74,.06), transparent 28%),
        linear-gradient(180deg, #fff, #fffdf9);
    }

    #categories.wholesale-categories-section .category-feature {
      transform: translateY(-5px);
      border-color: var(--navy);
      background: linear-gradient(145deg, var(--navy), var(--navy-2));
      box-shadow: 0 30px 64px rgba(16,40,74,.24);
    }

    #categories.wholesale-categories-section .category-feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 64px rgba(16,40,74,.27);
    }

    #categories.wholesale-categories-section .category-feature .card-circle {
      background: rgba(228,163,66,.16);
    }

    #categories.wholesale-categories-section .category-feature .lead {
      color: rgba(255,255,255,.78);
    }

    #categories.wholesale-categories-section .category-feature.is-active h2 {
      color: #fff !important;
    }

    #categories.wholesale-categories-section .category-feature.is-active h2 .text-gold {
      color: var(--gold-2) !important;
    }

    #categories.wholesale-categories-section .category-review .btn {
      width: max-content;
      margin-top: 22px;
    }

    #categories.wholesale-categories-section .wholesale-category-grid {
      gap: 14px;
    }

    #categories.wholesale-categories-section .wholesale-category-card {
      cursor: pointer;
    }

    #categories.wholesale-categories-section .wholesale-category-card > * {
      position: relative;
      z-index: 1;
    }

    .trust-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
    .trust-card { padding: 28px; border-radius: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); min-height: 260px; }
    .trust-card .card-icon { background: rgba(255,255,255,.10); color: var(--gold-2); }
    .trust-card p { font-size: 14.5px; line-height: 1.7; margin-top: 12px; }

    #trust.wholesale-trust {
      --navy: #10284a;
      --navy-2: #061833;
      --navy-3: #183a65;
      --gold: #E4A342;
      --gold-2: #f4bc5f;
      --text: #1d2b40;
      --muted: #647184;
      --line: rgba(16, 40, 74, .12);
      position: relative;
      overflow: hidden;
      background: #fffdf9 !important;
      color: var(--text);
    }

    #trust.wholesale-trust::before {
      content: none;
      display: none;
    }

    #trust.wholesale-trust::after {
      content: none;
      display: none;
    }

    #trust.wholesale-trust .container {
      position: relative;
      z-index: 1;
    }

    #trust.wholesale-trust .section-header h2 {
      color: var(--navy);
    }

    #trust.wholesale-trust .section-header h2 .text-gold {
      color: var(--gold-2) !important;
    }

    #trust.wholesale-trust .section-header p {
      color: var(--muted);
    }

    #trust.wholesale-trust .eyebrow {
      color: var(--navy) !important;
      background: rgba(16,40,74,.08) !important;
      border: 1px solid rgba(16,40,74,.08);
    }

    #trust.wholesale-trust .eyebrow::before {
      background: var(--gold) !important;
      box-shadow: 0 0 0 4px rgba(228,163,66,.18) !important;
    }

    #trust.wholesale-trust .trust-card {
      position: relative;
      min-height: 280px;
      padding: 28px 28px 42px;
      overflow: hidden;
      cursor: pointer;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 36px rgba(16,40,74,.06);
      transition: transform .5s cubic-bezier(.2,.8,.2,1), background .5s ease, border-color .5s ease, box-shadow .5s ease;
    }

    #trust.wholesale-trust .trust-card > * {
      position: relative;
      z-index: 2;
    }

    #trust.wholesale-trust .trust-card::before {
      content: none;
      display: none;
    }

    #trust.wholesale-trust .trust-card::after {
      content: "";
      position: absolute;
      left: 28px;
      bottom: 22px;
      width: 18%;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      z-index: 2;
      transition: width .62s cubic-bezier(.2,.8,.2,1);
    }

    #trust.wholesale-trust .card-icon {
      position: relative;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border-radius: 19px;
      color: var(--gold-2);
      background: rgba(228,163,66,.16);
      border: 1px solid rgba(228,163,66,.24);
      font-size: 0;
      line-height: 0;
      transition: color .42s ease, background .42s ease, transform .42s ease, box-shadow .42s ease;
    }

    #trust.wholesale-trust .card-icon::before,
    #trust.wholesale-trust .card-icon::after {
      content: none;
      display: none;
    }

    #trust.wholesale-trust .card-icon svg {
      width: 30px;
      height: 30px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    #trust.wholesale-trust .trust-card h3 {
      color: var(--navy);
      transition: color .42s ease;
    }

    #trust.wholesale-trust .trust-card p {
      margin-top: 12px;
      padding-bottom: 26px;
      color: var(--muted);
      transition: color .42s ease;
    }

    #trust.wholesale-trust .trust-card:hover,
    #trust.wholesale-trust .trust-card.is-active {
      transform: translateY(-7px);
      background: var(--navy);
      border-color: var(--navy);
      box-shadow: 0 22px 48px rgba(6,24,51,.30);
    }

    #trust.wholesale-trust .trust-card:hover::before,
    #trust.wholesale-trust .trust-card.is-active::before {
      content: none;
      display: none;
    }

    #trust.wholesale-trust .trust-card:hover::after,
    #trust.wholesale-trust .trust-card.is-active::after {
      width: calc(100% - 60px);
    }

    #trust.wholesale-trust .trust-card:hover .card-icon,
    #trust.wholesale-trust .trust-card.is-active .card-icon {
      color: #fff;
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.16);
      box-shadow: none;
      transform: none;
    }

    #trust.wholesale-trust .trust-card:hover h3,
    #trust.wholesale-trust .trust-card.is-active h3 {
      color: var(--gold-2);
    }

    #trust.wholesale-trust .trust-card:hover p,
    #trust.wholesale-trust .trust-card.is-active p {
      color: rgba(255,255,255,.82);
    }

    @media (max-width: 760px) {
      #trust.wholesale-trust .trust-card {
        min-height: auto;
        padding: 24px 22px 40px;
        border-radius: 24px;
      }

      #trust.wholesale-trust .trust-card::after {
        left: 22px;
        bottom: 22px;
      }

      #trust.wholesale-trust .trust-card:hover::after,
      #trust.wholesale-trust .trust-card.is-active::after {
        width: calc(100% - 44px);
      }
    }

    .form-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 42px; align-items: start; }
    .registration-aside { position: sticky; top: 104px; }
    .aside-card { padding: 34px; border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: var(--shadow); overflow: hidden; position: relative; }
    .aside-card::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 210px; height: 210px; border-radius: 50%; background: rgba(228,163,66,.12); }
    .aside-card h3 { color: #fff; }
    .aside-card p { color: rgba(255,255,255,.73); margin-top: 14px; }
    .aside-points { display: grid; gap: 14px; margin-top: 26px; position: relative; z-index: 2; }
    .aside-point { display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.55; }
    .form-card { padding: 34px; border-radius: var(--radius-xl); background: #fff; border: 1px solid var(--line); box-shadow: var(--soft-shadow); }
    .form-title { margin-bottom: 24px; }
    .form-title p { margin-top: 10px; }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .field.full { grid-column: 1 / -1; }
    label { display: block; margin-bottom: 8px; color: var(--navy-2); font-size: 13px; font-weight: 900; letter-spacing: .02em; }
    input, select, textarea {
      width: 100%;
      border: 1px solid rgba(16,40,74,.15);
      border-radius: 16px;
      background: #fffdf9;
      color: var(--text);
      padding: 14px 15px;
      font-size: 14.5px;
      outline: none;
      transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }
    .form-message.error { display: block; background: rgba(185,64,64,.09); color: var(--error); border: 1px solid rgba(185,64,64,.22); }

    #faq.wholesale-faq .section-header h2 .text-gold { color: var(--gold) !important; }
    .wholesale-accordion { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
    .wholesale-accordion-item { border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 28px rgba(16,40,74,.05); overflow: hidden; transition: border-color .28s ease, box-shadow .28s ease; }
    .wholesale-accordion-item.active { border-color: rgba(228,163,66,.34); box-shadow: 0 16px 38px rgba(16,40,74,.08); }
    .wholesale-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border: 0; background: transparent; color: var(--navy-2); cursor: pointer; text-align: left; font-weight: 850; font-size: 16px; }
    .wholesale-accordion-question { min-width: 0; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; line-height: 1.35; }
    .wholesale-accordion-icon { position: relative; width: 32px; height: 32px; border-radius: 999px; background: rgba(228,163,66,.14); color: #a66d1d; display: grid; place-items: center; flex: 0 0 auto; transition: transform .24s ease, background .24s ease, color .24s ease; }
    .wholesale-accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .wholesale-accordion-panel p { padding: 0 24px 22px; font-size: 15px; line-height: 1.72; }
    .wholesale-accordion-item.active .wholesale-accordion-panel { max-height: 240px; }
    .wholesale-accordion-item.active .wholesale-accordion-icon { background: var(--gold); color: #fff; font-size: 0; transform: none; }
    .wholesale-accordion-item.active .wholesale-accordion-icon::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 11px;
      height: 7px;
      box-sizing: border-box;
      border-left: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translate(-50%, -62%) rotate(-45deg);
    }

    .wholesale-cta-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      padding: 42px;
      border-radius: 38px;
      background:
        radial-gradient(circle at 78% 16%, rgba(228,163,66,.18), transparent 28%),
        linear-gradient(135deg, var(--cream-2), #fff);
      border: 1px solid rgba(228,163,66,.18);
      box-shadow: var(--soft-shadow);
    }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.55); font-size: 13px; }

    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.show { opacity: 1; transform: translateY(0); }

    @media (max-width: 1120px) {
      .nav-links, .nav-actions { display: none; }
      .mobile-toggle { display: block; }
      .nav-wrap { min-height: 72px; }
      .nav-links.open { display: flex; position: absolute; left: 24px; right: 24px; top: 82px; flex-direction: column; align-items: stretch; border-radius: 24px; padding: 12px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
      .nav-links.open .nav-link { text-align: center; }
      .wholesale-hero-grid, .split-grid, .category-wrap, .form-layout { grid-template-columns: 1fr; }
      .wholesale-hero { display: block; padding-top: 122px; min-height: auto; aspect-ratio: auto; }
      .wholesale-hero-grid { max-width: 820px; padding: 58px 0 42px; text-align: center; }
      .wholesale-hero-content { display: block; max-width: 820px; }
      .wholesale-hero-content h1 { margin-left: auto; margin-right: auto; }
      .wholesale-hero-content, .wholesale-hero-content .lead, .wholesale-hero-proof { margin-left: auto; margin-right: auto; }
      .wholesale-hero-actions { justify-content: center; }
      .wholesale-hero-proof { width: min(100%, 720px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
      .wholesale-hero-visual { min-height: 520px; }
      .wholesale-audience-grid, .wholesale-process-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .wholesale-process-step { border-right: 0; border-bottom: 1px solid var(--line); }
      .wholesale-process-step:nth-child(odd) { border-right: 1px solid var(--line); }
      .wholesale-process-step:nth-child(3), .wholesale-process-step:nth-child(4) { border-bottom: 0; }
      .wholesale-bento-grid { grid-template-columns: 1fr 1fr; }
      .wholesale-bento-card.large { grid-column: 1 / -1; min-height: 430px; }
      .category-note, .registration-aside { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 32px, var(--container)); }
      .section { padding: 72px 0; }
      .section-header { margin-bottom: 36px; }
      h1 { font-size: clamp(40px, 12vw, 54px); }
      h2 { font-size: clamp(30px, 9vw, 38px); }
      .wholesale-hero { padding: 112px 0 58px; }
      .wholesale-hero-grid { gap: 0; padding: 0; }
      .wholesale-hero-content h1 { font-size: clamp(34px, 9vw, 44px); }
      .wholesale-hero-proof, .wholesale-audience-grid, .wholesale-process-grid, .trust-grid, .wholesale-category-grid, .form-grid, .footer-grid, .wholesale-bento-grid, .wholesale-cta-panel { grid-template-columns: 1fr; }
      .wholesale-hero-actions, .wholesale-cta-actions, .form-actions { flex-direction: column; align-items: stretch; }
      .wholesale-hero-actions .btn, .wholesale-cta-actions .btn, .form-actions .btn { width: 100%; }
      .wholesale-hero-visual { min-height: 500px; }
      .buyer-panel { left: 20px; right: 20px; width: auto; top: 24px; }
      .visual-product-main { left: 22px; width: 220px; bottom: 78px; }
      .wholesale-market-card { right: 18px; bottom: 18px; width: 218px; }
      .gold-orbit { display: none; }
      .wholesale-process-step, .wholesale-process-step:nth-child(odd) { border-right: 0; border-bottom: 1px solid var(--line); }
      .wholesale-process-step:last-child { border-bottom: 0; }
      .wholesale-bento-card.large { min-height: 430px; }
      .wholesale-bento-visual { height: 140px; }
      .wholesale-cta-panel, .form-card, .aside-card, .challenge-panel { padding: 26px; border-radius: 28px; }
      .footer-bottom { flex-direction: column; }
    }

    @media (max-width: 460px) {
      .wholesale-hero-proof .proof-card { padding: 14px; }
      .visual-product-main { width: 194px; }
      .wholesale-market-card { width: 196px; }
      .wholesale-audience-card, .wholesale-bento-card, .wholesale-category-card, .trust-card { padding: 22px; }
    }

    @media (max-width: 1020px) {
      #process.wholesale-process-section .wholesale-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      #process.wholesale-process-section .wholesale-process-step,
      #process.wholesale-process-section .wholesale-process-step:nth-child(odd),
      #process.wholesale-process-section .wholesale-process-step:last-child {
        border: 1px solid var(--line);
      }
    }

    @media (max-width: 760px) {
      #process.wholesale-process-section .wholesale-process-grid {
        grid-template-columns: 1fr;
      }

      #process.wholesale-process-section .wholesale-process-step {
        min-height: 260px;
        padding: 24px 22px 36px;
        border-radius: 24px;
      }

      #categories.wholesale-categories-section .wholesale-category-card {
        min-height: auto;
        padding: 22px 22px 36px;
      }
    }
  


/* Custom Font styling for homepage sections body text (excluding titles) */
.audience p, .audience a, .audience button, .audience span, .audience small, .audience strong, .audience li,
.solutions p, .solutions a, .solutions button, .solutions span, .solutions small, .solutions strong, .solutions li,
.process p, .process a, .process button, .process span, .process small, .process strong, .process li,
.categories p, .categories a, .categories button, .categories span, .categories small, .categories strong, .categories li,
.why p, .why a, .why button, .why span, .why small, .why strong, .why li,
.split-audience p, .split-audience a, .split-audience button, .split-audience span, .split-audience small, .split-audience strong, .split-audience li,
.statement p, .statement a, .statement button, .statement span, .statement small, .statement strong, .statement li,
.final-cta p, .final-cta a, .final-cta button, .final-cta span, .final-cta small, .final-cta strong, .final-cta li {
  font-family: "Lora", Georgia, serif !important;
}




/* Hide hard breaks in hero titles on mobile to allow natural wrapping */
@media (max-width: 760px) {
  .hero-br {
    display: none;
  }
}


/* =========================================================
   SCOPED VARIABLES FOR NEW ABOUT US PAGE SECTIONS
   ========================================================= */
.about-hero, .about-page-card, .about-page-aside, .about-page-body, .about-mini-feature, .about-mini-icon, .about-values-grid, .about-value-card, .about-cta-band, .about-cta-actions, .about-eyebrow, .about-connection-board, .about-node {
  --navy: #0B1D3D;
  --navy-2: #122A55;
  --gold: #E4A342;
  --gold-dark: #c98622;
  --cream: #FBF6EE;
  --cream-2: #FFF9F0;
  --soft-gold: rgba(228, 163, 66, 0.13);
  --text: #102039;
  --muted: #5d6573;
  --line: rgba(11, 29, 61, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(11, 29, 61, 0.10);
  --shadow-soft: 0 14px 44px rgba(11, 29, 61, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-pill: 999px;
  --font: "Lora", Georgia, serif;
  --container: 1180px;
}

    /* Hero */
    .about-hero {
      position: relative;
      padding: 82px 0 56px;
      overflow: hidden;
    }

    .about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.72) 46%, rgba(251,246,238,.92) 100%),
        radial-gradient(circle at 78% 26%, rgba(228,163,66,.28), transparent 28%);
      z-index: -2;
    }

    .about-hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      align-items: center;
      gap: 54px;
    }

    .about-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: var(--radius-pill);
      background: rgba(228,163,66,.14);
      color: var(--gold-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .about-eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 5px rgba(228,163,66,.16);
    }

    h1, h2, h3, p { margin: 0; }

    .about-hero h1 {
      color: var(--navy);
      font-size: clamp(42px, 5vw, 68px);
      line-height: .98;
      letter-spacing: -.055em;
      font-weight: 600;
      max-width: 720px;
    }

    .about-hero p {
      margin-top: 22px;
      color: var(--muted);
      font-size: clamp(16px, 1.25vw, 18px);
      line-height: 1.78;
      max-width: 620px;
    }

    .about-hero-actions {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .about-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 24px;
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 700;
      border: 1px solid transparent;
      cursor: pointer;
      transition: .25s ease;
    }

    .about-btn-primary {
      background: linear-gradient(135deg, var(--gold), #f2b85e);
      color: #fff;
      box-shadow: 0 16px 34px rgba(228,163,66,.28);
    }

    .about-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(228,163,66,.36); }

    .about-btn-secondary {
      background: rgba(255,255,255,.72);
      border-color: rgba(228,163,66,.6);
      color: var(--navy);
    }

    .about-btn-secondary:hover { background: #fff; border-color: var(--gold); transform: translateY(-2px); }

    .about-hero-card {
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(11,29,61,.10);
      border-radius: 34px;
      padding: 32px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .about-hero-card::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -72px;
      top: -82px;
      background: radial-gradient(circle, rgba(228,163,66,.18), transparent 68%);
    }

    .about-connection-board {
      position: relative;
      min-height: 400px;
      border-radius: 26px;
      background:
        linear-gradient(90deg, transparent 49.75%, rgba(228,163,66,.60) 50%, transparent 50.3%),
        linear-gradient(180deg, rgba(255,250,242,.84), rgba(255,255,255,.94));
      border: 1px solid rgba(228,163,66,.20);
      padding: 30px;
    }

    .about-board-title {
      text-align: center;
      color: var(--navy);
      font-weight: 600;
      font-size: 25px;
      letter-spacing: -.03em;
      margin-bottom: 28px;
    }

    .about-node {
      position: absolute;
      width: 235px;
      padding: 18px 18px 18px 54px;
      border-radius: 22px;
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(11,29,61,.09);
      box-shadow: 0 16px 36px rgba(11,29,61,.08);
    }

    .about-node.one { left: 28px; top: 96px; }
    .about-node.two { right: 22px; top: 168px; }
    .about-node.three { left: 44px; bottom: 48px; }

    .about-node::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 23px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 8px rgba(228,163,66,.12), 0 0 24px rgba(228,163,66,.55);
    }

    .about-node-icon {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 8px;
      color: var(--navy);
    }

    .about-node h3 {
      color: var(--navy);
      font-size: 17px;
      line-height: 1.16;
      letter-spacing: -.02em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .about-node p {
      margin-top: 7px;
      color: var(--text);
      font-size: 12.5px;
      line-height: 1.48;
    }

    .about-center-glow {
      position: absolute;
      left: 50%;
      top: 25%;
      transform: translateX(-50%);
      width: 2px;
      height: 240px;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
      box-shadow: 0 0 22px rgba(228,163,66,.7);
    }

    /* Sections */
    section { padding: 62px 0; }

    .section-head {
      max-width: 760px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .section-head h2 {
      color: var(--navy);
      font-size: clamp(31px, 3.2vw, 44px);
      line-height: 1.08;
      letter-spacing: -.045em;
      font-weight: 600;
    }

    .section-head p {
      margin-top: 15px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
    }

    .about-page-card {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 0;
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(11,29,61,.10);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .about-page-aside {
      background: linear-gradient(145deg, var(--navy), #112b58);
      color: #fff;
      padding: 42px;
      position: relative;
      overflow: hidden;
    }

    .about-page-aside::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      left: -120px;
      bottom: -140px;
      border-radius: 50%;
      border: 1px solid rgba(228,163,66,.35);
    }

    .about-page-aside span {
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .about-page-aside h2 {
      margin-top: 16px;
      font-size: clamp(30px, 3vw, 42px);
      line-height: 1.08;
      letter-spacing: -.045em;
      font-weight: 600;
      max-width: 380px;
    }

    .about-page-aside p {
      margin-top: 18px;
      color: rgba(255,255,255,.76);
      font-size: 15.5px;
      line-height: 1.78;
      max-width: 420px;
    }

    .about-page-body {
      padding: 42px;
      display: grid;
      gap: 20px;
    }

    .about-mini-feature {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 18px;
      align-items: start;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(11,29,61,.09);
    }

    .about-mini-feature:last-child { border-bottom: 0; padding-bottom: 0; }

    .about-mini-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(228,163,66,.14);
      color: var(--gold-dark);
      border: 1px solid rgba(228,163,66,.22);
    }

    .about-mini-feature h3 {
      color: var(--navy);
      font-size: 21px;
      line-height: 1.16;
      letter-spacing: -.025em;
      font-weight: 700;
    }

    .about-mini-feature p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .about-values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .about-value-card {
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(11,29,61,.10);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: 0 14px 38px rgba(11,29,61,.06);
      transition: .25s ease;
    }

    .about-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(228,163,66,.34); }

    .about-value-card span {
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: var(--soft-gold);
      color: var(--gold-dark);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .about-value-card h3 {
      color: var(--navy);
      font-size: 20px;
      letter-spacing: -.025em;
      line-height: 1.18;
    }

    .about-value-card p {
      margin-top: 9px;
      color: var(--muted);
      font-size: 14.8px;
      line-height: 1.68;
    }

    .about-cta-band {
      background: linear-gradient(135deg, var(--navy), #102a56);
      border-radius: 36px;
      padding: 42px;
      color: #fff;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-cta-band::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      right: -160px;
      top: -180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(228,163,66,.22), transparent 65%);
    }

    .about-cta-band h2 {
      font-size: clamp(29px, 3vw, 42px);
      line-height: 1.08;
      letter-spacing: -.045em;
      font-weight: 600;
      max-width: 720px;
      position: relative;
      z-index: 1;
    }

    .about-cta-band p {
      margin-top: 12px;
      color: rgba(255,255,255,.75);
      font-size: 15.5px;
      line-height: 1.7;
      max-width: 760px;
      position: relative;
      z-index: 1;
    }

    .about-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
      position: relative;
      z-index: 1;
    }

    .about-cta-actions .about-btn-secondary {
      background: rgba(255,255,255,.08);
      color: #fff;
      border-color: rgba(255,255,255,.24);
    }

    footer {
      padding: 34px 0 42px;
      color: var(--muted);
      border-top: 1px solid rgba(11,29,61,.08);
      background: rgba(255,255,255,.46);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-size: 13px;
    }

    .footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--gold-dark); }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: .7s ease;
    }

    .reveal.in-view { opacity: 1; transform: translateY(0); }

    @media (max-width: 1024px) {
      .about-hero-grid, .about-page-card, .about-cta-band { grid-template-columns: 1fr; }
      .about-hero { padding-top: 58px; }
      .about-hero-card { max-width: 680px; }
      .about-cta-actions { justify-content: flex-start; }
      .about-values-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 820px) {
      .nav-links, .nav-cta { display: none; }
      .menu-btn { display: inline-grid; place-items: center; }
      .site-header.open .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 88px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        background: #fff;
        box-shadow: var(--shadow);
        border: 1px solid rgba(11,29,61,.08);
      }
      .site-header.open .nav-link { display: block; }
      .about-connection-board { min-height: auto; padding: 24px; background: linear-gradient(180deg, rgba(255,250,242,.84), #fff); }
      .about-center-glow { display: none; }
      .about-node { position: relative; width: auto; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; margin-bottom: 14px; }
      .about-node:last-child { margin-bottom: 0; }
      .about-page-aside, .about-page-body, .about-cta-band { padding: 30px; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 28px, var(--container)); }
      .nav { height: 74px; }
      .brand-text strong { font-size: 20px; }
      .logo-mark { width: 44px; height: 44px; font-size: 19px; }
      .about-hero { padding: 44px 0 38px; }
      section { padding: 46px 0; }
      .about-hero h1 { font-size: 41px; }
      .about-hero-actions, .about-cta-actions { flex-direction: column; align-items: stretch; }
      .about-btn { width: 100%; }
      .about-hero-card { padding: 18px; border-radius: 26px; }
      .about-board-title { font-size: 22px; }
      .about-mini-feature { grid-template-columns: 1fr; }
      .footer-row { flex-direction: column; align-items: flex-start; }
    }
  


/* =========================================================
   SCOPED VARIABLES FOR NEW CONTACT PAGE SECTIONS
   ========================================================= */
.contact-hero, .contact-hero-grid, .contact-hero-copy, .contact-hero-actions, .contact-hero-proof, .contact-proof-card, .contact-hero-visual, .contact-board-title, .contact-connection-line, .contact-visual-node, .contact-node-dot, .contact-page-section, .contact-page-shell, .contact-page-sticky, .contact-page-info-card, .contact-info-list, .contact-info-icon, .contact-quick-note, .contact-form-panel, .contact-form-head, .contact-form-body, .contact-form-section, .contact-section-title, .contact-choice-grid, .contact-choice-card, .contact-field-grid, .contact-field, .contact-inline-checks, .contact-check, .contact-form-footer, .contact-privacy-note, .contact-submit-btn, .contact-support-strip, .contact-strip-grid, .contact-mini-card, .contact-toast, .contact-eyebrow {
  --navy: #0b2345;
  --navy-2: #12305a;
  --gold: #E4A342;
  --gold-dark: #c78324;
  --cream: #fbf7f0;
  --cream-2: #fffaf3;
  --soft-gold: #fff1d8;
  --text: #18243b;
  --muted: #66738a;
  --line: rgba(11, 35, 69, 0.12);
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(11, 35, 69, 0.12);
  --shadow-soft: 0 16px 42px rgba(11, 35, 69, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font: "Lora", Georgia, serif;
  --container: 1180px;
}

    /* Same premium hero direction as the other pages */
    .contact-hero {
      position: relative;
      padding: 92px 0 76px;
      overflow: hidden;
    }

    .contact-hero::before {
      content: "";
      position: absolute;
      right: -150px;
      top: 12px;
      width: 620px;
      height: 620px;
      background: radial-gradient(circle, rgba(228, 163, 66, 0.18), transparent 66%);
      pointer-events: none;
    }

    .contact-hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 56px;
      align-items: center;
    }

    .contact-hero h1 {
      margin-bottom: 22px;
      font-size: clamp(44px, 4.7vw, 66px);
      line-height: 1.01;
      letter-spacing: -0.045em;
      color: var(--navy);
      max-width: 680px;
    }

    .contact-hero-copy {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.78;
      max-width: 620px;
      margin-bottom: 30px;
    }

    .contact-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .contact-hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 650px;
    }

    .contact-proof-card {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(11,35,69,0.09);
      box-shadow: 0 12px 30px rgba(11,35,69,0.06);
    }

    .contact-proof-card strong {
      display: block;
      color: var(--navy);
      font-size: 15px;
      margin-bottom: 6px;
    }

    .contact-proof-card span {
      display: block;
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.5;
    }

    .contact-hero-visual {
      position: relative;
      min-height: 440px;
      border-radius: 40px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,248,238,0.78)),
        radial-gradient(circle at 70% 20%, rgba(228,163,66,0.22), transparent 35%);
      border: 1px solid rgba(11,35,69,0.1);
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 34px;
    }

    .contact-hero-visual::before {
      content: "";
      position: absolute;
      inset: 26px;
      border: 1px solid rgba(228, 163, 66, 0.17);
      border-radius: 30px;
      pointer-events: none;
    }

    .contact-board-title {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--navy);
      font-size: 26px;
      font-weight: 600;
      letter-spacing: -0.025em;
      margin: 6px 0 34px;
    }

    .contact-connection-line {
      position: absolute;
      left: 50%;
      top: 110px;
      bottom: 54px;
      width: 2px;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
      box-shadow: 0 0 22px rgba(228,163,66,0.75);
    }

    .contact-visual-node {
      position: relative;
      z-index: 2;
      width: 47%;
      min-height: 108px;
      padding: 18px 18px 18px 64px;
      border-radius: 24px;
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(11,35,69,0.1);
      box-shadow: 0 18px 45px rgba(11,35,69,0.08);
    }

    .contact-visual-node + .contact-visual-node { margin-top: 26px; }
    .contact-visual-node.left { margin-right: auto; }
    .contact-visual-node.right { margin-left: auto; }

    .contact-node-dot {
      position: absolute;
      left: 18px;
      top: 22px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 8px rgba(228,163,66,0.14), 0 12px 24px rgba(228,163,66,0.28);
    }

    .contact-visual-node h3 {
      margin-bottom: 6px;
      color: var(--navy);
      font-size: 18px;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .contact-visual-node p {
      margin: 0;
      color: var(--muted);
      font-size: 12.7px;
      line-height: 1.48;
    }

    .contact-page-section {
      padding: 24px 0 88px;
    }

    .contact-page-shell {
      display: grid;
      grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.78fr);
      gap: 34px;
      align-items: start;
    }

    .contact-page-sticky {
      position: sticky;
      top: 110px;
      align-self: start;
    }

    .contact-page-info-card {
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(11,35,69,0.1);
      box-shadow: var(--shadow-soft);
      padding: 30px;
      overflow: hidden;
      position: relative;
    }

    .contact-page-info-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 7px;
      background: linear-gradient(180deg, var(--gold), rgba(228,163,66,0.18), var(--navy));
    }

    .contact-page-info-card h2 {
      color: var(--navy);
      font-size: clamp(28px, 2.8vw, 38px);
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 12px;
    }

    .contact-page-info-card > p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.68;
      margin-bottom: 22px;
    }

    .contact-info-list {
      display: grid;
      gap: 14px;
      margin: 0 0 24px;
      padding: 0;
      list-style: none;
    }

    .contact-info-list li {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 13px;
      align-items: start;
      padding: 15px;
      border-radius: 18px;
      background: rgba(251, 247, 240, 0.78);
      border: 1px solid rgba(228, 163, 66, 0.15);
    }

    .contact-info-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(228, 163, 66, 0.14);
      color: var(--gold-dark);
      font-weight: 700;
      font-size: 13px;
    }

    .contact-info-list strong {
      display: block;
      color: var(--navy);
      font-size: 15px;
      margin-bottom: 5px;
    }

    .contact-info-list span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .contact-quick-note {
      padding: 18px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--navy), #143763);
      color: rgba(255,255,255,0.78);
      box-shadow: 0 16px 36px rgba(11,35,69,0.18);
    }

    .contact-quick-note strong {
      display: block;
      color: #fff;
      font-size: 16px;
      margin-bottom: 8px;
    }

    .contact-quick-note p {
      margin: 0;
      font-size: 13px;
      line-height: 1.56;
    }

    .contact-form-panel {
      position: relative;
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.93);
      border: 1px solid rgba(11, 35, 69, 0.11);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .contact-form-panel::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 8px;
      background: linear-gradient(90deg, var(--gold), #f4c47c, var(--navy));
      pointer-events: none;
    }

    .contact-form-head {
      padding: 34px 34px 20px;
      border-bottom: 1px solid rgba(11,35,69,0.08);
    }

    .contact-form-head h2 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: clamp(30px, 2.7vw, 42px);
      line-height: 1.06;
      letter-spacing: -0.035em;
    }

    .contact-form-head p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.62;
      max-width: 700px;
    }

    /* Form is intentionally NOT an internal fixed scroll box.
       Page scroll handles the long form while the left info column stays sticky. */
    .contact-form-body {
      padding: 28px 34px 34px;
    }

    .contact-form-section {
      padding: 0 0 28px;
      margin-bottom: 28px;
      border-bottom: 1px solid rgba(11,35,69,0.09);
    }

    .contact-form-section:last-of-type { border-bottom: 0; margin-bottom: 0; }

    .contact-section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: var(--navy);
      font-size: 18px;
      font-weight: 700;
    }

    .contact-section-title span {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: var(--navy);
      color: #fff;
      font-size: 13px;
      box-shadow: 0 10px 22px rgba(11,35,69,0.14);
      flex: 0 0 auto;
    }

    .contact-choice-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .contact-choice-card {
      position: relative;
      cursor: pointer;
    }

    .contact-choice-card input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .contact-choice-card span {
      display: block;
      padding: 16px;
      border-radius: 18px;
      border: 1px solid rgba(11,35,69,0.12);
      background: #fff;
      color: var(--navy);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 700;
      transition: 0.22s ease;
      min-height: 86px;
    }

    .contact-choice-card small {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 500;
      line-height: 1.4;
    }

    .contact-choice-card input:checked + span {
      border-color: var(--gold);
      background: linear-gradient(180deg, #fff8ee, #fff);
      box-shadow: 0 14px 30px rgba(228, 163, 66, 0.16);
    }

    .contact-field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .contact-field { display: grid; gap: 8px; }
    .contact-field.full { grid-column: 1 / -1; }

    label {
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
    }

    .required { color: var(--gold-dark); }

    input, select, textarea {
      width: 100%;
      border: 1px solid rgba(11,35,69,0.14);
      background: rgba(255,255,255,0.94);
      border-radius: 14px;
      min-height: 50px;
      padding: 13px 15px;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: 0.22s ease;
    }

    textarea {
      min-height: 132px;
      resize: vertical;
      line-height: 1.55;
    }

    input:focus, select:focus, textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(228, 163, 66, 0.14);
    }

    .hint {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .conditional {
      display: none;
      animation: fadeIn 0.25s ease both;
    }
    .conditional.is-visible { display: block; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .contact-inline-checks {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .contact-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 13px 14px;
      border: 1px solid rgba(11,35,69,0.11);
      border-radius: 14px;
      background: rgba(251,247,240,0.6);
      color: var(--text);
      font-size: 13px;
      line-height: 1.4;
      cursor: pointer;
    }

    .contact-check input { width: 17px; height: 17px; min-height: auto; margin: 2px 0 0; accent-color: var(--gold); flex: 0 0 auto; }

    .contact-form-footer {
      margin: 10px -34px -34px;
      padding: 20px 34px 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.92), #fff);
      border-top: 1px solid rgba(11,35,69,0.09);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .contact-privacy-note {
      max-width: 450px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
      margin: 0;
    }

    .contact-submit-btn {
      min-width: 190px;
      min-height: 52px;
      border-radius: 999px;
      border: 0;
      background: var(--gold);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 16px 34px rgba(228, 163, 66, 0.28);
      transition: 0.25s ease;
    }

    .contact-submit-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }

    .contact-support-strip {
      padding: 0 0 84px;
    }

    .contact-strip-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .contact-mini-card {
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(11,35,69,0.09);
      box-shadow: 0 12px 34px rgba(11,35,69,0.06);
    }

    .contact-mini-card strong {
      display: block;
      color: var(--navy);
      font-size: 17px;
      margin-bottom: 8px;
    }

    .contact-mini-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.58;
    }

    .site-footer {
      padding: 38px 0;
      background: var(--navy);
      color: rgba(255,255,255,0.76);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font-size: 13px;
    }

    .footer-inner strong { color: #fff; }

    .contact-toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%) translateY(20px);
      padding: 14px 20px;
      border-radius: 999px;
      background: var(--navy);
      color: #fff;
      box-shadow: 0 18px 45px rgba(11,35,69,0.24);
      opacity: 0;
      pointer-events: none;
      transition: 0.25s ease;
      z-index: 100;
      font-size: 14px;
    }

    .contact-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: 0.7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {
      .menu-toggle { display: grid; place-items: center; }
      .nav-links, .header-cta { display: none; }
      .nav.is-open .nav-links {
        display: grid;
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        border-radius: 24px;
        background: #fff;
        box-shadow: var(--shadow-soft);
        padding: 14px;
      }
      .contact-hero-grid, .contact-page-shell { grid-template-columns: 1fr; gap: 34px; }
      .contact-page-sticky { position: relative; top: auto; }
      .contact-hero-proof { grid-template-columns: 1fr; }
      .contact-hero-visual { min-height: 390px; }
      .contact-strip-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      .container { width: min(100% - 28px, var(--container)); }
      .contact-hero { padding: 58px 0 50px; }
      .contact-hero h1 { font-size: clamp(38px, 12vw, 50px); }
      .contact-hero-visual { padding: 24px; min-height: auto; }
      .contact-connection-line { display: none; }
      .contact-visual-node, .contact-visual-node.left, .contact-visual-node.right { width: 100%; margin-left: 0; margin-right: 0; }
      .contact-visual-node + .contact-visual-node { margin-top: 14px; }
      .contact-page-info-card, .contact-form-head, .contact-form-body { padding-left: 22px; padding-right: 22px; }
      .contact-choice-grid, .contact-field-grid, .contact-inline-checks { grid-template-columns: 1fr; }
      .contact-form-footer {
        margin-left: -22px;
        margin-right: -22px;
        margin-bottom: -34px;
        padding-left: 22px;
        padding-right: 22px;
        align-items: stretch;
        flex-direction: column;
      }
      .contact-submit-btn { width: 100%; }
      .footer-inner { flex-direction: column; text-align: center; }
    }
  

/* =========================================================
   CONTACT PAGE CONSISTENCY OVERRIDES
   ========================================================= */
.contact-hero {
  --navy: #10284a;
  --navy-2: #061833;
  --navy-3: #193760;
  --gold: #E4A342;
  --gold-2: #f7b84f;
  padding: var(--header-height) 0 0;
  min-height: auto;
  aspect-ratio: 2560 / 830;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 48%, rgba(16,40,74,.14) 0, rgba(16,40,74,.055) 19%, transparent 39%),
    radial-gradient(circle at 65% 22%, rgba(228,163,66,.15) 0, rgba(228,163,66,.055) 24%, transparent 48%),
    radial-gradient(circle at 54% 5%, rgba(255,255,255,.94) 0, rgba(255,255,255,.30) 29%, transparent 55%),
    linear-gradient(125deg, #fffdf8 0%, #faf1e4 48%, #edddc6 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: auto;
  background: none;
  background-image:
    repeating-linear-gradient(to right, transparent 0 27.5px, rgba(117,91,57,.34) 27.5px 28.5px, transparent 28.5px 56px),
    repeating-linear-gradient(to bottom, transparent 0 27.5px, rgba(117,91,57,.34) 27.5px 28.5px, transparent 28.5px 56px);
  -webkit-mask-image: radial-gradient(circle at 28px 28px, #000 0 6px, transparent 7px);
  -webkit-mask-size: 56px 56px;
  mask-image: radial-gradient(circle at 28px 28px, #000 0 6px, transparent 7px);
  mask-size: 56px 56px;
  opacity: .72;
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(228,163,66,.20), transparent 18%),
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,.46), transparent 12%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.contact-hero:hover::after,
.contact-hero:hover .fx-canvas {
  opacity: 1;
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(360px, 430px);
  column-gap: clamp(36px, 4vw, 72px);
  align-items: center;
  padding: 24px 0;
}

.contact-hero-content {
  max-width: 720px;
}

.contact-hero-content > .eyebrow {
  margin-bottom: 8px !important;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 2.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--navy);
}

.contact-hero h1 .text-gold {
  color: var(--gold);
}

.contact-hero-copy {
  max-width: 720px;
  margin: 10px 0 0;
  color: #394960;
  font-size: 14.5px;
  line-height: 1.5;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.contact-hero-actions .btn {
  min-height: 42px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.contact-hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(16,40,74,.18);
}

.contact-hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  box-shadow: 0 16px 38px rgba(16,40,74,.24);
}

.contact-hero-actions .btn-secondary {
  color: var(--navy);
  background: rgba(255,255,255,.48);
  border-color: rgba(16,40,74,.55);
}

.contact-hero-actions .btn-secondary:hover {
  color: var(--gold);
  background: rgba(255,255,255,.72);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(16,40,74,.12);
}

.contact-hero-proof {
  align-self: center;
  width: min(100%, 430px);
  max-width: 430px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 auto;
}

.contact-proof-card.proof-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 14px 10px 11px;
  border-radius: 999px;
  background: rgba(239,229,213,.82);
  border: 1px solid rgba(16,40,74,.08);
  box-shadow: inset 0 0 0 1px rgba(16,40,74,.05);
  text-align: left;
  transform-origin: center;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  animation: heroProofPillEnter .58s cubic-bezier(.2,.8,.2,1) backwards;
}

.contact-proof-card.proof-card:nth-child(2) { animation-delay: .10s; }
.contact-proof-card.proof-card:nth-child(3) { animation-delay: .20s; }

.contact-proof-card.proof-card:hover,
.contact-proof-card.proof-card.is-active {
  z-index: 1;
  transform: translateX(-7px);
  background: rgba(255,255,255,.96);
  border-color: rgba(228,163,66,.34);
  box-shadow: 0 14px 30px rgba(65,44,11,.13);
}

.contact-proof-card .proof-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 24px rgba(228,163,66,.28);
}

.contact-proof-card .proof-card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-proof-card .proof-card-copy {
  display: block;
  min-width: 0;
}

.contact-proof-card .proof-card-copy strong {
  display: block;
  margin: 0 0 2px;
  color: var(--navy-2);
  font-size: 14px;
  line-height: 1.1;
}

.contact-proof-card .proof-card-copy > span {
  display: block;
  margin: 0;
  color: #46556b;
  font-size: 12px;
  line-height: 1.35;
}

.contact-page-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(228,163,66,.10), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}

.contact-page-info-card,
.contact-form-panel,
.contact-mini-card,
.contact-info-list li,
.contact-choice-card span,
.contact-check {
  transition: transform .32s ease, background .32s ease, border-color .32s ease, box-shadow .32s ease, color .32s ease;
}

.contact-page-info-card:hover,
.contact-page-info-card.is-active,
.contact-form-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(228,163,66,.28);
  box-shadow: 0 24px 54px rgba(16,40,74,.13);
}

.contact-page-info-card.is-active,
.contact-page-info-card.is-active:hover {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(228,163,66,.38);
  box-shadow: 0 22px 48px rgba(11,29,61,.28);
}

.contact-page-info-card.is-active::before {
  background: linear-gradient(180deg, var(--gold), rgba(228,163,66,.54), rgba(255,255,255,.16));
}

.contact-page-info-card.is-active .contact-eyebrow {
  background: rgba(255,255,255,.10) !important;
  color: #ffffff !important;
}

.contact-page-info-card.is-active .contact-eyebrow::before {
  background: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(228,163,66,.22) !important;
}

.contact-page-info-card.is-active h2 {
  color: #ffffff;
}

.contact-page-info-card.is-active h2 .text-gold {
  color: var(--gold);
}

.contact-page-info-card.is-active > p {
  color: rgba(255,255,255,.78);
}

.contact-page-info-card.is-active .contact-info-list li {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
}

.contact-page-info-card.is-active .contact-info-icon {
  background: var(--gold);
  color: var(--navy);
}

.contact-page-info-card.is-active .contact-info-list strong {
  color: var(--gold);
}

.contact-page-info-card.is-active .contact-info-list span {
  color: rgba(255,255,255,.76);
}

.contact-page-info-card.is-active .contact-quick-note {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
}

.contact-info-list li:hover,
.contact-choice-card:hover span,
.contact-check:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(228,163,66,.30);
  box-shadow: 0 12px 26px rgba(16,40,74,.08);
}

.contact-page-info-card.is-active .contact-info-list li:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(228,163,66,.32);
  box-shadow: none;
}

.contact-mini-card {
  position: relative;
  overflow: hidden;
}

.contact-mini-card:hover,
.contact-mini-card.is-active {
  transform: translateY(-7px);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 24px 54px rgba(16,40,74,.22);
}

.contact-mini-card:hover strong,
.contact-mini-card.is-active strong {
  color: var(--gold-2);
}

.contact-mini-card:hover p,
.contact-mini-card.is-active p {
  color: rgba(255,255,255,.78);
}

@media (max-width: 1120px) {
  .contact-hero {
    display: block;
    min-height: auto;
    aspect-ratio: auto;
    padding-top: 122px;
  }

  .contact-hero-grid {
    max-width: 820px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 58px 0 42px;
    text-align: center;
  }

  .contact-hero-content,
  .contact-hero-copy,
  .contact-hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-hero-proof {
    width: min(100%, 720px);
    max-width: 720px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .contact-proof-card.proof-card:hover,
  .contact-proof-card.proof-card.is-active {
    transform: translateY(-5px);
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding: 112px 0 58px;
  }

  .contact-hero-grid {
    padding: 0;
  }

  .contact-hero h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .contact-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-hero-actions .btn {
    width: 100%;
  }

  .contact-hero-proof {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-top: 28px;
  }

  .contact-proof-card.proof-card {
    border-radius: 24px;
  }

  .contact-proof-card.proof-card:hover,
  .contact-proof-card.proof-card.is-active,
  .contact-mini-card:hover,
  .contact-mini-card.is-active {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-proof-card.proof-card,
  .contact-proof-card .proof-card-icon,
  .contact-page-info-card,
  .contact-form-panel,
  .contact-mini-card {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================================================
   HOMEPAGE HERO INTERACTIVE SPARKLE TRAIL
   ========================================================= */
.fx-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}

.hero:hover .fx-canvas {
  opacity: 1;
}




/* =========================================================
   CENTER ALIGNED SECTION HEADERS (HOME, BRAND, WHOLESALE)
   ========================================================= */
.section-header,
.section-head {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-header h2,
.section-header h3,
.section-header p,
.section-header .lead,
.section-head h2,
.section-head p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* =========================================================
   TEXT HIGHLIGHT UTILITY
   ========================================================= */
.text-gold {
  color: var(--gold-dark) !important;
}

@keyframes typeCaretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}


/* Bento Card Bullet List */
.solutions-bullet-list {
  margin-top: 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              opacity 0.8s ease-out, 
              margin-top 0.8s ease-out;
}

.solutions-bullet-list li {
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 1.2s ease-out;
}

.solutions-bullet-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
}

.solution-card.is-active .solutions-bullet-list {
  max-height: 220px;
  opacity: 1;
  margin-top: 24px;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              opacity 0.5s ease-in, 
              margin-top 0.5s ease-in;
}

.solution-card.is-active .solutions-bullet-list li {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.4s ease-in;
}


/* =========================================================
   HOMEPAGE CTA OVERLAP OVER FOOTER
   ========================================================= */
.home .final-cta {
  position: static !important;
  overflow: visible !important;
}

.hero-proof {
  width: min(100%, 720px);
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.hero .slide__heading {
  min-height: 2.16em;
  margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(19, 41, 75, 0.05);
}

.hero .text-gold {
  color: var(--gold) !important;
  background: var(--navy) !important;
  padding: 2px 10px !important;
  border-radius: 8px !important;
  box-decoration-break: clone !important;
  -webkit-box-decoration-break: clone !important;
}

.hero .slide__text {
  min-height: 0;
  margin-bottom: 14px;
}

.hero .slide__buttons {
  gap: 10px;
}

.hero .slide__buttons .btn {
  min-height: 46px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.hero-proof__assurance,
.hero-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-proof-card,
.hero-stat {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 40, 74, .10);
  box-shadow: 0 14px 34px rgba(16, 40, 74, .08);
  backdrop-filter: blur(12px);
  transition:
    transform var(--duration-normal) var(--ease-out),
    background var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.hero-proof-card:hover,
.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .9);
  border-color: rgba(247, 183, 86, .55);
  box-shadow: 0 18px 44px rgba(16, 40, 74, .14), 0 8px 24px rgba(247, 183, 86, .16);
}

.hero-proof-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
}

.hero-proof-card__icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 1px solid rgba(255, 255, 255, .48);
  box-shadow: 0 10px 22px rgba(228, 163, 66, .32);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.hero-proof-card:hover .hero-proof-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 26px rgba(228, 163, 66, .42);
}

.hero-proof-card__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: translate(-50%, -62%) rotate(-45deg);
}

.hero-proof-card strong,
.hero-stat strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.1;
}

.hero-proof-card small,
.hero-stat span {
  display: block;
  color: #46556b;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 2px;
}

.hero-stat {
  min-height: 80px;
  padding: 16px 18px;
  text-align: center;
}

.hero-stat::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: left var(--duration-normal) var(--ease-out), right var(--duration-normal) var(--ease-out);
}

.hero-stat:hover::after {
  left: 12%;
  right: 12%;
}

.hero-stat strong {
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -.02em;
}

.hero > .slider__controls {
  position: absolute;
  inset: 0;
  z-index: 14;
  display: block;
  margin: 0;
  pointer-events: none;
}

.hero > .slider__controls .slider__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.hero > .slider__controls .slider__arrows {
  display: block;
}

.hero > .slider__controls .slider__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border-color: rgba(16, 40, 74, .14);
  background: rgba(255, 255, 255, .58);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(16, 40, 74, .12);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.hero > .slider__controls #sliderPrev {
  left: 28px;
}

.hero > .slider__controls #sliderNext {
  right: 28px;
}

.hero > .slider__controls .slider__arrow:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: var(--gold);
  background: rgba(255, 255, 255, .76);
  color: var(--gold);
}

@media (max-width: 1024px) {
  .hero .slide__heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 760px) {
  .hero-proof {
    margin-top: 36px !important;
    gap: 12px;
  }

  .hero .slide__heading {
    font-size: clamp(30px, 8vw, 34px) !important;
    line-height: 1.08 !important;
  }

  .hero .hero-title-line {
    display: inline !important;
    white-space: normal !important;
  }

  .hero .slide__buttons .btn {
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero > .slider__controls .slider__dots {
    bottom: 16px;
  }

  .hero > .slider__controls .slider__arrow {
    width: 42px;
    height: 42px;
  }

  .hero > .slider__controls #sliderPrev {
    left: 14px;
  }

  .hero > .slider__controls #sliderNext {
    right: 14px;
  }

  .hero-proof__assurance {
    grid-template-columns: 1fr;
  }

  .hero-proof__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-proof-card {
    min-height: 52px;
    padding: 9px 11px;
  }

  .hero-stat {
    min-height: 66px;
    padding: 12px 8px;
  }

  .hero-stat strong {
    font-size: 22px;
  }

}

@media (max-width: 520px) {
  .hero .slide__heading {
    font-size: clamp(21px, 6.15vw, 30px);
    letter-spacing: 0;
  }
}

.home .cta-box {
  position: relative;
  z-index: 5;
  margin-bottom: -304px;
}

.brand-final-cta .cta-box,
.wholesale-final-cta .cta-box {
  position: relative;
  z-index: 5;
  margin-bottom: -228px;
}

.home .footer,
.footer.footer--cta-overlap {
  position: relative;
  z-index: 2;
  padding-top: 256px !important;
  padding-bottom: 12px !important;
}

.home .footer__grid,
.footer.footer--cta-overlap .footer__grid {
  padding-bottom: 14px !important;
}

.home .footer__bottom,
.footer.footer--cta-overlap .footer__bottom {
  justify-content: center !important;
  padding: 10px 0 0 !important;
  text-align: center;
}

@media (max-width: 760px) {
  .home .cta-box {
    margin-bottom: -320px;
  }
  .brand-final-cta .cta-box,
  .wholesale-final-cta .cta-box {
    margin-bottom: -246px;
  }
  .brand-final-cta .brand-cta-card,
  .wholesale-final-cta .wholesale-cta-card {
    padding: 44px 24px;
    border-radius: 26px;
  }
  .home .footer,
  .footer.footer--cta-overlap {
    padding-top: 296px !important;
    padding-bottom: 12px !important;
  }
  .home .footer__grid,
  .footer.footer--cta-overlap .footer__grid {
    padding-bottom: 12px !important;
  }
  .home .footer__bottom,
  .footer.footer--cta-overlap .footer__bottom {
    justify-content: center !important;
    padding: 10px 0 0 !important;
    text-align: center;
  }
}

/* =========================================================
   WHOLESALE REGISTRATION PAGE HERO PROOF PILLS
   ========================================================= */

/* Layout overrides for Registration Hero */
.registration-page-hero .wholesale-hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
}

.registration-page-hero .wholesale-hero-content {
  display: block !important;
  max-width: 720px !important;
}

.registration-page-hero .wholesale-hero-content > .eyebrow,
.registration-page-hero .wholesale-hero-content h1,
.registration-page-hero .wholesale-hero-content .lead,
.registration-page-hero .wholesale-hero-actions {
  grid-area: auto !important;
  max-width: 100% !important;
}

@media (min-width: 1121px) {
  .registration-page-hero .wholesale-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(360px, 430px);
    column-gap: clamp(36px, 4vw, 72px);
    align-items: center;
    padding: 24px 0;
  }
  .registration-page-hero .wholesale-hero-visual {
    display: block !important;
    position: relative;
    min-height: auto;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1120px) {
  .registration-page-hero .wholesale-hero-visual {
    display: block !important;
    position: relative;
    min-height: auto;
    width: 100%;
    margin-top: 34px;
    height: auto;
  }
}

/* Match the brand hero: three compact pills with JS-driven active rotation. */
.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  grid-area: auto !important;
  align-self: center !important;
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  min-height: 0 !important;
  height: auto !important;
  position: relative !important;
  margin: 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  overflow: visible !important;
}

@media (max-width: 1120px) {
  .registration-page-hero .wholesale-hero-grid {
    max-width: 820px;
    padding: 58px 0 42px;
    text-align: center;
  }
  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(100%, 720px) !important;
    max-width: 720px !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }
}

.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: left !important;
  padding: 10px 14px 10px 11px !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 64px !important;
  border-radius: 999px !important;
  background: rgba(239,229,213,.82) !important;
  box-shadow: inset 0 0 0 1px rgba(16,40,74,.05) !important;
  border: 1px solid rgba(16,40,74,.08) !important;
  transform-origin: center !important;
  transform: translateX(0) !important;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease !important;
  animation: heroProofPillEnter .58s cubic-bezier(.2,.8,.2,1) backwards !important;
}

.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card:nth-child(2) { animation-delay: .10s !important; }
.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card:nth-child(3) { animation-delay: .20s !important; }

.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card:hover,
.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card.is-active {
  z-index: 1 !important;
  transform: translateX(-7px) !important;
  background: rgba(255,255,255,.96) !important;
  border-color: rgba(228,163,66,.34) !important;
  box-shadow: 0 14px 30px rgba(65,44,11,.13) !important;
}

@media (max-width: 760px) {
  .registration-page-hero .wholesale-hero-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }

  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 520px !important;
    margin-top: 28px !important;
  }
  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card {
    border-radius: 24px !important;
  }
  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card:hover,
  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card.is-active {
    transform: translateX(0) !important;
  }
}

@media (max-width: 520px) {
  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    padding: 10px 13px 10px 10px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card,
  .registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .proof-card-icon {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   WHOLESALE CHALLENGES CARD STYLING & OVERRIDES
   ========================================================= */

.challenge-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.challenge-card {
  position: relative;
  display: flex;
  align-items: start;
  gap: 18px;
  padding: 22px 24px 30px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16, 40, 74, 0.08);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), background .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(16, 40, 74, 0.15);
}

/* Progress bar container styling */
.challenge-card .challenge-progress-bar {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 12px;
  height: 5px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(228, 163, 66, 0.12);
  transition: background .4s ease;
}

.challenge-card .challenge-progress-bar span {
  width: 12%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .58s cubic-bezier(.2,.8,.2,1);
}

.challenge-card:hover .challenge-progress-bar {
  background: rgba(255, 255, 255, 0.12) !important;
}

.challenge-card:hover .challenge-progress-bar span {
  width: var(--growth-progress) !important;
}

/* Icon Box inside the card */
.challenge-card .icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(228, 163, 66, 0.14);
  color: var(--gold);
  flex: 0 0 auto;
  transition: color .4s ease, background .4s ease, transform .45s ease;
}

.challenge-card:hover .icon-box {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: rotate(-4deg) scale(1.06) !important;
}

.challenge-card .icon-box svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Text elements */
.challenge-card .card-content {
  flex: 1;
}

.challenge-card h3 {
  margin: 0 0 6px 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  transition: color .4s ease;
}

.challenge-card:hover h3 {
  color: var(--gold) !important;
}

.challenge-card p {
  margin: 0;
  color: #46556b;
  font-size: 13.5px;
  line-height: 1.55;
  transition: color .4s ease;
}

.challenge-card:hover p {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* =========================================================
   WHOLESALE "WHO THIS PAGE IS FOR" GRID HELPER
   ========================================================= */

.wholesale-growth-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1120px) {
  .wholesale-growth-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .wholesale-growth-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   WHOLESALE MIRROR CHALLENGES LAYOUT & CARDS
   ========================================================= */

.wholesale-challenges {
  --challenge-accent: #d96852;
  --challenge-accent-light: #f39a70;
  --challenge-accent-soft: rgba(217,104,82,.14);
  background:
    radial-gradient(circle at 14% 18%, rgba(230, 109, 84, .12), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(36, 79, 126, .12), transparent 31%),
    linear-gradient(135deg, #fffaf3, #f6ecdf 70%, #fff8ee) !important;
  padding: 80px 0 !important;
}


.mirror-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.mirror-panel {
  --accent: var(--challenge-accent);
  --accent-soft: var(--challenge-accent-soft);
  --accent-dark: #8f321f;
  position: relative;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 32px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(7, 28, 54, .08);
  box-shadow: 0 14px 34px rgba(25, 36, 50, .07);
  transform: none;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, border-color .45s ease, background .45s ease;
}

/* Solution panel */
.mirror-panel.solution {
  --accent: var(--gold);
  --accent-soft: rgba(228, 163, 66, 0.12);
  --accent-dark: var(--navy);
  transform: none;
}

/* Active and Hover states for both cards */
.mirror-panel:hover,
.mirror-panel.is-active {
  transform: translateY(-8px);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 24px 54px rgba(16, 40, 74, 0.22);
}

.mirror-panel.solution:hover,
.mirror-panel.solution.is-active {
  transform: translateY(-8px) !important;
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  box-shadow: 0 24px 54px rgba(16, 40, 74, 0.22) !important;
}

/* Direct hover interaction for solution card */
.mirror-panel.solution:hover {
  transform: translateY(-10px) scale(1.002) !important;
  box-shadow: 0 28px 64px rgba(16, 40, 74, 0.28) !important;
}

/* Specific text transitions inside active/hovered panels */
.mirror-panel:hover h2,
.mirror-panel.is-active h2 {
  color: #ffffff !important;
}

.mirror-panel:hover .panel-head h2 span,
.mirror-panel.is-active .panel-head h2 span {
  color: var(--accent) !important;
}

.mirror-panel:hover .panel-lead,
.mirror-panel.is-active .panel-lead {
  color: rgba(255, 255, 255, 0.74) !important;
}

.mirror-panel:hover .panel-kicker,
.mirror-panel.is-active .panel-kicker {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.mirror-panel.issue:hover .panel-kicker,
.mirror-panel.issue.is-active .panel-kicker {
  background: var(--challenge-accent-soft) !important;
  color: #ffffff !important;
}

.mirror-panel:hover .panel-kicker::before,
.mirror-panel.is-active .panel-kicker::before {
  background: var(--gold) !important;
  box-shadow: 0 0 0 5px rgba(228, 163, 66, 0.2) !important;
}

.mirror-panel.issue:hover .panel-kicker::before,
.mirror-panel.issue.is-active .panel-kicker::before {
  background: var(--challenge-accent) !important;
  box-shadow: 0 0 0 5px rgba(217, 104, 82, 0.2) !important;
}

/* Make inner mini-card numbers colorful when parent panel is hovered/active */
.mirror-panel.issue:hover .number,
.mirror-panel.issue.is-active .number {
  background: var(--challenge-accent) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.mirror-panel.solution:hover .number,
.mirror-panel.solution.is-active .number {
  background: var(--gold) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}


.mirror-panel .card-circle {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  right: -110px;
  top: -120px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  pointer-events: none;
  z-index: 0;
  transform: none;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.4s ease;
}

.mirror-panel::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 120px;
  height: 120px;
  border-radius: 34px;
  border: 1px dashed color-mix(in srgb, var(--accent) 30%, transparent);
  transform: rotate(12deg);
  opacity: .7;
  pointer-events: none;
  z-index: 0;
}

.panel-head {
  position: relative;
  z-index: 2;
  padding: 34px 34px 16px;
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.panel-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 16%, transparent);
}

.panel-head h2 {
  margin: 16px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--navy);
}

.panel-head h2 span {
  color: var(--accent);
}

.panel-lead {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.card-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  padding: 12px 34px 34px;
}

.mini-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(7, 28, 54, .06);
  box-shadow: 0 12px 28px rgba(17, 31, 49, .05);
  transition: transform .34s ease, box-shadow .34s ease, background .34s ease, border-color .34s ease;
}

.mini-card:nth-child(1) { margin-right: 24px; }
.mini-card:nth-child(2) { margin-left: 24px; }
.mini-card:nth-child(3) { margin-right: 32px; }
.mini-card:nth-child(4) { margin-left: 32px; }

.mini-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 42px rgba(17, 31, 49, .10);
  border-color: var(--accent);
}

.mini-card:hover .number {
  background: var(--accent) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.mirror-panel.solution .mini-card:hover {
  border-color: var(--gold);
}

.number {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
  font-size: 13.5px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 14%, transparent);
}

.card-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.2;
  color: var(--navy);
}

.card-copy span {
  display: block;
  color: #58677a;
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .mirror-grid {
    grid-template-columns: 1fr;
  }
  .mirror-panel,
  .mirror-panel.solution,
  .mirror-panel:hover {
    transform: none !important;
  }
  .mirror-panel.solution:hover {
    transform: translateY(-5px) !important;
  }
}

@media (max-width: 560px) {
  .panel-head,
  .card-list {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mini-card:nth-child(1),
  .mini-card:nth-child(2),
  .mini-card:nth-child(3),
  .mini-card:nth-child(4) {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Typewriter layout stability helper */
.section-header h2 span[data-typewriter-words] {
  display: inline-block;
  min-width: 160px;
  text-align: left;
}

/* =========================================================
   POLICY MODALS
   ========================================================= */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}

.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.policy-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(84vh, 820px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  color: var(--charcoal-light);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  border: 1px solid rgba(228, 163, 66, .20);
  transform: translateY(12px) scale(.98);
  transition: transform .24s ease;
}

.policy-modal.is-open .policy-modal__dialog {
  transform: translateY(0) scale(1);
}

.policy-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(16, 40, 74, .10);
  background:
    linear-gradient(90deg, rgba(19, 41, 75, .06), rgba(228, 163, 66, .08)),
    #ffffff;
}

.policy-modal__title {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

.policy-modal__close {
  min-width: 66px;
  min-height: 40px;
  padding: 8px 14px;
  border: 2px solid var(--navy-dark);
  border-radius: 12px;
  background: rgba(19, 41, 75, .08);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(19, 41, 75, .08);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.policy-modal__close:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(228, 163, 66, .25);
  transform: translateY(-1px);
}

.policy-modal__body {
  overflow-y: auto;
  padding: 0 24px 28px;
  scrollbar-color: rgba(16, 40, 74, .45) rgba(16, 40, 74, .08);
  scrollbar-width: thin;
}

.policy-content {
  display: none;
  padding-top: 18px;
}

.policy-content.is-active {
  display: block;
}

.policy-updated {
  margin-top: 0;
  color: var(--navy);
  font-weight: 800;
}

.policy-content h3 {
  margin: 24px 0 10px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}

.policy-content p,
.policy-content li {
  color: var(--charcoal-light);
  font-size: 15.5px;
  line-height: 1.7;
}

.policy-content p {
  margin: 0 0 14px;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px 20px;
  padding: 0;
  list-style: disc;
}

.policy-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-content a:hover {
  color: var(--gold);
}

body.policy-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .policy-modal {
    padding: 14px;
    align-items: end;
  }

  .policy-modal__dialog {
    width: 100%;
    max-height: 88vh;
    border-radius: 16px;
  }

  .policy-modal__header {
    padding: 20px 18px 14px;
  }

  .policy-modal__body {
    padding: 0 18px 24px;
  }

  .policy-modal__title {
    font-size: clamp(28px, 9vw, 34px);
  }

  .policy-content p,
  .policy-content li {
    font-size: 14.5px;
  }
}

@media (max-width: 640px) {
  .brand-hero .brand-hero-actions {
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .brand-hero .brand-hero-actions .btn {
    width: auto;
    min-width: 0;
    max-width: max-content;
    min-height: 42px;
    padding: 10px 22px;
    align-self: center;
  }

  .brand-hero .brand-hero-proof {
    width: 100%;
    max-width: 520px;
    text-align: left;
  }

  .brand-hero .brand-hero-proof .proof-card {
    justify-items: start;
    text-align: left;
  }

  .brand-hero .brand-hero-proof .proof-card-copy,
  .brand-hero .brand-hero-proof .proof-card-copy strong,
  .brand-hero .brand-hero-proof .proof-card-copy > span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .wholesale-hero,
  .contact-hero {
    overflow: hidden;
  }

  .wholesale-hero .container,
  .contact-hero .container {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wholesale-hero .wholesale-hero-grid,
  .contact-hero .contact-hero-grid,
  .wholesale-hero .wholesale-hero-content,
  .contact-hero .contact-hero-content {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wholesale-hero .wholesale-hero-grid,
  .contact-hero .contact-hero-grid {
    padding: 0 !important;
  }

  .wholesale-hero .wholesale-hero-content h1,
  .contact-hero .contact-hero-content h1 {
    width: calc(100vw - 84px);
    max-width: calc(100vw - 84px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .wholesale-hero .wholesale-hero-content .lead,
  .contact-hero .contact-hero-content .lead {
    width: calc(100vw - 84px);
    max-width: calc(100vw - 84px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wholesale-hero .wholesale-hero-actions,
  .contact-hero .contact-hero-actions {
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .wholesale-hero .wholesale-hero-actions .btn,
  .contact-hero .contact-hero-actions .btn {
    width: auto;
    min-width: 0;
    max-width: max-content;
    min-height: 42px;
    padding: 10px 22px;
    align-self: center;
  }

  .wholesale-hero.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof,
  .contact-hero .contact-hero-proof {
    width: 100% !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 24px !important;
    text-align: left;
    justify-self: center !important;
  }

  .wholesale-hero.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .card.proof-card,
  .contact-hero .contact-proof-card.proof-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 8px 10px !important;
    justify-items: start;
    text-align: left;
  }

  .wholesale-hero.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .proof-card-copy,
  .wholesale-hero.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .proof-card-copy strong,
  .wholesale-hero.registration-page-hero .wholesale-hero-visual.wholesale-hero-proof .proof-card-copy > span,
  .contact-hero .contact-proof-card .proof-card-copy,
  .contact-hero .contact-proof-card .proof-card-copy strong,
  .contact-hero .contact-proof-card .proof-card-copy > span {
    max-width: none !important;
    min-width: 0;
    text-align: left;
    white-space: normal;
  }

  .contact-hero .contact-proof-card .proof-card-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 1.9 !important;
  }

  .contact-hero .contact-proof-card:hover .proof-card-icon,
  .contact-hero .contact-proof-card.is-active .proof-card-icon {
    transform: scale(1.08) rotate(-4deg) !important;
    box-shadow: 0 12px 26px rgba(228,163,66,.42) !important;
  }
}

@media (max-width: 640px) {
  .brand-categories {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .brand-categories .container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0 16px;
    overflow: hidden;
  }

  .brand-categories .category-shell {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .brand-categories .category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .brand-categories .category-feature {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .brand-categories .category-feature .card-circle {
    right: -120px;
    top: -120px;
    width: 240px;
    height: 240px;
  }

  .brand-categories .category-feature .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .brand-categories .category-feature > div,
  .brand-categories .category-review {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .brand-categories .category-feature h2 {
    max-width: calc(100vw - 72px);
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.16;
    overflow-wrap: normal;
  }

  .brand-categories .category-feature .lead,
  .brand-categories .category-review p {
    max-width: calc(100vw - 72px);
    font-size: 13.5px;
    line-height: 1.6;
  }

  .brand-categories .category-review {
    margin-top: 24px;
    padding-top: 20px;
  }

  .brand-categories .category-review ul {
    gap: 9px;
  }

  .brand-categories .category-review li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    font-size: 13.5px;
  }

  .brand-categories .category-review li::before {
    width: 22px;
    height: 22px;
  }

  .brand-categories .brand-category-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .brand-categories .brand-category-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
    min-height: auto;
    padding: 22px 20px 34px;
    border-radius: 22px;
    transform: none;
  }

  .brand-categories .brand-category-card:hover,
  .brand-categories .brand-category-card.is-active {
    transform: none;
  }

  .brand-categories .brand-category-card h4 {
    max-width: calc(100vw - 72px);
    font-size: 17px;
    line-height: 1.25;
  }

  .brand-categories .brand-category-card p {
    max-width: calc(100vw - 72px);
    font-size: 13.5px;
    line-height: 1.58;
    overflow-wrap: normal;
  }
}

@media (max-width: 900px) {
  .header .header__inner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding-left: 24px;
    padding-right: 76px;
  }

  .header .nav,
  .header .header__cta {
    display: none !important;
  }

  .header .hamburger {
    display: flex !important;
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    z-index: 1002;
    margin: 0 !important;
    transform: translateY(-50%) !important;
  }
}

/* =========================================================
   FLUENT FORMS INTEGRATION
   Theming the WordPress Fluent Form to match BJJ Distribution styling.
   ========================================================= */
.contact-form-panel .fluentform {
  width: 100% !important;
}

.contact-form-panel .ff-el-group {
  display: grid !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
  width: 100% !important;
}

.contact-form-panel .ff-t-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
}

@media (max-width: 760px) {
  .contact-form-panel .ff-t-container {
    grid-template-columns: 1fr !important;
  }
}

.contact-form-panel .ff-el-group label,
.contact-form-panel .ff-el-group .ff-el-is-required label {
  color: var(--navy) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-bottom: 0 !important;
}

.contact-form-panel .ff-el-is-required label::after {
  content: " *" !important;
  color: var(--gold-dark) !important;
}

.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"],
.contact-form-panel input[type="tel"],
.contact-form-panel input[type="url"],
.contact-form-panel input[type="password"],
.contact-form-panel input[type="number"],
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100% !important;
  border: 1px solid rgba(11,35,69,0.14) !important;
  background: rgba(255,255,255,0.94) !important;
  border-radius: 14px !important;
  min-height: 50px !important;
  padding: 13px 15px !important;
  font-size: 14px !important;
  color: var(--charcoal) !important;
  outline: none !important;
  transition: 0.22s ease !important;
  box-shadow: none !important;
}

.contact-form-panel textarea {
  min-height: 132px !important;
  resize: vertical !important;
  line-height: 1.55 !important;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(228, 163, 66, 0.14) !important;
}

.contact-form-panel .ff-el-form-check {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 13px 14px !important;
  border: 1px solid rgba(11,35,69,0.11) !important;
  border-radius: 14px !important;
  background: rgba(251,247,240,0.6) !important;
  color: var(--charcoal) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  cursor: pointer !important;
  margin-bottom: 8px !important;
}

.contact-form-panel .ff-el-form-check input[type="checkbox"],
.contact-form-panel .ff-el-form-check input[type="radio"] {
  width: 17px !important;
  height: 17px !important;
  min-height: auto !important;
  margin: 2px 0 0 !important;
  accent-color: var(--gold) !important;
  flex: 0 0 auto !important;
}

.contact-form-panel .ff-el-form-check-label {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
}

.contact-form-panel .ff-btn-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--sp-1) !important;
  padding: 14px 32px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--duration-normal) var(--ease-out) !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(224, 159, 62, 0.2) !important;
  border: none !important;
  cursor: pointer !important;
  min-width: 190px !important;
}

.contact-form-panel .ff-btn-submit:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  box-shadow: 0 6px 20px rgba(224, 159, 62, 0.3) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 760px) {
  .contact-form-panel .ff-btn-submit {
    width: 100% !important;
  }
}

/* =========================================================
   REGISTRATION PAGES BACKDROP UNIFICATION
   Applying homepage warm background theme to Wholesale, Brand, and Contact pages
   ========================================================= */

/* Wholesale Page Sections */
.wholesale-hero + .section, 
#who.section,
#solutions.section,
#trust.wholesale-trust,
#faq.wholesale-faq,
.wholesale-final-cta {
  background: #fffdf9 !important;
}

.wholesale-challenges,
.wholesale-process-section {
  background: linear-gradient(180deg, #fffdf9, #fbf5ea) !important;
}

.wholesale-categories-section {
  background: 
    radial-gradient(circle at 85% 10%, rgba(228, 163, 66, .12), transparent 28%),
    linear-gradient(180deg, #fbf5ea, #fffdf9) !important;
}

/* Brand Page Sections */
#overview.brand-growth,
#faq.section,
.brand-final-cta {
  background: #fffdf9 !important;
}

#challenges.brand-challenges,
#process.brand-process {
  background: linear-gradient(180deg, #fffdf9, #fbf5ea) !important;
}

#categories.brand-categories {
  background: 
    radial-gradient(circle at 85% 10%, rgba(228, 163, 66, .12), transparent 28%),
    linear-gradient(180deg, #fbf5ea, #fffdf9) !important;
}

/* Contact Page Section */
.contact-page-section {
  background: #fffdf9 !important;
}


/* =========================================================
   FLUENT FORMS INTEGRATION
   Theming the WordPress Fluent Form to match BJJ Distribution styling.
   ========================================================= */
.contact-form-panel .fluentform {
  width: 100% !important;
  max-width: 100% !important;
}

.contact-form-panel .ff-el-group {
  display: grid !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.contact-form-panel .ff-t-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 760px) {
  .contact-form-panel .ff-t-container {
    grid-template-columns: 1fr !important;
  }
}

.contact-form-panel .ff-el-group label,
.contact-form-panel .ff-el-group .ff-el-is-required label {
  color: var(--navy) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-bottom: 0 !important;
}

.contact-form-panel .ff-el-is-required label::after {
  content: " *" !important;
  color: var(--gold-dark) !important;
}

.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"],
.contact-form-panel input[type="tel"],
.contact-form-panel input[type="url"],
.contact-form-panel input[type="password"],
.contact-form-panel input[type="number"],
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid rgba(11,35,69,0.14) !important;
  background: rgba(255,255,255,0.94) !important;
  border-radius: 14px !important;
  min-height: 50px !important;
  padding: 13px 15px !important;
  font-size: 14px !important;
  color: var(--charcoal) !important;
  outline: none !important;
  transition: 0.22s ease !important;
  box-shadow: none !important;
}

.contact-form-panel textarea {
  min-height: 132px !important;
  resize: vertical !important;
  line-height: 1.55 !important;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(228, 163, 66, 0.14) !important;
}

/* Checkbox and radio alignment fix */
.contact-form-panel .contact-check,
.contact-form-panel .ff-el-form-check,
.contact-form-panel .ff-el-form-check-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  padding: 13px 16px !important;
  border: 1px solid rgba(11,35,69,0.11) !important;
  border-radius: 14px !important;
  background: rgba(251,247,240,0.6) !important;
  color: var(--charcoal) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  cursor: pointer !important;
  margin-bottom: 8px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

.contact-form-panel .contact-check input[type="checkbox"],
.contact-form-panel .contact-check input[type="radio"],
.contact-form-panel .ff-el-form-check input[type="checkbox"],
.contact-form-panel .ff-el-form-check input[type="radio"],
.contact-form-panel .ff-el-form-check-label input[type="checkbox"],
.contact-form-panel .ff-el-form-check-label input[type="radio"] {
  display: inline-block !important;
  width: 17px !important;
  height: 17px !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
  accent-color: var(--gold) !important;
}

.contact-form-panel .contact-check span,
.contact-form-panel .ff-el-form-check-label span {
  display: inline-block !important;
  margin: 0 !important;
  text-align: left !important;
  width: auto !important;
}

.contact-form-panel .ff-btn-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--sp-1) !important;
  padding: 14px 32px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--duration-normal) var(--ease-out) !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(224, 159, 62, 0.2) !important;
  border: none !important;
  cursor: pointer !important;
  min-width: 190px !important;
}

.contact-form-panel .ff-btn-submit:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  box-shadow: 0 6px 20px rgba(224, 159, 62, 0.3) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 760px) {
  .contact-form-panel .ff-btn-submit {
    width: 100% !important;
  }
}

/* Ensure Fluent Form wrapper layout elements and all textareas span 100% width */
.contact-form-panel .fluentform,
.contact-form-panel .fluentform .ff-form,
.contact-form-panel .fluentform .ff-el-group,
.contact-form-panel .fluentform .ff-el-input-placeholder,
.contact-form-panel .fluentform .ff-el-form-control,
.contact-form-panel .fluentform input[type="text"],
.contact-form-panel .fluentform input[type="email"],
.contact-form-panel .fluentform input[type="tel"],
.contact-form-panel .fluentform input[type="url"],
.contact-form-panel .fluentform input[type="password"],
.contact-form-panel .fluentform input[type="number"],
.contact-form-panel .fluentform select,
.contact-form-panel .fluentform textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}