    /* ==============================================
       PROPHITZ V5 — Premium DARK Edition + Particles
       Gold / Teal accents — GSAP Animated
       Editorial Minimalism with 21st.dev effects
       ============================================== */

    :root {
      --bg:          #050809;
      --bg-card:     #0c1415;
      --bg-surface:  #111c1e;
      --bg-accent:   #152123;
      --bg-dark:     #1A1714;
      --gold:        #c9a84c;
      --gold-dark:   #b08f35;
      --gold-soft:   #d4ba6e;
      --gold-15:     rgba(201,168,76,.15);
      --gold-08:     rgba(201,168,76,.08);
      --gold-04:     rgba(201,168,76,.04);
      --gold-glow:   rgba(201,168,76,.35);
      --teal:        #4e7e7c;
      --teal-soft:   #6a9e9c;
      --teal-10:     rgba(78,126,124,.10);
      --teal-05:     rgba(78,126,124,.05);
      --green:       #34d399;
      --text:        #eae8e3;
      --text-secondary: #c0beb9;
      --muted:       #7a8586;
      --muted-light: #a8b2b4;
      --border:      rgba(255,255,255,.06);
      --border-strong: rgba(255,255,255,.10);
      --font-display: 'Bebas Neue', Impact, sans-serif;
      --font-body:    'Inter', system-ui, sans-serif;
      --container:    1200px;
      --gap:          clamp(20px, 4vw, 40px);
      --radius:       14px;
      --radius-sm:    8px;
      --radius-lg:    22px;
      --radius-xl:    32px;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      .scroll-progress, .cursor-glow, .marquee-band, .section-divider { display: none !important; }
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 16px;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; cursor: pointer; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }
    ul { list-style: none; }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      text-transform: uppercase;
      letter-spacing: .02em;
      line-height: .92;
      font-weight: 400;
      color: var(--text);
    }

    .wrap {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gap);
    }

    /* ===================== PARTICLE CANVAS ===================== */
    #particleCanvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* ===================== SCROLL PROGRESS BAR ===================== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-soft));
      z-index: 9999;
      pointer-events: none;
      will-change: width;
    }

    /* ===================== CURSOR GLOW ===================== */
    .cursor-glow {
      position: fixed;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,.05) 0%, rgba(201,168,76,.02) 35%, transparent 70%);
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      will-change: transform;
      mix-blend-mode: normal;
    }
    @media(max-width:991px) { .cursor-glow { display: none !important; } }

    /* ===================== NAV ===================== */
    .nav {
      position: fixed;
      top: 16px; left: 16px; right: 16px;
      z-index: 100;
      transition: all .4s cubic-bezier(.16,1,.3,1);
    }
    .nav__inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 14px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(5,8,9,.6);
      backdrop-filter: blur(24px) saturate(1.4);
      -webkit-backdrop-filter: blur(24px) saturate(1.4);
      border: 1px solid var(--border);
      border-radius: 60px;
      transition: all .4s cubic-bezier(.16,1,.3,1);
    }
    .nav.scrolled .nav__inner {
      background: rgba(5,8,9,.92);
      border-color: var(--border-strong);
      box-shadow: 0 4px 30px rgba(0,0,0,.3);
    }
    .nav__logo img { height: 30px; width: auto; object-fit: contain; filter: brightness(10); }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav__links a {
      font-size: .78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--muted);
      transition: color .25s;
      position: relative;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--gold);
      transition: width .3s cubic-bezier(.16,1,.3,1);
    }
    .nav__links a:hover { color: var(--text); }
    .nav__links a:hover::after { width: 100%; }

    .nav__cta {
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #050809;
      background: var(--gold);
      padding: 10px 24px;
      border-radius: 50px;
      transition: all .3s;
    }
    .nav__cta:hover {
      background: var(--gold-dark);
      color: #050809;
      box-shadow: 0 4px 20px var(--gold-glow);
      transform: translateY(-1px);
    }

    .nav__toggle {
      display: none;
      color: var(--text);
      font-size: 1.3rem;
      padding: 5px;
    }

    @media(max-width:991px) {
      .nav__toggle { display: block; }
      .nav__links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(5,8,9,.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 24px;
        gap: 16px;
      }
      .nav__links.open { display: flex; }
      .nav__cta { display: none; }
      .nav { top: 8px; left: 8px; right: 8px; }
    }

    /* ===================== BUTTONS ===================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: 16px 36px;
      font-size: .85rem;
      border: none;
      border-radius: 60px;
      transition: all .35s cubic-bezier(.16,1,.3,1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .btn--gold {
      background: var(--gold);
      color: #050809;
    }
    .btn--gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .3s;
    }
    .btn--gold:hover::before { opacity: 1; }
    .btn--gold:hover {
      background: var(--gold-dark);
      box-shadow: 0 8px 32px var(--gold-glow);
      transform: translateY(-2px);
      color: #050809;
    }
    .btn--outline {
      background: transparent;
      border: 1.5px solid rgba(201,168,76,.25);
      color: var(--gold);
      border-radius: 60px;
    }
    .btn--outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: var(--gold-04);
    }
    .btn--ghost {
      background: transparent;
      padding: 16px 4px;
      color: var(--muted);
      border: none;
    }
    .btn--ghost:hover { color: var(--text); }
    .btn--ghost svg { transition: transform .25s; }
    .btn--ghost:hover svg { transform: translateX(4px); }
    .btn--sm { padding: 12px 24px; font-size: .78rem; }

    /* ===================== SECTION SHARED ===================== */
    .sec {
      padding: clamp(100px, 14vw, 180px) 0;
      position: relative;
      z-index: 1;
    }
    .sec--alt { background: var(--bg-card); }
    .sec--dark {
      background: #100e0b;
      color: #fff;
    }
    .sec--dark h2, .sec--dark h3, .sec--dark h4 { color: #fff; }
    .sec--dark .sec__tag { color: var(--gold-soft); }
    .sec--dark .sec__lead { color: rgba(255,255,255,.55); }

    .sec__tag {
      font-size: .7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .25em;
      color: var(--teal);
      margin-bottom: 16px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .sec__tag::before {
      content: '';
      width: 32px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
    }

    .sec h2 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      margin-bottom: 20px;
      max-width: 600px;
    }
    .sec h2 em {
      font-style: normal;
      color: var(--gold);
    }

    .sec__lead {
      font-size: 1rem;
      color: var(--muted);
      max-width: 500px;
      line-height: 1.75;
      margin-bottom: 48px;
    }
    .sec__lead a { color: var(--gold); transition: opacity .25s; }
    .sec__lead a:hover { opacity: .7; }

    /* ===================== SECTION DIVIDERS ===================== */
    .section-divider {
      position: relative;
      width: 100%;
      height: 60px;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }
    .section-divider svg {
      position: absolute;
      width: 100%;
      height: 100%;
    }
    .section-divider path {
      fill: none;
      stroke: var(--gold-15);
      stroke-width: 1.5;
    }

    /* ===================== HERO ===================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 140px 0 100px;
      background: var(--bg);
      z-index: 1;
    }

    .hero__mesh {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }
    .hero__orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(140px);
      pointer-events: none;
    }
    .hero__orb--1 {
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
      top: -25%; right: 5%;
    }
    .hero__orb--2 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(78,126,124,.12) 0%, transparent 70%);
      bottom: -10%; left: -5%;
    }
    .hero__orb--3 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
      top: 60%; left: 20%;
    }

    .hero .wrap { position: relative; z-index: 1; }

    /* Hero: text left, photo right */
    .hero__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero__content { position: relative; }

    .hero__tag-line {
      font-size: .72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .25em;
      color: var(--teal);
      margin-bottom: 20px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .hero__tag-line::before {
      content: '';
      width: 24px;
      height: 1.5px;
      background: var(--gold);
    }

    .hero h1 {
      font-size: clamp(3rem, 6.5vw, 5.5rem);
      margin-bottom: 28px;
      line-height: .9;
    }
    .hero h1 span.gold { color: var(--gold); }
    .hero h1 .line { display: block; overflow: hidden; }
    .hero h1 .line-inner {
      display: inline-block;
      transform: translateY(110%);
      opacity: 1;
    }
    .hero h1 .line-inner .char {
      display: inline-block;
    }

    .hero__sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 440px;
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .hero__actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    /* Mini stats row under CTA */
    .hero__mini-stats {
      display: flex;
      gap: 32px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      margin-bottom: 24px;
    }
    .hero__mini-stat {
      text-align: left;
    }
    .hero__mini-stat strong {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .hero__mini-stat span {
      font-size: .68rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .hero__trust {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .hero__trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .75rem;
      color: var(--muted);
    }
    .hero__trust-item i { color: var(--gold); width: 14px; height: 14px; }
    .hero__trust-item strong { color: var(--text); }

    /* Right: photo with floating cards */
    .hero__visual {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero__photo-wrap {
      position: relative;
      width: 100%;
      max-width: 460px;
    }
    .hero__photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: var(--radius-xl);
      position: relative;
      z-index: 2;
    }
    .hero__photo-glow {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      height: 50%;
      background: radial-gradient(ellipse, rgba(201,168,76,.18) 0%, transparent 70%);
      filter: blur(60px);
      z-index: 1;
    }
    .hero__photo-frame {
      position: absolute;
      inset: -8px;
      border-radius: calc(var(--radius-xl) + 4px);
      border: 1px solid var(--gold-15);
      z-index: 1;
    }
    .hero__photo-label {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      background: rgba(5,8,9,.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 8px 20px;
      font-family: var(--font-display);
      font-size: 1rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
    }
    .hero__float-card {
      position: absolute;
      z-index: 3;
      background: rgba(12,20,21,.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,.04);
      border-radius: var(--radius);
      padding: 16px 20px;
      min-width: 180px;
      box-shadow: 0 8px 32px rgba(0,0,0,.3);
    }
    .hero__float-card--1 { bottom: 40px; left: -40px; }
    .hero__float-card--2 { top: 60px; right: -40px; }
    .float-card__number {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
    }
    .float-card__label {
      font-size: .72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 2px;
    }
    .float-card__sub {
      font-size: .68rem;
      color: var(--teal);
      margin-top: 4px;
    }

    @media(max-width:991px) {
      .hero__layout { grid-template-columns: 1fr; gap: 40px; }
      .hero__content { order: 1; }
      .hero__visual { order: 2; }
      .hero__photo-wrap { max-width: 300px; margin: 0 auto; }
      .hero__float-card--1 { left: -10px; bottom: 20px; }
      .hero__float-card--2 { right: -10px; top: 30px; }
      .hero { padding-top: 110px; min-height: auto; }
      .hero h1 { font-size: clamp(2.6rem, 9vw, 4rem); }
    }
    @media(max-width:575px) {
      .hero__actions { flex-direction: column; gap: 10px; }
      .hero__actions .btn { width: 100%; justify-content: center; }
      .hero__trust { flex-wrap: wrap; gap: 12px; }
      .hero__mini-stats { flex-wrap: wrap; gap: 20px; }
      .hero__float-card { min-width: 130px; padding: 10px 12px; }
      .float-card__number { font-size: 1.4rem; }
      .hero__sub { font-size: .95rem; }
    }

    /* ===================== FLYING AIRPLANE ===================== */
    .hero-airplane {
      position: fixed;
      z-index: 2;
      pointer-events: none;
      will-change: transform;
      opacity: 0;
    }
    .hero-airplane img {
      width: 80px;
      height: auto;
      filter: grayscale(1) brightness(.7) blur(1.5px);
      opacity: .25;
    }
    @media(max-width:575px) {
      .hero-airplane img { width: 55px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-airplane { display: none; }
    }

    /* ===================== STATS BAR ===================== */
    .stats-bar {
      padding: 0;
      position: relative;
      z-index: 2;
      margin-top: 20px;
    }
    .stats-bar__inner {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,.04);
      border-radius: var(--radius-xl);
      padding: 48px 56px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,.3);
    }
    .stats-bar__inner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-08), var(--gold), var(--gold-08), transparent);
    }
    .stat { text-align: center; position: relative; }
    .stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -20px;
      top: 10%;
      height: 80%;
      width: 1px;
      background: var(--border);
    }
    .stat__number {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
      display: inline-flex;
      overflow: hidden;
    }
    .stat__number .digit-col {
      display: inline-block;
      overflow: hidden;
      height: 1em;
      position: relative;
    }
    .stat__number .digit-col__inner {
      display: flex;
      flex-direction: column;
      transition: none;
    }
    .stat__number .digit-col__inner span {
      display: block;
      height: 1em;
      line-height: 1;
    }
    .stat__number .static-char {
      display: inline-block;
      line-height: 1;
    }
    .stat__label {
      font-size: .78rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 500;
    }
    .stat__detail {
      font-size: .72rem;
      color: var(--muted);
      margin-top: 4px;
    }

    @media(max-width:991px) {
      .stats-bar__inner { grid-template-columns: repeat(2, 1fr); padding: 32px; }
      .stat:nth-child(2)::after { display: none; }
    }
    @media(max-width:575px) {
      .stats-bar__inner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
      .stat::after { display: none !important; }
    }

    /* ===================== LOGOS ===================== */
    .logos { padding: 80px 0; overflow: hidden; position: relative; z-index: 1; }
    .logos__label {
      font-size: .68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .2em;
      color: var(--muted);
      margin-bottom: 28px;
      text-align: center;
    }
    .logos__track {
      display: flex;
      align-items: center;
      gap: 56px;
      width: max-content;
      will-change: transform;
    }
    .logos__track img {
      height: 26px;
      filter: grayscale(1) brightness(1.2) invert(1);
      opacity: .4;
      transition: all .4s;
      flex-shrink: 0;
    }
    .logos__track img:hover {
      filter: grayscale(0) brightness(1);
      opacity: 1;
    }

    /* ===================== MARQUEE TICKER ===================== */
    .marquee-band {
      padding: 32px 0;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    .marquee-band__track {
      display: flex;
      white-space: nowrap;
      will-change: transform;
    }
    .marquee-band__text {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 6rem);
      color: rgba(255,255,255,.04);
      text-transform: uppercase;
      letter-spacing: .04em;
      padding-right: 32px;
      flex-shrink: 0;
      line-height: 1;
      user-select: none;
    }

    /* ===================== DIENSTEN ===================== */
    .diensten-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .dienst-card {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,.04);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      display: block;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all .4s cubic-bezier(.16,1,.3,1);
      transform-style: preserve-3d;
      perspective: 800px;
    }
    .dienst-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s cubic-bezier(.16,1,.3,1);
    }
    .dienst-card:hover::before { transform: scaleX(1); }
    .dienst-card:hover {
      border-color: var(--gold-15);
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
    }

    .dienst-card__icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-surface);
      border-radius: var(--radius);
      color: var(--gold);
      margin-bottom: 20px;
      transition: all .3s;
    }
    .dienst-card:hover .dienst-card__icon {
      background: var(--gold);
      color: #050809;
      box-shadow: 0 6px 20px var(--gold-glow);
    }
    .dienst-card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      letter-spacing: .02em;
    }
    .dienst-card p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .dienst-card__link {
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      opacity: 0;
      transform: translateY(8px);
      transition: all .35s;
    }
    .dienst-card:hover .dienst-card__link { opacity: 1; transform: translateY(0); }

    @media(max-width:991px) { .diensten-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:575px) { .diensten-grid { grid-template-columns: 1fr; } }

    .mid-cta {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,.04);
      border-radius: var(--radius-lg);
      padding: 40px 48px;
      margin-top: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      box-shadow: 0 4px 24px rgba(0,0,0,.2);
    }
    .sec--alt .mid-cta { background: var(--bg-surface); }
    .mid-cta p {
      font-size: 1.02rem;
      color: var(--muted);
      max-width: 460px;
    }
    .mid-cta p strong { color: var(--text); }

    /* ===================== RESULTATEN ===================== */

    /* Featured result */
    .result-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 48px;
      margin-bottom: 24px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,.04);
      box-shadow: 0 12px 48px rgba(0,0,0,.3);
      transition: all .4s;
    }
    .result-hero:hover {
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
    }
    .result-hero__img-wrap {
      overflow: hidden;
      position: relative;
    }
    .result-hero__img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.16,1,.3,1);
      cursor: pointer;
    }
    .result-hero:hover .result-hero__img { transform: scale(1.04); }
    .result-hero__body {
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .result-hero__platform {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--teal);
      background: var(--teal-05);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
      width: fit-content;
    }
    .result-hero__metric {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      color: var(--gold);
      line-height: 1;
      margin-bottom: 12px;
    }
    .result-hero__desc {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
      max-width: 380px;
    }
    .result-hero__stats {
      display: flex;
      gap: 32px;
    }
    .result-hero__stat-item strong {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--text);
      display: block;
      line-height: 1;
    }
    .result-hero__stat-item span {
      font-size: .68rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    @media(max-width:991px) {
      .result-hero { grid-template-columns: 1fr; }
      .result-hero__img { min-height: 240px; }
      .result-hero__body { padding: 32px; }
    }

    /* Smaller result cards in slider */
    .results-slider { margin-top: 0; overflow: visible; }
    .results-slider .swiper-slide { width: 340px; }
    .result-card {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,.04);
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 100%;
      transition: all .4s cubic-bezier(.16,1,.3,1);
    }
    .result-card:hover {
      border-color: var(--gold-15);
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,.4);
    }
    .result-card__img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: all .5s;
      cursor: pointer;
    }
    .result-card:hover .result-card__img { transform: scale(1.03); }
    .result-card__img-wrap {
      overflow: hidden;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .result-card__body { padding: 24px; }
    .result-card__metric {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .result-card__desc {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .result-card__platform {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--teal);
      background: var(--teal-05);
      padding: 4px 12px;
      border-radius: 50px;
    }

    .results-nav {
      display: flex;
      gap: 8px;
      margin-top: 32px;
      justify-content: center;
    }
    .results-nav button {
      width: 48px; height: 48px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
    }
    .results-nav button:hover {
      border-color: var(--gold);
      color: var(--gold);
      box-shadow: 0 4px 16px var(--gold-08);
    }

    /* ===================== REVIEWS ===================== */
    .reviews-layout {
      margin-top: 56px;
    }

    /* Featured big review */
    .review-featured {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,.04);
      border-radius: var(--radius-xl);
      padding: 56px 64px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,.2);
    }
    .review-featured::after {
      content: '\201C';
      position: absolute;
      top: 20px;
      right: 40px;
      font-family: var(--font-display);
      font-size: 12rem;
      line-height: 1;
      color: rgba(201,168,76,.06);
      pointer-events: none;
    }
    .review-featured__stars { color: var(--gold); letter-spacing: 4px; font-size: 1.2rem; margin-bottom: 20px; }
    .review-featured__text {
      font-size: 1.3rem;
      color: var(--text);
      line-height: 1.7;
      font-style: italic;
      font-weight: 300;
      max-width: 560px;
      margin-bottom: 28px;
    }
    .review-featured__footer { display: flex; align-items: center; gap: 14px; }
    .review-featured__avatar {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-15), var(--teal-10));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--gold);
    }
    .review-featured__name { font-size: .9rem; font-weight: 600; color: var(--text); }
    .review-featured__role { font-size: .75rem; color: var(--muted); }
    .review-featured__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .7rem;
      color: var(--green);
      margin-top: 4px;
    }
    .review-featured__badge i { width: 12px; height: 12px; }

    .review-featured__side {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }
    .review-featured__metric {
      text-align: center;
      padding: 20px;
      background: var(--bg-surface);
      border-radius: var(--radius-lg);
      min-width: 140px;
    }
    .review-featured__metric-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--gold);
      line-height: 1;
    }
    .review-featured__metric-label {
      font-size: .68rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 4px;
    }

    /* Scrolling review cards - full width */
    .reviews-scroll {
      overflow: hidden;
      position: relative;
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      width: 100vw;
    }
    .reviews-scroll__track {
      display: flex;
      gap: 20px;
      width: max-content;
      will-change: transform;
      padding: 0 20px;
    }

    .review-card {
      background: var(--bg-card);
      border: 1px solid rgba(255,255,255,.04);
      border-radius: var(--radius-lg);
      padding: 32px;
      width: 360px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      transition: all .4s;
      transform-style: preserve-3d;
      perspective: 800px;
    }
    .review-card:hover {
      border-color: var(--gold-15);
      box-shadow: 0 12px 36px rgba(0,0,0,.3);
    }
    .review-card__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: .95rem; }
    .review-card__text {
      font-size: .9rem;
      color: var(--text-secondary);
      line-height: 1.75;
      flex: 1;
      margin-bottom: 20px;
      font-style: italic;
    }
    .review-card__footer { display: flex; align-items: center; gap: 12px; }
    .review-card__avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-15), var(--teal-10));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--gold);
    }
    .review-card__name { font-size: .82rem; font-weight: 600; color: var(--text); }
    .review-card__role { font-size: .72rem; color: var(--muted); }
    .review-card__source {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      font-size: .7rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .review-card__source i { color: var(--green); width: 14px; height: 14px; }

    @media(max-width:991px) {
      .review-featured { grid-template-columns: 1fr; padding: 36px; }
      .review-featured__side { flex-direction: row; }
      .review-featured__text { font-size: 1.1rem; }
    }
    @media(max-width:575px) {
      .review-featured { padding: 28px; }
      .review-featured__text { font-size: 1rem; }
      .review-featured__side { flex-direction: column; }
      .review-card { width: 300px; }
    }

    /* ===================== WERKWIJZE ===================== */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }
    .process-grid__line-svg {
      position: absolute;
      top: 40px;
      left: 80px;
      right: 80px;
      height: 2px;
      z-index: 0;
      overflow: visible;
    }
    .process-grid__line-svg line {
      stroke: var(--gold);
      stroke-width: 2;
      opacity: .3;
    }
    .process-step { text-align: center; padding: 0 16px; position: relative; }
    .process-step__num {
      width: 80px; height: 80px;
      margin: 0 auto 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--gold);
      background: #050809;
      border: 1.5px solid rgba(201,168,76,.25);
      border-radius: 50%;
      position: relative;
      z-index: 1;
      transition: all .4s;
    }
    .process-step:hover .process-step__num {
      background: var(--gold);
      color: #050809;
      box-shadow: 0 8px 32px var(--gold-glow);
      transform: scale(1.08);
    }
    .process-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
    .process-step p { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.65; }

    @media(max-width:991px) {
      .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .process-grid__line-svg { display: none; }
    }
    @media(max-width:575px) { .process-grid { grid-template-columns: 1fr; } }

    /* ===================== OVER LORENZO ===================== */
    .about-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius-xl);
      clip-path: inset(15%);
    }
    .about-img-accent {
      position: absolute;
      bottom: -12px;
      right: -12px;
      width: 50%;
      height: 50%;
      border: 1px solid var(--gold-15);
      border-radius: var(--radius-xl);
      z-index: -1;
    }
    .about-img-badge {
      position: absolute;
      bottom: 24px;
      left: -16px;
      z-index: 2;
      background: rgba(12,20,21,.85);
      backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 24px rgba(0,0,0,.3);
    }
    .about-img-badge i { color: var(--gold); }
    .about-img-badge span { font-size: .75rem; font-weight: 600; color: var(--text); }

    .about-text h2 { max-width: 500px; }
    .about-text p {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 16px;
      max-width: 480px;
    }
    .about-text p strong { color: var(--text); font-weight: 600; }
    .about-text p .highlight-word {
      display: inline;
      background-size: 200% 100%;
      background-position: 100% 0;
      background-image: linear-gradient(90deg, var(--gold-08) 50%, transparent 50%);
      transition: background-position 0s;
      padding: 2px 0;
    }

    .credentials-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
    .credential-tag {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 10px 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      color: var(--text-secondary);
      transition: all .3s;
    }
    .credential-tag:hover { border-color: var(--gold-15); background: var(--gold-04); }
    .credential-tag i { color: var(--gold); width: 14px; height: 14px; }

    .about-stats-row { display: flex; gap: 48px; margin-top: 36px; }
    .about-stat strong {
      font-family: var(--font-display);
      font-size: 2.8rem;
      color: var(--gold);
      display: block;
      line-height: 1;
    }
    .about-stat span {
      font-size: .72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    @media(max-width:991px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img-accent { display: none; }
      .about-img-wrap { max-width: 400px; }
    }

    /* ===================== FUNNEL ===================== */
    .funnel-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: start;
    }
    .funnel-steps { margin-top: 8px; }
    .funnel-step {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      transition: all .3s;
      cursor: default;
    }
    .funnel-step:hover { padding-left: 12px; }
    .funnel-step__num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--border-strong);
      line-height: 1;
      min-width: 48px;
      transition: color .3s;
    }
    .funnel-step:hover .funnel-step__num { color: var(--gold); }
    .funnel-step h4 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: .03em;
      margin-bottom: 6px;
      font-weight: 400;
    }
    .funnel-step p { font-size: .86rem; color: var(--muted); line-height: 1.65; margin: 0; }
    .funnel-step a { color: var(--gold); transition: opacity .25s; }
    .funnel-step a:hover { opacity: .7; }

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

    /* ===================== FAQ ===================== */
    .faq-list { margin-top: 48px; max-width: 720px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      background: none;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color .25s;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-q__icon {
      width: 32px; height: 32px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--bg-surface);
      color: var(--muted);
      transition: all .3s;
    }
    .faq-item.open .faq-q__icon {
      background: var(--gold);
      color: #050809;
      transform: rotate(45deg);
    }
    .faq-a {
      overflow: hidden;
      height: 0;
    }
    .faq-a__inner {
      padding-bottom: 24px;
      font-size: .92rem;
      color: var(--muted);
      line-height: 1.8;
      max-width: 600px;
    }
    .faq-a a { color: var(--gold); }
    .faq-a a:hover { opacity: .7; }

    /* ===================== FINAL CTA ===================== */
    .cta-sec {
      padding: clamp(100px, 14vw, 180px) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    .cta-sec__bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 30% 60%, rgba(78,126,124,.04) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-sec .wrap { position: relative; z-index: 1; }
    .cta-sec h2 {
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      margin: 0 auto 24px;
      max-width: 750px;
    }
    .cta-sec__sub {
      font-size: 1.02rem;
      color: var(--muted);
      max-width: 460px;
      margin: 0 auto 44px;
      line-height: 1.75;
    }
    .cta-sec__buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .cta-sec__trust {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-sec__trust span {
      font-size: .78rem;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .cta-sec__trust i { color: var(--gold); width: 14px; height: 14px; }

    /* ===================== LEAD FORM ===================== */
    .form-sec {
      padding: 0;
      position: relative;
      overflow: hidden;
      background: var(--bg-dark);
      z-index: 1;
    }
    .form-sec .sec__tag { color: var(--gold-soft); }
    .form-sec .sec__tag::before { background: var(--gold); }
    .form-sec h2 { color: #fff; font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
    .form-sec h2 em { color: var(--gold); }
    .form-sec .sec__lead { color: rgba(255,255,255,.5); }
    .form-grid {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 0;
      align-items: stretch;
      min-height: 700px;
    }
    .form-left {
      padding: clamp(60px, 10vw, 120px) clamp(24px, 4vw, 64px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .form-left .sec__lead { margin-bottom: 32px; }
    .form-benefits { display: flex; flex-direction: column; gap: 16px; }
    .form-benefit {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .9rem;
      color: rgba(255,255,255,.55);
      line-height: 1.5;
    }
    .form-benefit i { color: var(--green); width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
    .form-right {
      background: var(--bg-card);
      padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .form-card {
      max-width: 520px;
    }
    .form-card h3 { font-size: 1.6rem; margin-bottom: 6px; color: var(--text); }
    .form-card__sub { font-size: .86rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
    .form-group { margin-bottom: 18px; position: relative; }
    .form-group label {
      display: block;
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--text-secondary);
      margin-bottom: 6px;
      transition: color .3s;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 16px;
      background: var(--bg-surface);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-sm);
      color: var(--text);
      font-family: var(--font-body);
      font-size: .9rem;
      transition: border-color .3s, box-shadow .3s;
      outline: none;
      position: relative;
      z-index: 1;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--muted); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-08);
      background: var(--bg-accent);
    }
    .form-group input:focus ~ label,
    .form-group select:focus ~ label,
    .form-group textarea:focus ~ label { color: var(--gold); }
    .form-group .input-wipe {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      border-radius: 2px;
      z-index: 2;
      pointer-events: none;
    }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a8586' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      cursor: pointer;
    }
    .form-group select option { background: var(--bg-card); color: var(--text); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-card .btn--gold { width: 100%; justify-content: center; margin-top: 8px; }
    .form-trust { display: flex; justify-content: center; gap: 20px; margin-top: 16px; }
    .form-trust span {
      font-size: .7rem;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .form-trust i { color: var(--gold); width: 12px; height: 12px; }

    @media(max-width:991px) {
      .form-grid { grid-template-columns: 1fr; }
      .form-left { padding: 60px 24px; }
      .form-right { padding: 48px 24px; }
    }
    @media(max-width:575px) {
      .form-row { grid-template-columns: 1fr; }
    }

    /* ===================== FOOTER ===================== */
    .footer {
      background: #020505;
      color: rgba(255,255,255,.6);
      position: relative;
      z-index: 1;
    }
    .footer__accent {
      height: 1px;
      background: linear-gradient(90deg, transparent 5%, rgba(201,168,76,.15) 30%, var(--gold) 50%, rgba(201,168,76,.15) 70%, transparent 95%);
    }
    .footer__cta-strip {
      padding: 48px 0;
      text-align: center;
      position: relative;
    }
    .footer__cta-strip::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: var(--gap);
      right: var(--gap);
      height: 1px;
      background: rgba(255,255,255,.06);
    }
    .footer__cta-text {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      text-transform: uppercase;
      letter-spacing: .03em;
      color: #fff;
      margin-bottom: 20px;
    }
    .footer__cta-text span { color: var(--gold); }
    .footer__cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .footer .btn--gold { color: #050809; }
    .footer .btn--outline { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }
    .footer .btn--outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

    .footer__certs {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 32px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .footer__cert {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255,255,255,.4);
    }
    .footer__cert img { height: 20px; width: auto; filter: grayscale(1) brightness(1.5); opacity: .5; }
    .footer__cert i { width: 16px; height: 16px; color: var(--gold); opacity: .6; }

    .footer__main { padding: 48px 0 0; }
    .footer__grid {
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr 1.6fr;
      gap: 48px;
    }
    .footer__brand-logo { height: 18px; width: auto; object-fit: contain; opacity: .7; filter: brightness(10); }
    .footer__brand-text { color: rgba(255,255,255,.4); font-size: .82rem; margin-top: 14px; line-height: 1.7; max-width: 250px; }
    .footer__socials { display: flex; gap: 6px; margin-top: 20px; }
    .footer__social {
      width: 32px; height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      color: rgba(255,255,255,.4);
      transition: all .25s;
    }
    .footer__social:hover { background: var(--gold-15); color: var(--gold); }
    .footer h4 {
      font-family: var(--font-body);
      font-size: .66rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: rgba(201,168,76,.6);
      margin-bottom: 16px;
    }
    .footer ul li { margin-bottom: 8px; }
    .footer ul a, .footer ul li {
      font-size: .82rem;
      color: rgba(255,255,255,.4);
      transition: color .2s, padding-left .2s;
      display: block;
    }
    .footer ul a:hover { color: #fff; padding-left: 3px; }
    .footer__contact-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .82rem;
      color: rgba(255,255,255,.4);
      margin-bottom: 10px;
      transition: color .2s;
    }
    .footer__contact-link:hover { color: var(--gold); }
    .footer__contact-link i { width: 13px; height: 13px; color: var(--gold); opacity: .5; }

    .footer__bottom {
      margin-top: 40px;
      padding: 18px 0;
      border-top: 1px solid rgba(255,255,255,.04);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer__copy { font-size: .7rem; color: rgba(255,255,255,.25); }
    .footer__credits { font-size: .68rem; color: rgba(255,255,255,.2); }
    .footer__credits a { color: rgba(201,168,76,.4); transition: color .2s; }
    .footer__credits a:hover { color: var(--gold); }

    @media(max-width:991px) {
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer__certs { gap: 20px; flex-wrap: wrap; }
    }
    @media(max-width:575px) {
      .footer__grid { grid-template-columns: 1fr; gap: 24px; }
      .footer__bottom { flex-direction: column; text-align: center; }
      .footer__certs { flex-direction: column; gap: 12px; }
      .footer__cta-buttons { flex-direction: column; align-items: center; }
    }

    /* ===================== STICKY CTA ===================== */
    .sticky-cta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 90;
      background: rgba(5,8,9,.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--border);
      padding: 12px 0;
      transform: translateY(100%);
      transition: transform .5s cubic-bezier(.16,1,.3,1);
    }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-cta__inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gap);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .sticky-cta__text { font-size: .82rem; color: var(--muted); }
    .sticky-cta__text strong { color: var(--text); }
    @media(max-width:575px) {
      .sticky-cta__text { display: none; }
      .sticky-cta__inner { justify-content: center; }
    }

    /* ===================== ANIMATIONS ===================== */
    .reveal { opacity: 0; transform: translateY(30px); }
    .reveal-left { opacity: 0; transform: translateX(-40px); }
    .reveal-right { opacity: 0; transform: translateX(40px); }

    /* ===================== LIGHTBOX ===================== */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(2,5,5,.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .35s cubic-bezier(.16,1,.3,1);
    }
    .lightbox.active { opacity: 1; pointer-events: auto; }
    .lightbox__img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: var(--radius-lg);
      box-shadow: 0 32px 80px rgba(0,0,0,.5);
      transform: scale(.92);
      transition: transform .4s cubic-bezier(.16,1,.3,1);
    }
    .lightbox.active .lightbox__img { transform: scale(1); }
    .lightbox__close {
      position: absolute;
      top: 24px; right: 24px;
      width: 44px; height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      color: var(--text);
      cursor: pointer;
      transition: background .25s;
      border: none;
    }
    .lightbox__close:hover { background: rgba(255,255,255,.12); }
    .lightbox__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      color: var(--text);
      cursor: pointer;
      transition: background .25s;
      border: none;
    }
    .lightbox__nav:hover { background: rgba(255,255,255,.12); }
    .lightbox__nav--prev { left: 24px; }
    .lightbox__nav--next { right: 24px; }
    .lightbox__caption {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(12,20,21,.85);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: .78rem;
      color: var(--text-secondary);
      white-space: nowrap;
      max-width: 90vw;
      overflow: hidden;
      text-overflow: ellipsis;
      box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }

    /* ===================== NAV DROPDOWN ===================== */
    .nav__dropdown { position: relative; }
    .nav__dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
    .nav__dropdown-trigger i { width: 12px; height: 12px; transition: transform .25s; }
    .nav__dropdown:hover .nav__dropdown-trigger i { transform: rotate(180deg); }
    .nav__dropdown-menu {
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(12,20,21,.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 8px;
      min-width: 240px;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(8px);
      transition: all .25s cubic-bezier(.16,1,.3,1);
      box-shadow: 0 16px 40px rgba(0,0,0,.4);
    }
    .nav__dropdown:hover .nav__dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav__dropdown-menu::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0; right: 0;
      height: 12px;
    }
    .nav__dropdown-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: .78rem !important;
      font-weight: 500 !important;
      text-transform: none !important;
      letter-spacing: .02em !important;
      color: var(--muted) !important;
      transition: all .2s;
    }
    .nav__dropdown-link:hover { background: var(--gold-08); color: var(--text) !important; }
    .nav__dropdown-link::after { display: none !important; }
    .nav__dropdown-link i { width: 16px; height: 16px; color: var(--gold); opacity: .5; }

    @media(max-width:991px) {
      .nav__dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        min-width: auto;
      }
      .nav__dropdown-trigger i { display: none; }
    }

    /* ===================== SCROLLBAR ===================== */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,.5); }
    html { scrollbar-width: thin; scrollbar-color: rgba(201,168,76,.3) var(--bg); }

    /* ===================== WHATSAPP ===================== */
    .whatsapp-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 80;
      width: 54px; height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s cubic-bezier(.16,1,.3,1);
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(37,211,102,.3);
    }
    .whatsapp-float:hover {
      transform: scale(1.08) translateY(-2px);
      box-shadow: 0 8px 24px rgba(37,211,102,.4);
    }
    .whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }
    .whatsapp-float__tooltip {
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      transform: translateY(-50%);
      background: rgba(12,20,21,.92);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px 14px;
      white-space: nowrap;
      font-size: .78rem;
      color: var(--text);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
      box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }
    .whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }
    .whatsapp-float.lifted { bottom: 76px; }

    /* ===================== SELECTION & GRAIN ===================== */
    ::selection { background: var(--gold); color: #050809; }

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

    /* ===================== BLUR-REVEAL HEADINGS ===================== */
    .sec h2.blur-reveal {
      filter: blur(8px);
      opacity: 0;
      transform: translateY(20px);
    }

/* ===================== HIGHLIGHT PARAGRAPH ===================== */
.about-highlight-p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
}
.about-highlight-p strong { color: var(--text); font-weight: 600; }
