    :root {
      --bg: #faf7fd;
      --bg-soft: #f7f2fb;
      --white: #ffffff;
      --ink: #403553;
      --muted: #6a5d82;
      --purple: #7a6a99;
      --purple-dark: #5b4a7c;
      --lavender: #a58adc;
      --lavender-soft: #e9ddfb;
      --pink: #f48faa;
      --pink-soft: #ffe4ec;
      --mint: #56bfa3;
      --yellow: #f3c647;
      --shadow: 0 18px 45px rgba(74, 57, 112, 0.12);
      --shadow-soft: 0 10px 25px rgba(74, 57, 112, 0.08);
      --radius-lg: 32px;
      --radius-md: 22px;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg);
      margin: 0;
      color: var(--ink);
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
    }

    .container {
      width: min(var(--max-width), calc(100% - 40px));
      margin: 0 auto;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .announcement {
      background: linear-gradient(90deg, var(--pink-soft), var(--lavender-soft));
      color: var(--purple-dark);
      padding: 10px 0;
    }

    .announcement-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .announcement-text {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
    }

    .language-switcher {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .language-switcher-label {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .language-switcher-buttons {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.45);
      border: 1px solid rgba(122, 106, 153, 0.14);
    }

    .language-button {
      padding: 8px 14px;
      color: var(--purple-dark);
      background: transparent;
      box-shadow: none;
      font-size: 13px;
      font-weight: 700;
    }

    .language-button:hover {
      transform: none;
      background: rgba(255, 255, 255, 0.35);
    }

    .language-button.is-active {
      background: var(--white);
      box-shadow: 0 6px 16px rgba(74, 57, 112, 0.12);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(122, 106, 153, 0.12);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand img {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      object-fit: cover;
    }

    .brand span {
      color: var(--purple-dark);
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a {
      text-decoration: none;
    }

    .nav-links a:hover {
      color: var(--purple-dark);
    }

    .button,
    button {
      border: none;
      border-radius: 999px;
      padding: 14px 24px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .button:hover,
    button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      background-color: var(--lavender);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(165, 138, 220, 0.28);
    }

    .button-primary:hover {
      background-color: var(--purple);
    }

    .button-secondary {
      background-color: var(--white);
      color: var(--purple-dark);
      border: 1px solid rgba(122, 106, 153, 0.18);
      box-shadow: var(--shadow-soft);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 78px 0 90px;
    }

    .hero::before,
    .hero::after {
      content: '';
      position: absolute;
      border-radius: 999px;
      z-index: -1;
      opacity: 0.65;
    }

    .hero::before {
      width: 420px;
      height: 420px;
      background: var(--pink-soft);
      top: -120px;
      right: -120px;
    }

    .hero::after {
      width: 300px;
      height: 300px;
      background: var(--lavender-soft);
      bottom: -160px;
      left: -100px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
      align-items: center;
      gap: 56px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--pink-soft);
      color: #be4e70;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0;
      color: var(--purple-dark);
      font-size: clamp(42px, 7vw, 74px);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .hero-title-text {
      color: var(--purple-dark);
    }

    .hero-accent {
      color: var(--pink);
    }

    .hero p {
      max-width: 620px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.75;
      margin: 24px 0 0;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 36px;
      max-width: 640px;
    }

    .trust-card {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(122, 106, 153, 0.12);
      border-radius: 18px;
      padding: 16px;
      box-shadow: var(--shadow-soft);
    }

    .trust-card strong {
      display: block;
      color: var(--purple-dark);
      font-size: 21px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .trust-card span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.4;
    }

    .hero-visual {
      position: relative;
      justify-self: center;
    }

    .hero-visual::before {
      content: '';
      position: absolute;
      inset: 8% -7% 5% 10%;
      background: linear-gradient(145deg, var(--lavender-soft), var(--pink-soft));
      border-radius: 46px;
      transform: rotate(-4deg);
      z-index: -1;
      box-shadow: var(--shadow);
    }

    .hero-visual img {
      width: min(520px, 100%);
      border-radius: 32px;
      filter: drop-shadow(0 24px 38px rgba(74, 57, 112, 0.18));
    }

    section {
      padding: 88px 0;
    }

    .section-heading {
      max-width: 720px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .section-heading h2 {
      margin: 0;
      color: var(--purple-dark);
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .section-heading p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .feature-card {
      background: var(--white);
      border: 1px solid rgba(122, 106, 153, 0.1);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }

    .feature-card .icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 18px;
      background: var(--bg-soft);
    }

    .feature-card h3 {
      color: var(--purple-dark);
      font-size: 20px;
      margin: 0 0 10px;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      margin: 0;
    }

    .showcase {
      background: var(--white);
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .showcase-card {
      background: var(--bg-soft);
      border-radius: var(--radius-lg);
      padding: 26px;
      min-height: 560px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      border: 1px solid rgba(122, 106, 153, 0.08);
    }

    .showcase-card h3 {
      margin: 0;
      color: var(--purple-dark);
      font-size: 24px;
      letter-spacing: -0.04em;
    }

    .showcase-card p {
      color: var(--muted);
      margin: 10px 0 20px;
      line-height: 1.65;
      font-size: 15px;
    }

    .showcase-card img {
      max-height: 430px;
      width: auto;
      margin: auto auto 0;
      object-fit: contain;
      filter: drop-shadow(0 18px 28px rgba(74, 57, 112, 0.12));
    }

    .how-it-works {
      background: linear-gradient(180deg, #fff, var(--bg));
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .step {
      position: relative;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(122, 106, 153, 0.1);
    }

    .step-number {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: var(--lavender);
      color: white;
      display: grid;
      place-items: center;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .step h3 {
      margin: 0 0 8px;
      color: var(--purple-dark);
      font-size: 18px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .audience {
      background: var(--white);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 36px;
      align-items: center;
      background: linear-gradient(135deg, var(--bg-soft), var(--pink-soft));
      border-radius: 40px;
      padding: 48px;
      box-shadow: var(--shadow-soft);
    }

    .audience h2 {
      color: var(--purple-dark);
      font-size: clamp(30px, 4vw, 44px);
      letter-spacing: -0.04em;
      line-height: 1.12;
      margin: 0 0 16px;
    }

    .audience p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin: 0;
    }

    .check-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(122, 106, 153, 0.1);
      border-radius: 18px;
      padding: 16px 18px;
      color: var(--purple-dark);
      font-weight: 600;
    }

    .testimonials {
      background: linear-gradient(135deg, #f48faa, #f6a9bd);
      color: white;
    }

    .testimonials .section-heading h2,
    .testimonials .section-heading p {
      color: white;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .testimonial {
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: var(--radius-md);
      padding: 26px;
      backdrop-filter: blur(12px);
    }

    .testimonial p {
      margin: 0 0 18px;
      font-size: 15px;
      line-height: 1.7;
      font-style: italic;
    }

    .testimonial strong {
      display: block;
      font-size: 14px;
    }

    .signup {
      text-align: center;
    }

    .signup-box {
      max-width: 760px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 36px;
      padding: 50px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(122, 106, 153, 0.1);
    }

    .signup h2 {
      color: var(--purple-dark);
      font-size: clamp(30px, 4vw, 44px);
      letter-spacing: -0.04em;
      margin: 0 0 14px;
    }

    .signup p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
      margin: 0 auto 28px;
      max-width: 560px;
    }

    .signup small {
      display: block;
      margin-top: 14px;
      color: #8478a5;
      font-size: 12px;
    }

    .brevo-form-wrapper {
      width: 100%;
      max-width: 520px;
      margin: 24px auto 0;
      overflow: hidden;
    }

    .brevo-form-wrapper iframe {
      display: block;
      width: 100%;
      height: 220px;
      min-height: 0;
      border: 0;
      background: transparent;
    }

    .faq {
      background: var(--white);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    details {
      background: var(--bg-soft);
      border-radius: 20px;
      padding: 20px 22px;
      border: 1px solid rgba(122, 106, 153, 0.08);
    }

    summary {
      color: var(--purple-dark);
      cursor: pointer;
      font-weight: 800;
    }

    details p {
      color: var(--muted);
      margin: 14px 0 0;
      line-height: 1.7;
      font-size: 15px;
    }

    footer {
      background-color: var(--purple);
      color: white;
      padding: 34px 0;
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    footer a {
      color: rgba(255, 255, 255, 0.95);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .audience-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 58px 0 70px;
        text-align: center;
      }

      .hero p,
      .trust-row {
        margin-left: auto;
        margin-right: auto;
      }

      .cta-row {
        justify-content: center;
      }

      .feature-grid,
      .showcase-grid,
      .steps,
      .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(100% - 28px, var(--max-width));
      }

      .announcement-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }

      .language-switcher {
        justify-content: center;
      }

      .nav {
        height: 70px;
      }

      .brand span {
        font-size: 19px;
      }

      .brand img {
        width: 50px;
        height: 50px;
      }

      section {
        padding: 64px 0;
      }

      .trust-row,
      .feature-grid,
      .showcase-grid,
      .steps,
      .testimonial-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .showcase-card {
        min-height: auto;
      }

      .showcase-card img {
        max-height: 360px;
      }

      .audience-grid,
      .signup-box {
        padding: 28px;
        border-radius: 28px;
      }

      .footer-inner {
        justify-content: center;
        text-align: center;
      }
    }
