    :root {
      --pink: #E8178A;
      --dark: #2A0A1F;
      --gray: #8A6878;
      --glass: rgba(255, 255, 255, 0.42);
      --glass-border: rgba(255, 255, 255, 0.68);
    }

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

    html {
      scroll-behavior: smooth;
      background-color: #fcd5ee;
      /* iOS overscroll / tab-close animation colour */
    }

    body {
      font-family: 'Raleway', sans-serif;
      color: var(--dark);
      background: #fcd5ee;
      overflow-x: hidden;
    }

    .script {
      font-family: 'Snell Roundhand', 'Zapf Chancery', 'URW Chancery L', cursive;
      font-weight: normal;
      font-style: normal;
    }

    /* ── CLOUD BG ── */
    .cloud-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 130% 80% at 15% 5%, rgba(255, 210, 240, 0.95) 0%, transparent 50%),
        radial-gradient(ellipse 100% 70% at 85% 0%, rgba(255, 185, 232, 0.85) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 50% 28%, rgba(255, 255, 255, 0.65) 0%, transparent 55%),
        radial-gradient(ellipse 90% 80% at 8% 62%, rgba(248, 185, 225, 0.7) 0%, transparent 55%),
        radial-gradient(ellipse 110% 70% at 92% 68%, rgba(235, 165, 218, 0.75) 0%, transparent 55%),
        radial-gradient(ellipse 100% 60% at 50% 92%, rgba(255, 205, 242, 0.85) 0%, transparent 60%),
        linear-gradient(155deg, #ffd8f0 0%, #ffbadf 28%, #f7aadc 58%, #ead8f5 100%);
      pointer-events: none;
    }

    .cloud-puff {
      position: fixed;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      filter: blur(64px);
      pointer-events: none;
      z-index: 0;
    }

    .cp1 {
      width: 520px;
      height: 290px;
      top: -70px;
      left: -90px;
      animation: d1 18s ease-in-out infinite;
    }

    .cp2 {
      width: 420px;
      height: 230px;
      top: 70px;
      right: -70px;
      animation: d2 22s ease-in-out infinite;
    }

    .cp3 {
      width: 360px;
      height: 210px;
      top: 32%;
      left: 18%;
      animation: d3 16s ease-in-out infinite;
    }

    .cp4 {
      width: 460px;
      height: 250px;
      bottom: 18%;
      right: 8%;
      animation: d1 20s ease-in-out infinite reverse;
    }

    .cp5 {
      width: 320px;
      height: 190px;
      bottom: 4%;
      left: 4%;
      animation: d2 14s ease-in-out infinite;
    }

    @keyframes d1 {

      0%,
      100% {
        transform: translate(0, 0)
      }

      50% {
        transform: translate(28px, 18px)
      }
    }

    @keyframes d2 {

      0%,
      100% {
        transform: translate(0, 0)
      }

      50% {
        transform: translate(-22px, 14px)
      }
    }

    @keyframes d3 {

      0%,
      100% {
        transform: translate(0, 0)
      }

      50% {
        transform: translate(14px, -18px)
      }
    }

    .page {
      position: relative;
      z-index: 1;
    }

    /* ── GLASS CARD ── */
    .glass-card {
      background: var(--glass);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      box-shadow: 0 8px 48px rgba(200, 80, 160, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    /* ── GLASS BUTTON ── */
    .btn-glass {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(232, 23, 138, 0.88), rgba(175, 10, 108, 0.92));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      color: white;
      padding: 17px 48px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.28);
      cursor: pointer;
      font-family: 'Raleway', sans-serif;
      transition: all 0.25s;
      box-shadow: 0 8px 32px rgba(232, 23, 138, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    .btn-glass:hover:not(:disabled) {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(232, 23, 138, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .btn-glass:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .btn-full {
      width: 100%;
    }

    /* ── LANG ── */
    .lang-bar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      display: flex;
      justify-content: flex-end;
      padding: 24px 48px 0;
      gap: 6px;
    }

    .lang-btn {
      background: var(--glass);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 5px 16px;
      font-size: 11px;
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      letter-spacing: 0.08em;
      cursor: pointer;
      color: var(--gray);
      transition: all 0.2s;
    }

    .lang-btn.active,
    .lang-btn:hover {
      background: var(--pink);
      border-color: var(--pink);
      color: white;
      box-shadow: 0 4px 16px rgba(232, 23, 138, 0.3);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 24px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--glass);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 30px;
      padding: 7px 20px;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink);
      font-weight: 600;
      margin-bottom: 32px;
      opacity: 0;
      animation: up 0.7s 0.1s ease forwards;
    }

    .hero-eyebrow::before {
      content: '✦';
      font-size: 9px;
    }

    .hero-title {
      font-size: clamp(64px, 13vw, 128px);
      line-height: 0.95;
      color: var(--dark);
      margin-bottom: 26px;
      opacity: 0;
      animation: up 0.7s 0.2s ease forwards;
      text-shadow: 0 2px 40px rgba(232, 23, 138, 0.12);
    }

    .hero-desc-wrap {
      opacity: 0;
      animation: up 0.7s 0.35s ease forwards;
    }

    .hero-desc {
      font-size: 16px;
      line-height: 1.8;
      color: var(--dark);
      opacity: 0.65;
      max-width: 480px;
      font-weight: 400;
      margin-bottom: 44px;
    }

    .hero-tag-line {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gray);
      opacity: 1;
      margin-bottom: 10px;
    }


    .hero-cta {
      opacity: 0;
      animation: up 0.7s 0.5s ease forwards;
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

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

    /* ── FORM SECTION ── */
    .form-section {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 24px;
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
    }

    .form-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .form-header h2 {
      font-size: clamp(38px, 6vw, 58px);
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .form-header h2 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--pink), #9B20C8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .form-header p {
      font-size: 15px;
      color: var(--dark);
      opacity: 0.6;
      line-height: 1.75;
      padding: 0 12px;
    }

    .form-card {
      padding: 44px;
    }

    /* ── FORM FIELDS ── */
    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dark);
      opacity: 0.5;
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 13px 17px;
      background: rgba(255, 255, 255, 0.58);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 14px;
      font-size: 14.5px;
      font-family: 'Raleway', sans-serif;
      color: var(--dark);
      outline: none;
      transition: all 0.2s;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 8px rgba(200, 80, 160, 0.04);
      -webkit-appearance: none;
      appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(42, 10, 31, 0.28);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: rgba(232, 23, 138, 0.4);
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 0 4px rgba(232, 23, 138, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 108px;
      line-height: 1.6;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-submit {
      margin-top: 26px;
    }

    .form-privacy {
      margin-top: 14px;
      font-size: 11px;
      text-align: center;
      color: var(--dark);
      opacity: 0.6;
      line-height: 1.4;
    }

    .form-privacy a {
      color: var(--dark);
      text-decoration: underline;
      font-weight: 600;
    }

    .form-privacy a:hover {
      color: var(--pink);
    }

    /* ── FIELD INLINE WARNING ── */
    .field-warning {
      display: block;
      max-height: 0;
      overflow: hidden;
      font-size: 11.5px;
      font-weight: 600;
      color: #c0304a;
      letter-spacing: 0.03em;
      margin-top: 0;
      transition: max-height 0.25s ease, margin-top 0.25s ease, opacity 0.25s ease;
      opacity: 0;
    }

    .field-warning.visible {
      max-height: 30px;
      margin-top: 6px;
      opacity: 1;
    }

    @keyframes field-shake {
      0% {
        transform: translateX(0);
        border-color: rgba(192, 48, 74, 0.7);
      }

      20% {
        transform: translateX(-6px);
      }

      40% {
        transform: translateX(6px);
      }

      60% {
        transform: translateX(-4px);
      }

      80% {
        transform: translateX(4px);
      }

      100% {
        transform: translateX(0);
        border-color: rgba(192, 48, 74, 0.7);
      }
    }

    .field-shake {
      animation: field-shake 0.4s ease;
      border-color: rgba(192, 48, 74, 0.6) !important;
    }

    /* ── FORM ERROR ── */
    .form-error {
      display: none;
      margin-top: 14px;
      padding: 12px 16px;
      background: rgba(255, 80, 80, 0.1);
      border: 1px solid rgba(255, 80, 80, 0.22);
      border-radius: 12px;
      font-size: 13px;
      color: #b03030;
      text-align: center;
      line-height: 1.5;
    }

    /* ── PHONE WRAP ── */
    .phone-wrap {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.58);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 14px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 8px rgba(200, 80, 160, 0.04);
      transition: all 0.2s;
      overflow: hidden;
    }

    .phone-wrap:focus-within {
      border-color: rgba(232, 23, 138, 0.4);
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 0 4px rgba(232, 23, 138, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .phone-prefix {
      padding: 13px 12px 13px 17px;
      font-size: 14.5px;
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      color: var(--dark);
      opacity: 0.55;
      user-select: none;
      flex-shrink: 0;
      border-right: 1px solid rgba(232, 23, 138, 0.15);
    }

    .phone-wrap input[type="tel"] {
      flex: 1;
      padding: 13px 17px;
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      font-size: 14.5px;
      font-family: 'Raleway', sans-serif;
      color: var(--dark);
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }

    .phone-wrap input[type="tel"]::placeholder {
      color: rgba(42, 10, 31, 0.28);
    }

    /* ── SUCCESS ── */
    .success {
      display: none;
      text-align: center;
      padding: 52px 20px;
    }

    .success-circle {
      width: 62px;
      height: 62px;
      background: linear-gradient(135deg, var(--pink), #9B20C8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 24px;
      color: white;
      box-shadow: 0 8px 32px rgba(232, 23, 138, 0.35);
    }

    .success h3 {
      font-size: 34px;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .success p {
      font-size: 14.5px;
      color: var(--dark);
      opacity: 0.6;
      line-height: 1.7;
      margin: 0;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(232, 23, 138, 0.15), transparent);
      margin: 0 48px;
    }

    /* ── STATS ── */
    .stats-row {
      display: flex;
      justify-content: center;
      gap: 16px;
      padding: 80px 24px;
      max-width: 900px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .stat-card {
      flex: 1 1 200px;
      text-align: center;
      padding: 40px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .stat-num {
      font-size: clamp(42px, 6vw, 54px);
      line-height: 1;
      color: var(--pink);
      margin-bottom: 12px;
      text-shadow: 0 2px 20px rgba(232, 23, 138, 0.18);
    }

    .stat-label {
      font-size: 13px;
      color: var(--dark);
      opacity: 0.8;
      font-weight: 600;
      line-height: 1.6;
    }

    /* ── CONTENT SECTIONS ── */
    .section {
      padding: 80px 24px;
      max-width: 740px;
      margin: 0 auto;
    }

    .section-center {
      text-align: center;
    }

    .tag {
      display: inline-block;
      font-size: 10.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--pink);
      font-weight: 600;
      margin-bottom: 16px;
    }

    .section h2 {
      font-size: clamp(36px, 5vw, 54px);
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .section h2 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--pink), #9B20C8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section p {
      font-size: 15.5px;
      line-height: 1.85;
      color: var(--dark);
      opacity: 0.65;
      margin-bottom: 18px;
    }

    .quote-block {
      background: var(--glass);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-left: 3px solid var(--pink);
      border-radius: 0 20px 20px 0;
      padding: 22px 30px;
      margin: 32px 0;
      box-shadow: 0 4px 24px rgba(200, 80, 160, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
      text-align: left;
    }

    .quote-block p {
      font-size: clamp(18px, 3vw, 22px);
      line-height: 1.5;
      color: var(--dark);
      opacity: 1;
      margin: 0;
    }

    /* ── STEPS ── */
    .steps {
      margin-top: 48px;
    }

    .step {
      display: flex;
      gap: 22px;
      padding: 26px 28px;
      margin-bottom: 12px;
      align-items: center;
      text-align: left;
      transition: box-shadow 0.2s;
    }

    .step:hover {
      box-shadow: 0 12px 48px rgba(200, 80, 160, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .step-n {
      font-size: 34px;
      color: rgba(232, 23, 138, 0.22);
      line-height: 1;
      flex-shrink: 0;
      width: 34px;
    }

    .step h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 5px;
    }

    .step p {
      font-size: 13.5px;
      color: var(--dark);
      opacity: 0.8;
      font-weight: 600;
      line-height: 1.7;
      margin: 0;
    }

    /* ── BAND ── */
    .band {
      margin: 0 24px 80px;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(232, 23, 138, 0.84), rgba(158, 10, 118, 0.9), rgba(108, 18, 178, 0.86));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 60px rgba(200, 20, 140, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
      padding: 80px 48px;
      text-align: center;
    }

    .band-title {
      font-size: clamp(36px, 6vw, 70px);
      color: white;
      line-height: 1.12;
      max-width: 700px;
      margin: 0 auto;
      text-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
    }

    /* ── FOOTER ── */
    footer {
      padding: 0;
    }

    .footer-glass {
      background: var(--glass);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-top: 1px solid var(--glass-border);
      box-shadow: 0 -4px 40px rgba(200, 80, 160, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      padding: 60px 48px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      width: 100%;
    }

    .footer-project {
      font-size: 42px;
      color: var(--dark);
      opacity: 0.85;
    }

    .footer-divider {
      width: 36px;
      height: 1px;
      background: rgba(232, 23, 138, 0.3);
    }

    .footer-partners {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .footer-partners a {
      font-size: 16px;
      color: var(--dark);
      opacity: 0.55;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: opacity 0.2s;
    }

    .footer-partners a:hover {
      opacity: 0.75;
    }

    .footer-partners .privacy-link {
      font-size: 14px;
      margin-top: 12px;
      opacity: 0.45;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--dark);
      opacity: 0.3;
      letter-spacing: 0.04em;
      margin-top: 4px;
    }

    /* ── RESPONSIVE ── */
    @media (min-width: 641px) and (max-width: 1024px) {
      .lang-bar {
        padding: 20px 32px 0;
      }

      .hero {
        padding: 56px 32px 64px;
      }

      .form-section {
        padding: 0 32px 80px;
      }

      .form-card {
        padding: 36px 32px;
      }

      .stats-row {
        padding: 60px 32px;
      }

      .section {
        padding: 64px 32px;
      }

      .band {
        margin: 0 32px 64px;
        padding: 64px 40px;
      }

      .divider {
        margin: 0 32px;
      }

      .footer-glass {
        padding: 52px 32px;
      }
    }

    @media (max-width: 640px) {
      .lang-bar {
        padding: 16px 20px 0;
      }

      .hero {
        padding: 36px 20px 56px;
        min-height: 100vh;
      }

      .hero-title {
        font-size: clamp(56px, 16vw, 80px);
      }

      .hero-desc {
        font-size: 15px;
      }

      .form-section {
        padding: 60px 16px;
      }

      .form-card {
        padding: 24px 20px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .divider {
        margin: 0 16px;
      }

      .stats-row {
        padding: 52px 16px;
        gap: 12px;
        flex-direction: column;
      }

      .stat-card {
        flex: none;
        width: 100%;
        padding: 32px 20px;
      }

      .section {
        padding: 52px 20px;
      }

      .quote-block {
        padding: 18px 20px;
      }

      .step {
        padding: 20px 18px;
        gap: 16px;
      }

      .band {
        margin: 0 16px 56px;
        padding: 52px 24px;
        border-radius: 24px;
      }

      .footer-glass {
        padding: 48px 24px;
      }

      .footer-project {
        font-size: 34px;
      }
    }

    @media (max-width: 380px) {
      .hero-title {
        font-size: 52px;
      }

      .lang-btn {
        padding: 4px 12px;
        font-size: 10px;
      }

      .band {
        margin: 0 12px 48px;
        padding: 44px 20px;
      }

      .form-card {
        padding: 20px 16px;
      }
    }

    /* ── LANG VISIBILITY ── */
    [data-lang] {
      display: none;
    }

    [data-lang].active {
      display: block;
    }

    span[data-lang] {
      display: none;
    }

    span[data-lang].active {
      display: inline;
    }
