
    :root {
      /* Dusty rose palette — elegant but tones with hot pink accent */
      --rose-base: #D48B9C;       /* Dusty rose — primary background */
      --rose-light: #E8B4BF;      /* Lighter dusty rose */
      --rose-pale: #F0CDD5;       /* Pale rose */
      --rose-deep: #C07185;       /* Deeper dusty rose */
      --rose-dark: #A35D6F;       /* Dark rose */
      --rose-darkest: #8A4D5E;    /* Darkest rose — footer */
      --pink-accent: #FF0080;     /* Skærbleikur accent — stands out on dusty rose */
      --pink-accent-light: #FF40A0;
      --white: #ffffff;
      --white-95: rgba(255,255,255,0.95);
      --white-90: rgba(255,255,255,0.9);
      --white-70: rgba(255,255,255,0.7);
      --white-50: rgba(255,255,255,0.5);
      --white-20: rgba(255,255,255,0.2);
      --white-10: rgba(255,255,255,0.1);
      --font-display: 'Playfair Display', serif;
      --font-heading: 'League Spartan', sans-serif;
      --font-body: 'Sora', sans-serif;
      --font-ui: 'Plus Jakarta Sans', sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--white);
      background: var(--rose-dark);
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════
       STAR CANVAS — Full page, fixed
    ═══════════════════════════════════════ */
    #star-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      z-index: 0;
      pointer-events: none;
    }

    /* ═══════════════════════════════════════
       ANIMATED GRADIENT TEXT
    ═══════════════════════════════════════ */
    .gradient-text {
      background: linear-gradient(
        90deg,
        rgba(255,255,255,1) 0%,
        rgba(255,0,128,0.9) 40%,
        rgba(255,255,255,1) 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ═══════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 40px;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(232,180,191,0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    }
    .nav-logo {
      font-family: var(--font-heading);
      font-weight: 900;
      font-size: 28px;
      color: white;
      text-decoration: none;
      text-shadow: 0 0 15px rgba(255,0,128,0.7), 0 0 40px rgba(255,0,128,0.4);
    }
    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }
    .nav-links a {
      color: var(--white-90);
      text-decoration: none;
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 600;
      text-shadow: 0 0 12px rgba(255,0,128,0.5), 0 0 30px rgba(255,0,128,0.3);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: white; }
    .lang-toggle {
      display: flex;
      border: 1.5px solid var(--white-50);
      border-radius: 20px;
      overflow: hidden;
      margin-left: 12px;
      box-shadow: 0 0 15px rgba(255,0,128,0.4), 0 0 35px rgba(255,0,128,0.2);
    }
    .lang-btn {
      padding: 5px 14px;
      font-size: 13px;
      font-weight: 600;
      font-family: var(--font-ui);
      border: none;
      cursor: pointer;
      background: transparent;
      color: var(--white-70);
      transition: all 0.2s;
    }
    .lang-btn.active {
      background: white;
      color: var(--pink-accent);
      border-radius: 16px;
    }

    /* ═══════════════════════════════════════
       PARALLAX SHADOW SECTIONS
       Each slides over the previous with shadow
    ═══════════════════════════════════════ */
    .parallax-section {
      position: sticky;
      top: 0;
      z-index: 1;
      box-shadow: 0 -24px 80px rgba(0,0,0,0.15), 0 -6px 24px rgba(0,0,0,0.08);
    }
    /* Each section stacks higher so it covers the previous */
    .parallax-section:nth-of-type(1) { z-index: 2; }
    .parallax-section:nth-of-type(2) { z-index: 3; }
    .parallax-section:nth-of-type(3) { z-index: 4; }
    .parallax-section:nth-of-type(4) { z-index: 5; }
    .parallax-section:nth-of-type(5) { z-index: 6; }
    .parallax-section:nth-of-type(6) { z-index: 7; }

    /* Pink shades — alternating */
    /* Each section is a slightly different shade — subtle depth */
    .bg-rose { background: var(--rose-base); }
    /* Flipped: light on top (hero area), gets deeper as you scroll */
    .bg-gradient-1 { background: linear-gradient(180deg, rgba(163,93,111,0.85) 0%, rgba(192,113,133,0.85) 100%); }
    .bg-gradient-2 { background: linear-gradient(180deg, rgba(192,113,133,0.85) 0%, rgba(212,139,156,0.85) 100%); }
    .bg-gradient-3 { background: linear-gradient(180deg, rgba(212,139,156,0.85) 0%, rgba(192,113,133,0.85) 100%); }
    .bg-gradient-cta { background: linear-gradient(180deg, rgba(192,113,133,0.85) 0%, rgba(163,93,111,0.85) 100%); }

    /* ═══════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════ */
    .hero {
      position: sticky;
      top: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: transparent;
      box-shadow: none;
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 720px;
      padding: 120px 0px 80px 0px;
      margin-left: 20%;
      margin-right: -360px;
      padding-top: 200px;
      text-align: center;
    }
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white-20);
      border: 1px solid var(--white-50);
      box-shadow: 0 0 20px rgba(255,0,128,0.3);
      border-radius: 100px;
      padding: 8px 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: white;
      margin-bottom: 32px;
      backdrop-filter: blur(8px);
    }
    .hero-pill .dot {
      width: 8px; height: 8px;
      background: white;
      border-radius: 50%;
      animation: pulseDot 2s ease-in-out infinite;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(56px, 8vw, 100px);
      font-weight: 900;
      line-height: 1.05;
      color: white;
      margin-bottom: 24px;
      text-shadow: 0 0 30px rgba(255,0,128,0.5), 0 0 60px rgba(255,0,128,0.3), 0 4px 12px rgba(0,0,0,0.2);
    }
    .hero h1 em {
      font-style: italic;
    }
    .hero-desc {
      font-size: 20px;
      text-shadow: 0 0 20px rgba(255,0,128,0.9), 0 0 50px rgba(255,0,128,0.7), 0 0 100px rgba(255,0,128,0.4), 0 2px 10px rgba(0,0,0,0.3);
      line-height: 1.7;
      color: var(--white-90);
      margin-bottom: 40px;
      max-width: 100%;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      background: white;
      color: var(--pink-accent);
      border: none;
      border-radius: 100px;
      font-family: var(--font-ui);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(0,0,0,0.15), 0 0 30px rgba(255,0,128,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 40px rgba(255,0,128,0.5);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      background: transparent;
      color: white;
      border: 1.5px solid var(--white-50);
      border-radius: 100px;
      font-family: var(--font-ui);
      font-size: 16px;
      box-shadow: 0 0 25px rgba(255,0,128,0.3);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }
    .btn-secondary:hover {
      border-color: white;
      background: var(--white-20);
    }
    .hero-image {
      position: absolute;
      right: 0;
      bottom: -150px;
      width: 55%;
      height: calc(100% + 150px);
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
    }
    .hero-image img {
      max-height: 105%;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 60px rgba(0,0,0,0.2));
    }

    /* ═══════════════════════════════════════
       SECTION LAYOUTS
    ═══════════════════════════════════════ */
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 40px;
    }
    .section-label {
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white-70);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900;
      line-height: 1.1;
      color: white;
      margin-bottom: 20px;
    }
    .section-desc {
      font-size: 18px;
      line-height: 1.7;
      color: var(--white-90);
      max-width: 600px;
      margin-bottom: 60px;
    }

    /* ═══════════════════════════════════════
       FEATURE PILLS (under hero)
    ═══════════════════════════════════════ */
    .feature-pills-section {
      position: relative;
      z-index: 1;
    }
    .feature-pills {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      padding: 40px 20px;
    }
    .feature-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border: 1px solid var(--white-20);
      border-radius: 100px;
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 500;
      color: white;
      background: var(--white-20);
      backdrop-filter: blur(8px);
    }

    /* ═══════════════════════════════════════
       BENTO FEATURE GRID
    ═══════════════════════════════════════ */
    .bento-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .bento-card {
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(16px);
      border: 1.5px solid var(--white-20);
      border-radius: 24px;
      padding: 40px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .bento-card:hover {
      transform: translateY(-4px);
      border-color: var(--white-50);
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    }
    .bento-card.accent {
      background: rgba(255,0,128,0.1);
      border: 2px solid rgba(255,0,128,0.4);
      box-shadow: 0 0 30px rgba(255,0,128,0.15);
    }
    .bento-card.accent:hover {
      border-color: rgba(255,0,128,0.6);
      box-shadow: 0 0 40px rgba(255,0,128,0.25);
    }
    .bento-card.wide {
      grid-column: span 2;
    }
    .bento-icon {
      width: 56px; height: 56px;
      background: var(--white-20);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 24px;
    }
    .bento-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: white;
    }
    .bento-card p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--white-90);
    }

    /* ═══════════════════════════════════════
       HOW IT WORKS — STEPS
    ═══════════════════════════════════════ */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .step-card {
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(16px);
      border: 1.5px solid var(--white-20);
      border-radius: 24px;
      padding: 48px 32px;
      text-align: center;
      transition: transform 0.3s, border-color 0.3s;
    }
    .step-card:hover {
      transform: translateY(-4px);
      border-color: var(--white-50);
    }
    .step-number {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 900;
      margin-bottom: 20px;
    }
    .step-card h3 {
      font-family: var(--font-ui);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: white;
    }
    .step-card p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--white-90);
    }

    /* ═══════════════════════════════════════
       PRICING CARDS
    ═══════════════════════════════════════ */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }
    .pricing-card {
      background: var(--white-20);
      backdrop-filter: blur(16px);
      border: 1.5px solid var(--white-20);
      border-radius: 24px;
      padding: 40px 32px;
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .pricing-card.featured {
      border: 2px solid white;
      background: var(--white-50);
      transform: scale(1.04);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    .pricing-card.featured:hover {
      transform: scale(1.04) translateY(-4px);
    }
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      color: var(--pink-accent);
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 20px;
      border-radius: 100px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .pricing-name {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
    }
    .pricing-price {
      font-family: var(--font-heading);
      font-size: 42px;
      font-weight: 900;
      color: white;
      margin-bottom: 4px;
    }
    .pricing-per {
      font-size: 14px;
      color: var(--white-70);
      margin-bottom: 28px;
    }
    .pricing-features {
      list-style: none;
      margin-bottom: 32px;
    }
    .pricing-features li {
      padding: 8px 0;
      font-size: 14px;
      color: var(--white-90);
      border-bottom: 1px solid var(--white-20);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-features li::before {
      content: "✓";
      color: white;
      font-weight: 700;
    }
    .btn-pricing {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 8px;
      padding: 16px 36px;
      background: white;
      color: var(--pink-accent);
      border: none;
      border-radius: 100px;
      font-family: var(--font-ui);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(0,0,0,0.1);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn-pricing:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }

    /* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
    .cta-section { text-align: center; }
    .cta-section .section-title {
      max-width: 700px;
      margin: 0 auto 20px;
    }
    .cta-section .section-desc {
      max-width: 500px;
      margin: 0 auto 40px;
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer {
      position: relative;
      z-index: 10;
      background: var(--rose-darkest);
      color: var(--white-70);
      padding: 40px;
      text-align: center;
      font-size: 14px;
    }
    footer a {
      color: var(--white-90);
      text-decoration: none;
      margin: 0 12px;
    }
    footer a:hover { color: white; }

    /* ═══════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 768px) {
      .hero { flex-direction: column; min-height: auto; padding-top: 80px; }
      .hero-content { padding: 40px 24px; max-width: 100%; }
      .hero-image { position: relative; width: 100%; height: 400px; }
      .bento-grid { grid-template-columns: 1fr; }
      .bento-card.wide { grid-column: span 1; }
      .steps-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .pricing-card.featured { transform: scale(1); }
      .section-inner { padding: 60px 20px; }
      nav { padding: 0 20px; }
    }
  
