
    /* ══════════════════════════════════════
       VARIABLES & RESET
    ══════════════════════════════════════ */
    :root {
      --blue-deep:   #0900d6;
      --blue-mid:    #6964ea;
      --blue-light:  #a6cff4;
      --blue-pale:   #daeeff;
      --blue-bg:     #eef4ff;
      --slate:       #586674;
      --text:        #0f1729;
      --white:       #ffffff;
      --radius-lg:   20px;
      --radius-md:   14px;
      --shadow-card: 0 8px 40px rgba(9,0,214,0.09), 0 2px 8px rgba(9,0,214,0.05);
      --shadow-nav:  0 2px 24px rgba(9,0,214,0.08);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--blue-bg);
      color: var(--text);
      overflow-x: hidden;
      position: relative;
    }

    /* ══════════════════════════════════════
       GLOBAL FLOATING BLOBS BACKGROUND
    ══════════════════════════════════════ */
    .blob-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.45;
    }

    .blob-1 {
      width: 520px; height: 520px;
      background: radial-gradient(circle, #a6cff4, #6964ea);
      top: -100px; left: -150px;
      animation: drift1 18s ease-in-out infinite alternate;
    }
    .blob-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, #c5d8ff, #a6cff4);
      top: 30%; right: -100px;
      animation: drift2 22s ease-in-out infinite alternate;
    }
    .blob-3 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, #daeeff, #6964ea);
      bottom: 20%; left: 5%;
      animation: drift3 26s ease-in-out infinite alternate;
    }
    .blob-4 {
      width: 280px; height: 280px;
      background: radial-gradient(circle, #a6cff4, #c8c5f7);
      bottom: 5%; right: 10%;
      animation: drift4 20s ease-in-out infinite alternate;
    }
    .blob-5 {
      width: 220px; height: 220px;
      background: radial-gradient(circle, #daeeff, #a6cff4);
      top: 55%; left: 40%;
      animation: drift1 14s ease-in-out infinite alternate-reverse;
    }

    @keyframes drift1 {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(60px, 40px) scale(1.06); }
      100% { transform: translate(-40px, 70px) scale(0.96); }
    }
    @keyframes drift2 {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(-50px, 60px) scale(1.08); }
      100% { transform: translate(30px, -50px) scale(0.94); }
    }
    @keyframes drift3 {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(70px, -30px) scale(1.05); }
      100% { transform: translate(-20px, 60px) scale(1.02); }
    }
    @keyframes drift4 {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(-40px, 40px) scale(1.1); }
      100% { transform: translate(50px, -20px) scale(0.95); }
    }

    /* All sections sit above the blobs */
    nav, section, footer { position: relative; z-index: 1; }


    /* ══════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════ */
    nav {
      position: sticky;
      top: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 60px;
      background: rgba(238, 244, 255, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: var(--shadow-nav);
      z-index: 100;
    }

    /* Logo */
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

    .logo-img {
      height: 44px;
      width: auto;
      mix-blend-mode: multiply;
    }

    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 900;
      color: var(--blue-deep);
      letter-spacing: 0.3px;
    }

    /* In the dark footer the logo renders naturally - no blend mode needed */
    .footer-logo-img {
      height: 52px;
      width: auto;
    }

    /* Desktop nav links */
    .nav-links {
      display: flex;
      list-style: none;
      gap: 36px;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--slate);
      font-size: 0.9rem;
      font-weight: 400;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--blue-deep); }

    /* CTA button */
    .btn-primary {
      background: var(--blue-deep);
      color: var(--white);
      border: none;
      padding: 11px 26px;
      border-radius: var(--radius-md);
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 18px rgba(9,0,214,0.28);
      transition: transform 0.18s, box-shadow 0.18s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(9,0,214,0.38);
    }

    /* Burger menu */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .burger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--blue-deep);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav drawer */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 68px; right: 0;
      width: 240px;
      background: rgba(238,244,255,0.97);
      backdrop-filter: blur(16px);
      border-radius: 0 0 0 var(--radius-lg);
      box-shadow: -4px 8px 32px rgba(9,0,214,0.12);
      padding: 20px 0;
      z-index: 99;
      flex-direction: column;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 14px 28px;
      text-decoration: none;
      color: var(--text);
      font-size: 1rem;
      font-weight: 400;
      border-bottom: 1px solid rgba(166,207,244,0.3);
      transition: background 0.15s, color 0.15s;
    }
    .mobile-nav a:hover { background: rgba(166,207,244,0.2); color: var(--blue-deep); }
    .mobile-nav .mob-cta {
      margin: 16px 28px 0;
      text-align: center;
      border-bottom: none;
    }


    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      min-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 60px;
      gap: 60px;
    }

    .hero-text { flex: 1; max-width: 580px; text-align: center; }

    .hero-eyebrow-text {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--blue-mid);
      margin-bottom: 18px !important;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 8px;
    }

    .hero-text h1 span { color: var(--blue-deep); }

    .hero-sub {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      font-weight: 300;
      color: var(--slate);
      margin: 14px 0 20px;
      line-height: 1.5;
    }

    .hero-text p {
      font-size: 0.97rem;
      color: var(--slate);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }

    .btn-store {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--text);
      color: var(--white);
      text-decoration: none;
      padding: 16px 28px;
      border-radius: var(--radius-md);
      font-size: 0.95rem;
      transition: transform 0.18s, box-shadow 0.18s;
      box-shadow: 0 4px 16px rgba(15,23,41,0.2);
    }
    .btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,23,41,0.3); }
    .btn-store svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }
    .btn-store-text { display: flex; flex-direction: column; line-height: 1.2; }
    .btn-store-text .small { font-size: 0.75rem; opacity: 0.75; font-weight: 300; }
    .btn-store-text .big  { font-size: 1.05rem; font-weight: 600; }

    /* Phone mockup */
    .hero-phone-wrap {
      flex-shrink: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .phone-mockup {
      width: 220px;
      background: var(--white);
      border-radius: 36px;
      border: 2px solid rgba(166,207,244,0.4);
      box-shadow:
        0 40px 80px rgba(9,0,214,0.15),
        0 8px 32px rgba(9,0,214,0.1),
        inset 0 0 0 6px rgba(238,244,255,0.9);
      padding: 24px 16px 28px;
      text-align: center;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    .phone-notch {
      width: 60px; height: 5px;
      background: var(--text);
      border-radius: 10px;
      margin: 0 auto 20px;
      opacity: 0.15;
    }

    .phone-logo-area {
      margin-bottom: 16px;
    }
    .phone-logo-area .pl1 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 900;
      color: var(--blue-deep);
    }
    .phone-logo-area .pl2 {
      font-size: 0.72rem;
      color: var(--blue-mid);
      font-weight: 400;
    }

    .phone-book-icon {
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }


    /* ══════════════════════════════════════
       FEATURES / FORDELE
    ══════════════════════════════════════ */
    #appen {
      padding: 96px 60px;
    }

    .section-label {
      text-align: center;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue-mid);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      font-weight: 700;
      text-align: center;
      color: var(--text);
      margin-bottom: 52px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 980px;
      margin: 0 auto;
    }

    .card {
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(166,207,244,0.35);
      border-radius: var(--radius-lg);
      padding: 34px 28px;
      box-shadow: var(--shadow-card);
      transition: transform 0.22s, box-shadow 0.22s;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 56px rgba(9,0,214,0.13), 0 4px 12px rgba(9,0,214,0.07);
    }

    .card-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
      border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 6px 16px rgba(9,0,214,0.25);
    }

    .card-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .card h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--text);
    }

    .card p {
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.7;
    }


    /* ══════════════════════════════════════
       CTA BANNER
    ══════════════════════════════════════ */
    .cta-banner {
      margin: 0 60px 96px;
      border-radius: var(--radius-lg);
      background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
      padding: 64px 60px;
      text-align: center;
      box-shadow: 0 16px 56px rgba(9,0,214,0.22);
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      background: rgba(255,255,255,0.06);
      border-radius: 50%;
      top: -80px; right: -60px;
      pointer-events: none;
    }

    .cta-banner h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--white);
      margin-bottom: 12px;
    }

    .cta-banner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 32px;
      font-weight: 300;
    }

    .btn-white {
      background: var(--white);
      color: var(--blue-deep);
      border: none;
      padding: 14px 38px;
      border-radius: var(--radius-md);
      font-family: 'Outfit', sans-serif;
      font-size: 0.97rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 6px 24px rgba(0,0,0,0.15);
      transition: transform 0.18s, box-shadow 0.18s;
    }
    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(0,0,0,0.22);
    }


    /* ══════════════════════════════════════
       TESTIMONIAL / CASES
    ══════════════════════════════════════ */
    #cases {
      padding: 0 60px 96px;
    }

    .testimonial-card {
      max-width: 820px;
      margin: 0 auto;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(166,207,244,0.4);
      border-radius: var(--radius-lg);
      padding: 52px 56px;
      box-shadow: var(--shadow-card);
      position: relative;
    }

    .quote-mark {
      position: absolute;
      top: 22px;
      left: 36px;
      font-family: 'Playfair Display', serif;
      font-size: 8rem;
      line-height: 1;
      color: var(--blue-light);
      opacity: 0.5;
      user-select: none;
    }

    .testimonial-text {
      font-size: 1.02rem;
      line-height: 1.85;
      color: #2a2a3e;
      position: relative;
      z-index: 1;
      padding-top: 28px;
      font-weight: 300;
    }

    .testimonial-source {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid var(--blue-pale);
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--blue-deep);
      letter-spacing: 0.3px;
    }


    /* ══════════════════════════════════════
       OM OS
    ══════════════════════════════════════ */
    #om-os {
      padding: 96px 60px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      max-width: 900px;
      margin: 0 auto;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(166,207,244,0.35);
      border-radius: var(--radius-lg);
      padding: 52px 52px;
      box-shadow: var(--shadow-card);
    }

    .about-col p {
      font-size: 0.93rem;
      color: var(--slate);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .about-col p:last-child { margin-bottom: 0; }


    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: #0c0e1f;
      color: rgba(255,255,255,0.65);
      padding: 52px 60px 28px;
    }

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

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--white);
      margin-bottom: 10px;
    }

    .footer-addr {
      font-size: 0.83rem;
      line-height: 1.85;
    }

    .footer-addr a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-addr a:hover { color: var(--blue-light); }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: right;
    }

    .footer-links a {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--blue-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 20px;
      font-size: 0.78rem;
      text-align: center;
      color: rgba(255,255,255,0.28);
    }


    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 900px) {
      nav { padding: 14px 24px; }
      .nav-links, nav > .btn-primary { display: none; }
      .burger { display: flex; }

      .hero {
        padding: 60px 24px 80px;
        flex-direction: column;
        min-height: auto;
        gap: 40px;
        text-align: center;
      }
      .hero-text { max-width: 100%; }
      .hero-text p { max-width: 100%; }
      .hero-btns { justify-content: center; }
      .hero-eyebrow { margin-left: auto; margin-right: auto; display: block; width: fit-content; }

      #appen { padding: 72px 24px; }
      .cards { grid-template-columns: 1fr; gap: 18px; }

      .cta-banner {
        margin: 0 24px 72px;
        padding: 48px 28px;
      }

      #cases { padding: 0 24px 72px; }
      .testimonial-card { padding: 40px 28px; }
      .quote-mark { font-size: 5rem; left: 20px; top: 16px; }

      #om-os { padding: 72px 24px; }
      .about-grid {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 0;
      }

      footer { padding: 44px 24px 24px; }
      .footer-links { text-align: left; }
    }

    @media (max-width: 480px) {
      .hero-text h1 { font-size: 2.2rem; }
      .btn-store { padding: 10px 16px; }
      .phone-mockup { width: 180px; }
    }
