
    /* ── Reset & Base ── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background: #F7F6F2;
      color: #4D4D4B;
      font-size: 17px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── Variables ── */
    :root {
      --pink: #FF1F8E;
      --pink-light: #FFE8F4;
      --pink-mid: #FF6DB6;
      --black: #4D4D4B;
      --gray-dark: #3D3D3A;
      --gray-mid: #888780;
      --gray-light: #D8D6CE;
      --cream: #F7F6F2;
      --white: #FFFFFF;
      --radius: 16px;
      --radius-sm: 8px;
    }

    /* ── Typography ── */
    h1,
    h2,
    h3 {
      font-family: 'Saira', sans-serif;
      line-height: 1.1;
    }

    h1 {
      font-size: clamp(3rem, 6vw, 5.5rem);
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
    }

    h3 {
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }

    .overline {
      font-family: 'Roboto', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--pink);
    }

    p {
      color: var(--gray-dark);
      max-width: 62ch;
    }

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

    /* ── Layout ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    section {
      padding: 120px 0;
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 68px;
      padding: 0 20px;
      background: #F7F6F2;
      border-bottom: 1px solid #D8D6CE;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100;
    }

    .nav-logo {
      font-weight: 600;
      font-size: 1.2rem;
      display: flex;
      gap: 5px;
      align-items: flex-end;
      color:  var(--pink);
    }


    /* LINKS */
    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #4D4D4B;
      font-size: 0.9rem;
    }

    .nav-cta {
      background: #4D4D4B;
      color: white;
      padding: 8px 18px;
      border-radius: 999px;
    }

    .nav-links a.nav-cta {
      color: white;
    }

    /* BURGER */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .burger span {
      width: 24px;
      height: 2px;
      background: #4D4D4B;
      display: block;
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .burger {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #F7F6F2;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
      }

      .nav-links.active {
        display: flex;
      }
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      padding-top: 68px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
      overflow: hidden;
      position: relative;
    }

    .hero-left {
      padding: 80px 60px 80px 40px;
      position: relative;
      z-index: 2;
    }

    .hero-left .overline {
      margin-bottom: 20px;
      display: block;
    }

    .hero-left h1 {
      margin-bottom: 28px;
      color: var(--black);
    }

    .hero-left h1 em {
      font-style: italic;
      color: var(--pink);
    }

    .hero-left p {
      font-size: 1.15rem;
      margin-bottom: 40px;
      max-width: 48ch;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--pink);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 31, 142, 0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--black);
      padding: 14px 32px;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      border: 1.5px solid var(--gray-light);
      transition: border-color 0.2s, color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary:hover {
      border-color: var(--black);
    }

    .hero-right {
      height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;


      background-color: #F2F0EB;


      background-image: url("/static/grid.svg");
      background-repeat: repeat;
    }

    /* Abstract XR visual */
    .hero-illustration {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
    }

    .hero-badge {
      position: absolute;
      bottom: 48px;
      left: 48px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      border-radius: 100px;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-size: 0.82rem;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--pink);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(1.3);
      }
    }

    /* ── STATS BAR ── */
    #stats {
      padding: 0;
      background: #ECEAE4;
      border-top: 1px solid #D8D6CE;
      border-bottom: 1px solid #D8D6CE;
    }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-left: 1px solid #D8D6CE;
    }

    .stat-item {
      padding: 44px 40px;
      border-right: 1px solid #D8D6CE;
    }

    .stat-number {
      font-family: 'Saira', sans-serif;
      font-size: 2.8rem;
      color: var(--black);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-number span {
      color: var(--pink);
    }

    .stat-label {
      font-size: 0.82rem;
      color: var(--gray-mid);
      letter-spacing: 0.05em;
    }

    /* ── PROBLEM SECTION ── */
    #problem {
      background: var(--cream);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .problem-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .problem-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 24px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--gray-light);
      transition: border-color 0.2s, transform 0.2s;
    }

    .problem-item:hover {
      border-color: var(--pink);
      transform: translateX(4px);
    }

    .problem-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      background: var(--pink-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .problem-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--pink);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .problem-item h4 {
      font-family: 'Roboto', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 4px;
      color: var(--black);
    }

    .problem-item p {
      font-size: 0.88rem;
      color: var(--gray-mid);
      max-width: none;
      margin: 0;
    }

    .problem-visual {
      position: relative;
      background: var(--black);
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 400/440;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── SOLUTION / HOW IT WORKS ── */
    #solution {
      background: var(--white);
    }

    .section-header {
      margin-bottom: 72px;
    }

    .section-header h2 {
      margin: 12px 0 20px;
    }

    .section-header p {
      font-size: 1.05rem;
    }

    .platform-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--gray-light);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .platform-step {
      background: var(--white);
      padding: 48px 40px;
      position: relative;
    }

    .step-num {
      font-family: 'Saira', sans-serif;
      font-size: 4rem;
      color: var(--pink-light);
      line-height: 1;
      margin-bottom: 20px;
      transition: color 0.3s;
    }

    .platform-step:hover .step-num {
      color: var(--pink);
    }

    @media (max-width: 900px) {
      .step-num {

        color: var(--pink);

      }
    }

    .platform-step h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .platform-step p {
      font-size: 0.88rem;
      color: var(--gray-mid);
      max-width: none;
      margin: 0;
    }

    .step-arrow {
      position: absolute;
      right: -16px;
      top: 50%;
      transform: translateY(-50%);
      width: 32px;
      height: 32px;
      background: var(--pink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    @media (max-width: 900px) {
      .step-arrow {
        display: none;
      }
    }

    .step-arrow svg {
      width: 14px;
      height: 14px;
      stroke: white;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
    }

    /* ── ZIELGRUPPEN ── */
    #zielgruppen {
      background: var(--cream);
    }

    .zg-tabs {
      display: flex;
      gap: 4px;
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-radius: 100px;
      padding: 4px;
      width: fit-content;
      margin-bottom: 56px;
    }

    @media (max-width: 550px) {
      .zg-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 16px;
        /* optional: looks better stacked */
      }
    }

    .zg-tab {
      padding: 10px 28px;
      border-radius: 100px;
      font-size: 0.88rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.25s;
      color: var(--gray-mid);
      border: none;
      background: transparent;
      font-family: 'Roboto', sans-serif;
    }

    .zg-tab.active {
      background: var(--black);
      color: var(--white);
    }

    .zg-panel {
      display: none;
    }

    .zg-panel.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .zg-content .overline {
      display: block;
      margin-bottom: 16px;
    }

    .zg-content h2 {
      margin-bottom: 20px;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
    }

    .zg-content .lead {
      font-size: 1.05rem;
      margin-bottom: 36px;
      color: var(--gray-dark);
    }

    .problem-box {
      background: var(--black);
      border-radius: var(--radius);
      padding: 32px;
      margin-bottom: 24px;
    }

    .problem-box .overline {
      color: var(--pink-mid);
      margin-bottom: 12px;
      display: block;
    }

    .problem-box p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      max-width: none;
      margin: 0;
    }

    .benefit-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .benefit-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 18px 20px;
      background: var(--white);
      border-radius: var(--radius-sm);
      border-left: 3px solid var(--pink);
    }

    .benefit-item p {
      font-size: 0.88rem;
      margin: 0;
      max-width: none;
      color: var(--gray-dark);
    }

    .benefit-item strong {
      display: block;
      color: var(--black);
      font-weight: 600;
      margin-bottom: 2px;
      font-size: 0.88rem;
    }

    .zg-visual {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--gray-light);
      overflow: hidden;
    }

    .zg-visual-header {
      background: var(--black);
      padding: 28px 32px;
    }

    .zg-visual-header h4 {
      font-family: 'Saira', sans-serif;
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 6px;
    }

    .zg-visual-header p {
      color: var(--gray-mid);
      font-size: 0.82rem;
      max-width: none;
      margin: 0;
    }

    .zg-scenarios {
      padding: 28px 32px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .zg-scenario {
      display: flex;
      gap: 14px;
      align-items: center;
      padding: 14px 16px;
      background: var(--cream);
      border-radius: var(--radius-sm);
      transition: background 0.2s;
      cursor: default;
    }

    .zg-scenario:hover {
      background: var(--pink-light);
    }

    .scenario-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: var(--white);
      border-radius: 8px;
      border: 1px solid var(--gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .scenario-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--pink);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .scenario-text {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--black);
    }

    /* ── PLATFORM ── */
    #platform {
      background: var(--black);
      color: var(--white);
    }

    #platform h2 {
      color: var(--white);
    }

    #platform .section-header p {
      color: rgba(255, 255, 255, 0.6);
    }

    .platform-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .platform-card {
      background: #242422;
      border-radius: var(--radius);
      padding: 36px 32px;
      border: 1px solid #3A3A38;
      transition: border-color 0.25s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }

    .platform-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--pink);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .platform-card:hover {
      border-color: #555553;
      transform: translateY(-4px);
    }

    .platform-card:hover::before {
      transform: scaleX(1);
    }

    .card-tag {
      display: inline-block;
      background: rgba(255, 31, 142, 0.15);
      color: var(--pink-mid);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .platform-card h3 {
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .platform-card p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.88rem;
      max-width: none;
      margin: 0;
    }

    .card-icon {
      width: 48px;
      height: 48px;
      background: rgba(255, 31, 142, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .card-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--pink);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── SCENARIOS SECTION ── */
    #szenarien {
      background: var(--white);
    }

    .scenarios-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    .scenario-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid transparent;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }

    .scenario-card:hover {
      border-color: var(--pink);
      background: var(--white);
      transform: translateY(-3px);
    }

    .sc-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 18px;
    }

    .scenario-card h4 {
      font-family: 'Roboto', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--black);
      margin-bottom: 6px;
    }

    .scenario-card p {
      font-size: 0.8rem;
      color: var(--gray-mid);
      max-width: none;
      margin: 0;
      line-height: 1.5;
    }

    .sc-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .sc-tag.unternehmen {
      background: #FFE8F4;
      color: var(--pink);
    }

    .sc-tag.hochschule {
      background: #E8F4FF;
      color: #185FA5;
    }

    .sc-tag.einrichtung {
      background: #EAF3DE;
      color: #3B6D11;
    }

    /* ── LOCATIONS ── */
    #standorte {
      background: var(--cream);
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .location-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-light);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .location-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .location-map {
      height: 180px;
      background: #F0EEE8;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .location-info {
      padding: 24px 28px;
    }

    .location-city {
      font-family: 'Saira', sans-serif;
      font-size: 1.3rem;
      margin-bottom: 4px;
    }

    .location-address {
      font-size: 0.85rem;
      color: var(--gray-mid);
    }

    .location-pin {
      position: absolute;
      width: 28px;
      height: 28px;
      background: var(--pink);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .location-pin::after {
      content: '';
      width: 10px;
      height: 10px;
      background: white;
      border-radius: 50%;
      transform: rotate(45deg);
    }

    /* ── PARTNERS ── */
    #partner {
      background: var(--white);
      padding: 80px 0;
    }

    .partners-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .partner-logo {
      font-family: 'Roboto', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray-mid);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 12px 24px;
      border: 1px solid var(--gray-light);
      border-radius: 8px;
      transition: color 0.2s, border-color 0.2s;
    }

    .partner-logo:hover {
      color: var(--black);
      border-color: var(--black);
    }

    /* ── CTA SECTION ── */
    #cta {
      background: var(--black);
      padding: 120px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 31, 142, 0.2) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    #cta h2 {
      color: var(--white);
      max-width: 14ch;
      margin: 0 auto 20px;
      position: relative;
    }

    #cta p {
      color: rgba(255, 255, 255, 0.6);
      margin: 0 auto 48px;
      font-size: 1.05rem;
      position: relative;
    }

    .cta-form {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }

    .cta-input {
      padding: 14px 24px;
      border-radius: 100px;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.06);
      color: white;
      font-family: 'Roboto', sans-serif;
      font-size: 0.95rem;
      width: 280px;
      outline: none;
      transition: border-color 0.2s;
    }

    .cta-input::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }

    .cta-input:focus {
      border-color: var(--pink);
    }

    /* ── FOOTER ── */
    footer {
      background: #111110;
      padding: 64px 40px 40px;
    }

    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 48px;
      border-bottom: 1px solid #2A2A28;
    }

    .footer-brand h3 {
      font-family: 'Saira', sans-serif;
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.4);
      max-width: 30ch;
      margin: 0;
    }

    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 10px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.25);
    }

    @media (max-width: 450px) {
      .footer-bottom {
        flex-direction: column;
        gap: 20px;
      }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.7s ease forwards;
    }

    .fade-up:nth-child(1) {
      animation-delay: 0.1s;
    }

    .fade-up:nth-child(2) {
      animation-delay: 0.2s;
    }

    .fade-up:nth-child(3) {
      animation-delay: 0.3s;
    }

    .fade-up:nth-child(4) {
      animation-delay: 0.4s;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      #hero {
        grid-template-columns: 1fr;
      }

      .hero-right {
        height: 560px;
      }

      .problem-grid,
      .zg-panel.active,
      .platform-cards {
        grid-template-columns: 1fr;
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
      }

      @media (max-width: 450px) {
        .stats-inner {
          grid-template-columns: 1fr;
        }
      }

      .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      @media (max-width: 500px) {
        .scenarios-grid {
          grid-template-columns: 1fr;
        }
      }

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

      @media (max-width: 500px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
      }

      .platform-steps {
        grid-template-columns: 1fr;
      }

      .locations-grid {
        grid-template-columns: 1fr;
      }

      .container {
        padding: 0 20px;
      }

      nav {
        padding: 0 20px;
      }

      .hero-left {
        padding: 60px 20px;
      }
    }


    @media (max-width: 400px) {

      .hero-right {
        height: 360px;
      }
    }

    .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hide spinner by default */
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}

/* Loading state */
.btn-primary.loading .btn-text {
  display: none;
}

.btn-primary.loading .btn-spinner {
  display: inline-block;
}

/* Optional: disable look */
.btn-primary.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}