    /* ─── Light, Friendly Theme ─────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #fefcfb;
      color: #2d2a3e;
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: #7c5df5;
      text-decoration: none;
      transition: color 0.2s;
    }

    a:hover {
      color: #5b3ed4;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    /* ─── Navbar ──────────────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 0.85rem 0;
      background: linear-gradient(135deg, #1e1b3a, #2d2654);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(124, 93, 245, 0.15);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .nav-brand {
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-brand img {
      height: 32px;
      width: 32px;
      border-radius: 8px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-links a {
      font-size: 0.92rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-cta {
      background: linear-gradient(135deg, #7c5df5, #a78bfa);
      color: #fff !important;
      padding: 0.6rem 1.4rem;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.88rem;
      transition: all 0.25s;
      box-shadow: 0 2px 12px rgba(124, 93, 245, 0.3);
    }

    .nav-cta:hover {
      background: linear-gradient(135deg, #6a4bde, #9b7afb);
      color: #fff !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(124, 93, 245, 0.45);
    }

    /* ─── Hero ───────────────────────────────────────────── */
    .hero {
      text-align: center;
      padding: 5rem 1.5rem 3rem;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: #f3eeff;
      color: #7c5df5;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      color: #1e1b2e;
      margin-bottom: 1.2rem;
    }

    .hero h1 span {
      color: #7c5df5;
    }

    .hero p {
      font-size: 1.15rem;
      color: #6b6882;
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .hero-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* ─── Photo Strip ────────────────────────────────────── */
    .photo-strip {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 0 auto 4rem;
      max-width: 750px;
      padding: 0 1rem;
    }

    .photo-strip img {
      width: 30%;
      height: 180px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .photo-strip img:hover {
      transform: translateY(-6px) scale(1.02);
    }

    .photo-strip img:nth-child(1) {
      transform: rotate(-2deg);
    }

    .photo-strip img:nth-child(2) {
      transform: translateY(-10px);
    }

    .photo-strip img:nth-child(3) {
      transform: rotate(2deg);
    }

    .photo-strip img:nth-child(1):hover {
      transform: rotate(-2deg) translateY(-6px) scale(1.02);
    }

    .photo-strip img:nth-child(3):hover {
      transform: rotate(2deg) translateY(-6px) scale(1.02);
    }

    /* ─── Buttons ────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      border: none;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #7c5df5, #9b7afb);
      color: #fff;
      box-shadow: 0 4px 16px rgba(124, 93, 245, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(124, 93, 245, 0.4);
      color: #fff;
    }

    .btn-outline {
      background: transparent;
      color: #7c5df5;
      border: 2px solid #e4dff8;
    }

    .btn-outline:hover {
      background: #f3eeff;
      border-color: #c8bef0;
      color: #7c5df5;
    }

    .btn-lg {
      padding: 1rem 2.5rem;
      font-size: 1.05rem;
    }

    /* ─── Features ───────────────────────────────────────── */
    .features {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-heading h2 {
      font-size: 2rem;
      color: #1e1b2e;
      margin-bottom: 0.5rem;
    }

    .section-heading h2 span {
      color: #7c5df5;
    }

    .section-heading p {
      color: #6b6882;
      font-size: 1.05rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      background: #fff;
      border: 2px solid #f0eef5;
      border-radius: 20px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      border-color: #ddd8f0;
      box-shadow: 0 12px 40px rgba(124, 93, 245, 0.08);
      transform: translateY(-4px);
    }

    .feature-icon {
      font-size: 2.2rem;
      display: block;
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      font-size: 1.1rem;
      color: #1e1b2e;
      margin-bottom: 0.5rem;
    }

    .feature-card p {
      color: #6b6882;
      font-size: 0.92rem;
      line-height: 1.6;
    }

    /* ─── How It Works ───────────────────────────────────── */
    .how-it-works {
      background: #f9f8fc;
      padding: 5rem 1.5rem;
    }

    .how-it-works .container {
      max-width: 900px;
      margin: 0 auto;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #7c5df5, #a78bfa);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      margin: 0 auto 1rem;
      box-shadow: 0 4px 16px rgba(124, 93, 245, 0.25);
    }

    .step h3 {
      font-size: 1.05rem;
      color: #1e1b2e;
      margin-bottom: 0.5rem;
    }

    .step p {
      color: #6b6882;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* ─── CTA Banner ─────────────────────────────────────── */
    .cta-section {
      padding: 5rem 1.5rem;
    }

    .cta-card {
      max-width: 650px;
      margin: 0 auto;
      background: linear-gradient(135deg, #7c5df5, #a78bfa, #c4b5fd);
      border-radius: 28px;
      padding: 3.5rem 2.5rem;
      text-align: center;
      color: #fff;
      box-shadow: 0 16px 60px rgba(124, 93, 245, 0.25);
    }

    .cta-card h2 {
      font-size: clamp(1.5rem, 3.5vw, 2rem);
      margin-bottom: 0.75rem;
    }

    .cta-card p {
      font-size: 1rem;
      opacity: 0.9;
      margin-bottom: 2rem;
      max-width: 450px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #fff;
      color: #7c5df5;
      padding: 0.9rem 2.2rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.25s;
      text-decoration: none;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      color: #5b3ed4;
    }

    /* ─── Footer ─────────────────────────────────────────── */
    .footer {
      background: #f9f8fc;
      border-top: 1px solid #f0eef5;
      text-align: center;
      padding: 2rem 1.5rem;
      color: #8a879a;
      font-size: 0.85rem;
    }

    /* ─── Hamburger Toggle ────────────────────────────────── */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: 110;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      margin: 5px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ─── Responsive ─────────────────────────────────────── */
    @media (max-width: 768px) {
      .photo-strip img {
        height: 120px;
      }

      .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
      }

      .steps {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 3rem auto 0;
      }

      .hero-cta {
        flex-direction: column;
      }

      .nav-toggle {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: linear-gradient(180deg, #1e1b3a, #2d2654);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.25rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 105;
      }

      .nav-links.open {
        right: 0;
      }

      .nav-links span {
        display: block;
        width: 100%;
      }

      .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
      }

      .nav-links a:hover {
        color: #fff;
      }

      .nav-cta {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        padding: 0.75rem 1.5rem;
      }

      .lang-switcher {
        margin-left: 0;
      }
    }