:root {
        --bg-color: #0b0e11;
        --card-bg: #161a1e;
        --text-main: #ffffff;
        --text-muted: #8e949a;

        --brand-orange: #f58220;
        --nl-red: #ae1c28;
        --nl-white: #ffffff;
        --nl-blue: #21468b;

        --accent-primary: var(--nl-blue);
        --accent-hover: #183568;

        --gold: #d4af37;
        --border-color: #2a3038;
        --font-main: "Montserrat", sans-serif;
        --font-serif: "Playfair Display", serif;
      }
      .iti .iti__selected-dial-code {
        color: grey !important;
      }
      .iti__country-name {
        color: #000 !important;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: var(--font-main);
        background-color: var(--bg-color);
        color: var(--text-main);
        overflow-x: hidden;
        line-height: 1.6;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: 0.3s;
      }
      ul {
        list-style: none;
      }

      .btn {
        display: inline-block;
        padding: 14px 32px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        border-radius: 4px;
        cursor: pointer;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .btn-primary {
        background-color: var(--accent-primary);
        color: white;
        border: none; 
        box-shadow: 0 4px 15px rgba(33, 70, 139, 0.4); 
      }

      .btn-primary:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(33, 70, 139, 0.6);
      }

      header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 20px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(11, 14, 17, 0.9);
        backdrop-filter: blur(12px);
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      .logo {
        font-size: 1.5rem;
        font-weight: 800;
        letter-spacing: -1px;
      }
      .logo span {
        color: var(--accent-primary);
      }

      .nav-links {
        display: flex;
        gap: 30px;
      }
      .nav-links a {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
      }
      .nav-links a:hover {
        color: #fff;
      }
      .language-switch {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 40px;
        padding: 0 11px;
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 7px;
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.08em;
      }
      .language-switch:hover,
      .language-switch:focus-visible {
        color: #0b0e11;
        background: var(--brand-orange);
        border-color: var(--brand-orange);
        outline: none;
      }
      .hamburger {
        display: none;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
      }
      .hamburger:hover {
        background: rgba(255, 255, 255, 0.12);
      }
      .hamburger-lines {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .hamburger-lines span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: 0.3s;
      }
      .mobile-menu {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: rgba(11, 14, 17, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px 5% 30px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: 0.3s ease;
        z-index: 999;
      }
      .mobile-menu.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .mobile-menu a {
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
      }
      .mobile-menu .btn {
        width: 100%;
        text-align: center;
      }

      .hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background-color: #0b0e11;
        overflow: hidden;
        padding: 80px 5% 60px;
      }

      .video-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        z-index: 0;
        object-fit: cover;
        opacity: 1;
      }

      .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          rgba(5, 14, 25, 0.82) 0%,
          rgba(5, 14, 25, 0.62) 48%,
          rgba(5, 14, 25, 0.34) 100%
        );
        z-index: 1;
      }

      .hero-wrapper {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 30%;
        gap: 40px;
        align-items: center;
        max-width: 1200px;
        width: 100%;
        position: relative;
        z-index: 2;
      }

      .hero-text-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        color: #fff;
        position: relative;
        z-index: 2;
        max-width: none;
        min-width: 0;
      }

      .hero-h1 {
        font-family: var(--font-main);
        font-size: clamp(3rem, 5.2vw, 5.15rem);
        line-height: 0.98;
        font-weight: 800;
        margin: 0 0 24px;
        letter-spacing: -0.055em;
        color: #fff;
        text-shadow:
          0 2px 3px rgba(7, 24, 34, 0.72),
          0 8px 24px rgba(7, 24, 34, 0.4);
      }

      html[lang^="nl"] .hero-h1 {
        font-size: clamp(2.7rem, 4.65vw, 4.75rem);
      }

      .text-highlight {
        color: #fff;
        text-transform: uppercase;
        text-decoration-line: underline;
        text-decoration-color: var(--brand-orange);
        text-decoration-thickness: 6px;
        text-underline-offset: 8px;
      }

      .premium-subhead {
        max-width: 800px;
        margin: 0 0 34px;
        font-family: var(--font-main);
        font-size: clamp(1.7rem, 2.8vw, 2.75rem);
        font-weight: 600;
        font-style: normal;
        line-height: 1.15;
        letter-spacing: -0.035em;
        color: #fff;
        text-wrap: balance;
        -webkit-font-smoothing: antialiased;
        -webkit-text-stroke: 0.3px rgba(7, 24, 34, 0.65);
        text-shadow:
          0 2px 3px rgba(7, 24, 34, 0.95),
          0 6px 16px rgba(7, 24, 34, 0.68);
      }

      .premium-subhead strong {
        font-weight: 800;
        color: #fff;
        text-decoration-line: underline;
        text-decoration-color: var(--brand-orange);
        text-decoration-thickness: 3px;
        text-underline-offset: 5px;
      }

      .text-rotator-wrapper {
        margin-top: 0;
        margin-bottom: 40px;
        height: 40px;
        overflow: hidden;
        position: relative;
      }

      .rotator-window {
        position: relative;
        height: 100%;
      }
      .rotating-text {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
      }

      .rotating-text li {
        font-family: var(--font-main);
        font-size: clamp(1.05rem, 1.55vw, 1.45rem);
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.015em;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 40px;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        text-shadow:
          0 2px 3px rgba(7, 24, 34, 0.95),
          0 5px 13px rgba(7, 24, 34, 0.68);
      }

      .rotating-text li.active {
        opacity: 1;
        transform: translateY(0);
      }
      .rotating-text li.exit {
        opacity: 0;
        transform: translateY(-30px);
      }

      .lux-icon {
        color: var(--gold);
        font-size: 1.1rem;
        margin-right: 10px;
        text-shadow:
          0 2px 5px rgba(7, 24, 34, 0.7),
          0 0 10px rgba(212, 175, 55, 0.4);
      }

      @media (max-width: 768px) {
        .hero-text-content {
          width: 100%;
          max-width: none;
          padding-inline: 22px;
          text-align: center;
        }

        .hero-h1 {
          margin-bottom: 22px;
          font-size: clamp(2.25rem, 10vw, 3.4rem);
          line-height: 1;
          letter-spacing: -0.045em;
        }

        html[lang^="nl"] .hero-h1 {
          font-size: clamp(2rem, 8.7vw, 3.05rem);
          letter-spacing: -0.05em;
        }

        .text-highlight {
          text-decoration-thickness: 4px;
          text-underline-offset: 6px;
        }

        .premium-subhead {
          max-width: 430px;
          margin: 0 auto 30px;
          font-size: clamp(1.5rem, 7vw, 2.05rem);
          line-height: 1.16;
          letter-spacing: -0.025em;
        }

        .premium-subhead br {
          display: none;
        }

        .rotating-text li {
          justify-content: center;
          padding-inline: 4px;
          font-size: 1rem;
          line-height: 1.35;
          white-space: normal;
        }

        .text-rotator-wrapper,
        .rotator-window,
        .rotating-text li {
          min-height: 54px;
          height: 54px;
        }
      }

      .trust-form-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        background: rgba(22, 26, 30, 0.75);
        backdrop-filter: blur(20px);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        opacity: 0;
        transform: translateX(50px);
        animation: fadeSlideInRight 1s forwards 0.5s;
      }

      .form-header h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 5px;
      }
      .form-header p {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 25px;
      }

      .input-group {
        margin-bottom: 20px;
      }
      .input-field {
        width: 100%;
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid #333;
        border-radius: 6px;
        color: #fff;
        font-family: var(--font-main);
        font-size: 1rem;
        transition: 0.3s;
      }
      .input-field:focus {
        outline: none;
        border-color: var(--brand-orange);
        background: rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 10px rgba(245, 130, 32, 0.24);
      }

      .btn-trust {
        width: 100%;
        padding: 16px;
        background-color: var(--accent-primary);
        color: #fff;
        border: none;
        border-radius: 6px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.3s;
        letter-spacing: 1px;
        box-shadow: 0 5px 20px rgba(33, 70, 139, 0.35);
      }
      .btn-trust:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(33, 70, 139, 0.48);
      }

      .slide-in-left {
        opacity: 0;
        transform: translateX(-100px);
        animation: slideInLeft 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
      }
      @keyframes fadeSlideInRight {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      @keyframes slideInLeft {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .reveal-delay {
        opacity: 0;
        animation: fadeUp 1s forwards 0.4s;
      }
      .reveal-delay-2 {
        opacity: 0;
        animation: fadeUp 1s forwards 0.8s;
      }

      .chessboard-section {
        padding: 0;
        background: var(--bg-color);
      }
      .chess-row {
        display: flex;
        min-height: 600px;
      }
      .chess-row:nth-child(even) {
        flex-direction: row-reverse;
      }
      .chess-text {
        flex: 1;
        padding: 80px 6%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2;
        background: var(--bg-color);
      }
      .chess-row:nth-child(even) .chess-text {
        background: #0f1215;
      }
      .chess-img {
        flex: 1;
        background-size: cover;
        background-position: center;
        min-height: 400px;
        position: relative;
      }
      .chess-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
      }


      .fomo-badge {
        display: inline-block;
        padding: 6px 14px;
        margin-bottom: 20px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
      }
      .badge-green {
        background: rgba(245, 130, 32, 0.14);
        color: #ff9a45;
      }

      .badge-red {
        background: rgba(206, 43, 55, 0.1);
        color: #e65c65;
        border: 1px solid rgba(206, 43, 55, 0.2);
      }
      .badge-gold {
        background: rgba(212, 175, 55, 0.15);
        color: var(--gold);
      }

      .chess-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #fff;
      }

      .chess-text .highlight {
        color: #fff;
        border-bottom: 3px solid var(--brand-orange);
      }

      .pain-point {
        border-left: 4px solid var(--brand-orange);
        padding-left: 15px;
        font-style: italic;
        color: #ddd;
        margin-bottom: 35px;
        background: linear-gradient(
          90deg,
          rgba(245, 130, 32, 0.07) 0%,
          transparent 100%
        );
        padding: 10px 15px;
        border-radius: 0 4px 4px 0;
      }

      .reveal-left {
        opacity: 0;
        transform: translateX(-80px);
        transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
      }
      .reveal-right {
        opacity: 0;
        transform: translateX(80px);
        transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
      }
      .active {
        opacity: 1;
        transform: translateX(0);
      }
      .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: #fff;
        padding: 12px 24px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        z-index: 2000;
        font-weight: 700;
        transition: transform 0.3s;
      }
      .whatsapp-float:hover {
        transform: translateY(-5px);
      }

      footer {
        background-color: #050607;
        color: #8e949a;
        font-size: 0.9rem;
        padding: 80px 0 30px;
        border-top: 1px solid var(--border-color);
      }

      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
      }

      .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
      }

      .footer-brand {
        display: flex;
        align-items: center;
        gap: 30px;
      }

      .years-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        padding: 8px 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .badge-icon {
        font-size: 1.5rem;
      }

      .badge-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
      }

      .badge-text strong {
        color: #fff;
        font-size: 0.9rem;
      }
      .badge-text span {
        font-size: 0.75rem;
        color: var(--brand-orange);
      }

      .footer-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, #2a3038, transparent);
        margin-bottom: 50px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
      }

      .footer-col h4 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 1.1rem;
        border-left: 3px solid transparent;
        border-image: linear-gradient(to bottom, var(--nl-red) 0 33.33%, var(--nl-white) 33.33% 66.66%, var(--nl-blue) 66.66% 100%) 1;
        padding-left: 15px;
      }

      .footer-desc {
        margin-bottom: 20px;
        line-height: 1.6;
      }

      .contact-list li {
        margin-bottom: 12px;
        font-size: 0.9rem;
      }
      .contact-list strong {
        color: #ccc;
      }

      .footer-col ul li {
        margin-bottom: 12px;
      }
      .footer-col ul li a:hover {
        color: #fff;
        text-decoration: underline;
      }

      .regulatory-block {
        text-align: center;
        margin-bottom: 50px;
        padding: 30px;
        background: #0b0e11;
        border-radius: 10px;
        border: 1px solid #1f2429;
      }

      .regulatory-block p {
        margin-bottom: 20px;
        font-weight: 600;
        color: #fff;
      }

      .regulator-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
      }

      .reg-logo img {
        height: 45px;
        opacity: 0.6;
        filter: grayscale(100%) brightness(0) invert(1);
        transition: 0.3s;
      }

      .reg-logo:hover img {
        opacity: 1;
        filter: grayscale(0%);
      }

      .text-logo {
        font-weight: 800;
        color: #555;
        font-size: 1.1rem;
        border: 2px solid #333;
        padding: 5px 15px;
        border-radius: 4px;
      }
      .text-logo span {
        color: #777;
      }

      .legal-disclaimer {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: justify;
        color: #b7bec7;
        border-top: 1px solid #1a1a1a;
        padding-top: 30px;
      }

      .legal-disclaimer strong {
        color: #fff;
      }

      .copyright {
        text-align: center;
        margin-top: 30px;
        color: #444;
        font-size: 0.8rem;
      }

      @media (max-width: 1024px) {
        .hero-wrapper {
          grid-template-columns: 1fr;
          gap: 50px;
          text-align: center;
          margin-top: 80px;
        }
        .hero-text-content {
          order: 1;
          text-align: center;
        }
        .trust-form-card {
          order: 2;
          width: 100%;
          max-width: 500px;
          margin: 0 auto;
          transform: translateX(0);
        }
        .rotating-text li {
          justify-content: center;
        }
        .hero-h1 {
          font-size: 2.5rem;
        }
        .premium-subhead {
          font-size: 1.6rem;
        }
        .nav-links {
          display: none;
        }
        header .btn-primary {
          display: none;
        }
        .hamburger {
          display: inline-flex;
        }
        .mobile-menu {
          top: 78px;
        }
        .chess-row,
        .chess-row:nth-child(even) {
          flex-direction: column;
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .footer-col h4 {
          border-left: none;
          border-bottom: 3px solid transparent;
          border-image: linear-gradient(to right, var(--nl-red) 0 33.33%, var(--nl-white) 33.33% 66.66%, var(--nl-blue) 66.66% 100%) 1;
          display: inline-block;
          padding-left: 0;
          padding-bottom: 5px;
        }
        .reveal-left,
        .reveal-right {
          transform: translateY(50px);
        }
        .footer-top {
          flex-direction: column;
          gap: 30px;
          text-align: center;
        }
        .footer-brand {
          flex-direction: column;
        }
        .regulator-logos {
          gap: 20px;
        }
      }

      .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px);
        z-index: 5000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        padding: 20px;
      }

      .modal-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      .legal-paper {
        background: #fdfdfd; 
        color: #1a1a1a; 
        width: 100%;
        max-width: 800px; 
        max-height: 90vh; 
        overflow-y: auto; 
        padding: 50px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        position: relative;
        font-family: "Times New Roman", Times, serif; 
        transform: translateY(20px);
        transition: 0.3s;
      }

      .modal-overlay.active .legal-paper {
        transform: translateY(0);
      }

      .close-modal {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #333;
        font-family: sans-serif;
      }

      .close-modal:hover {
        color: var(--nl-red);
      }

      .doc-header {
        display: flex;
        justify-content: space-between;
        border-bottom: 2px solid #000;
        padding-bottom: 20px;
        margin-bottom: 30px;
      }

      .doc-logo {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 1.2rem;
        letter-spacing: -1px;
      }

      .doc-meta {
        text-align: right;
        font-size: 0.75rem;
        font-family: "Courier New", monospace;
        display: flex;
        flex-direction: column;
        color: #555;
      }

      .doc-title {
        text-align: center;
        font-size: 1.8rem;
        text-transform: uppercase;
        margin-bottom: 20px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: underline;
      }

      .doc-intro {
        font-size: 1rem;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 40px;
        font-style: italic;
      }

      .doc-section {
        margin-bottom: 40px;
      }

      .doc-section h3 {
        font-family: "Montserrat", sans-serif;
        font-size: 1rem;
        text-transform: uppercase;
        border-bottom: 1px solid #ccc;
        padding-bottom: 5px;
        margin-bottom: 15px;
      }

      .legal-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.95rem;
      }

      .legal-table th {
        text-align: left;
        border-bottom: 2px solid #333;
        padding: 10px 5px;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
      }

      .legal-table td {
        border-bottom: 1px solid #e0e0e0;
        padding: 12px 5px;
      }

      .text-right {
        text-align: right;
      }
      .mono {
        font-family: "Courier New", monospace;
        font-weight: 700;
      }
      .green-text {
        color: #006400;
        font-weight: 700;
      } 
      .section-note {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 10px;
        font-style: italic;
      }

      .doc-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 60px;
        margin-bottom: 30px;
      }

      .sign-line {
        border-top: 1px solid #333;
        width: 200px;
        padding-top: 5px;
        font-style: italic;
        font-weight: 700;
      }

      .stamp-box {
        border: 3px double #b02a37; 
        color: #b02a37;
        padding: 10px 20px;
        font-weight: 900;
        font-family: "Courier New", monospace;
        transform: rotate(-10deg);
        text-transform: uppercase;
        opacity: 0.8;
      }

      .doc-disclaimer {
        font-size: 0.7rem;
        color: #777;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
        line-height: 1.4;
      }

      @media (max-width: 600px) {
        .legal-paper {
          padding: 20px;
          width: 95%;
        }
        .doc-header {
          flex-direction: column;
          gap: 10px;
        }
        .doc-meta {
          text-align: left;
        }
        .doc-title {
          font-size: 1.4rem;
        }
      }

  @media (max-width: 768px) {
    .hero {
      padding: 100px 5% 40px;
    }

    .hero-wrapper {
      gap: 30px;
    }
  }

/* Extracted utility classes and loading optimizations */
.mobile-cta {
  margin-top: 18px;
}

.form-consent {
  margin-top: 15px;
  color: #666;
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
}

.text-link {
  text-decoration: underline;
}

.legal-disclaimer-spaced {
  margin-top: 15px;
}

.chess-img {
  overflow: hidden;
}

.chess-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chess-img::after {
  z-index: 1;
  pointer-events: none;
}

.chess-row,
footer {
  content-visibility: auto;
}

.chess-row {
  contain-intrinsic-size: 600px;
}

footer {
  contain-intrinsic-size: 900px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-left,
  .reveal-right,
  .reveal-delay,
  .reveal-delay-2,
  .slide-in-left,
  .trust-form-card {
    opacity: 1;
    transform: none;
  }
}
/* Shared mobile hero + NL long titles */
@media (max-width: 768px) {
  .hero {
    padding-inline: 16px;
  }

  .hero-wrapper {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    gap: 30px;
  }

  .hero-text-content {
    width: 100%;
    min-width: 0;
    padding-inline: 0;
  }

  .hero-h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  html[lang^="nl"] .hero-h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    white-space: normal;
    word-break: keep-all;
  }

  .trust-form-card {
    width: 100%;
    max-width: 500px;
    min-width: 0;
    margin-inline: auto;
    padding: 24px 16px;
    transform: none;
    overflow: hidden;
  }

  .leadform,
  .input-group,
  .input-field,
  .iti {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
  }

  .iti input.input-field {
    width: 100% !important;
  }

  .form-header h3 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
    line-height: 1.2;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: clamp(1.4rem, 7vw, 2rem);
    line-height: 1.08;
  }
}

@media (max-width: 360px) {
  .hero-h1 {
    font-size: 1.38rem;
  }
}

/* BitLead leadform inside dark card */
.trust-form-card .leadform {
  padding: 0;
}
.trust-form-card .leadform > div {
  margin: 0 0 16px;
}
.trust-form-card .leadform input.input-field,
.trust-form-card .leadform input[type="text"],
.trust-form-card .leadform input[type="email"],
.trust-form-card .leadform input[type="tel"] {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
}
.trust-form-card .leadform input:focus {
  outline: none;
  border-color: var(--accent-primary, #009246);
  background: rgba(0, 0, 0, 0.6);
}
.trust-form-card .leadform button.btn-trust,
.trust-form-card .leadform button[type="submit"] {
  background-color: var(--accent-primary, #009246);
  border-radius: 6px;
  padding: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-form-card .iti {
  width: 100%;
}
.trust-form-card .iti input {
  width: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}
