

  /* ===== WRAPPER ===== */
  .cf-wrap {
    background: var(--cloud);
    border-top: 2px solid var(--sky2);
    border-bottom: 2px solid var(--sky2);
  }

  /* ===== BAR ===== */
  .cf-bar {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background .2s;
  }
  .cf-bar:hover { background: var(--sky); }

  .cf-bar-left {
    display: flex;
    align-items: center;
    gap: .9rem;
  }

  .cf-dot {
    width: 10px; height: 10px;
    background: var(--blue-mid);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 1.8s infinite;
  }

  .cf-bar-emoji { font-size: 1.6rem; }

  .cf-bar-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-deep);
    line-height: 1.2;
  }
  .cf-bar-sub {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-top: .1rem;
  }
  @media (max-width: 500px) { .cf-bar-sub { display: none; } }

  .cf-bar-arrow {
    font-size: 1rem;
    color: var(--blue-mid);
    font-weight: 700;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
  }
  .cf-bar-arrow.open { transform: rotate(180deg); }

  /* ===== BODY ===== */
  .cf-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.4,0,.2,1);
    background: var(--sky);
    border-top: 2px solid transparent;
  }
  .cf-body.open {
    max-height: 800px;
    border-top-color: var(--sky2);
  }

  .cf-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem 1.5rem 2.5rem;
  }

  /* ===== HEAD ===== */
  .cf-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
  }
  .cf-head-emoji { font-size: 2.8rem; }
  .cf-head h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-deep);
    line-height: 1.15;
  }
  .cf-head h2 span {color: #ff67dd;}
  .cf-head p { font-size: .9rem; color: var(--text-soft); font-weight: 600; margin-top: .2rem; }

  /* ===== FIELDS ===== */
  .cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: .1rem;
  }
  @media (max-width: 580px) { .cf-row { grid-template-columns: 1fr; } }

  .cf-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .cf-field label {
    font-family: 'Baloo 2', cursive;
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-soft);
    margin-bottom: .4rem;
  }
  .cf-field input,
  .cf-field textarea {
    font-family: 'Nunito', sans-serif;
    font-size: .97rem;
    font-weight: 600;
    color: var(--text);
    background: var(--cloud);
    border: 2.5px solid transparent;
    border-radius: 1.1rem;
    padding: .8rem 1.1rem;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    transition: border-color .2s, box-shadow .2s;
  }
  .cf-field input::placeholder,
  .cf-field textarea::placeholder { color: #9fc8e0; font-weight: 600; }
  .cf-field input:focus,
  .cf-field textarea:focus {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 4px rgba(58,173,224,.12);
  }
  .cf-field input.invalid,
  .cf-field textarea.invalid { border-color: #e05a5a; background: #fff5f5; }
  .cf-field textarea { resize: none; height: 110px; line-height: 1.6; }

  .cf-err {
    font-size: .78rem;
    color: #e05a5a;
    font-weight: 700;
    margin-top: .3rem;
    display: none;
    padding-left: .3rem;
  }

  /* ===== SUBMIT ===== */
  .cf-submit {
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    color: #fff;
    font-family: 'Baloo 2', cursive;
    font-size: 1.05rem;
    font-weight: 700;
    padding: .9rem 2.5rem;
    border: none;
    border-radius: 1.2rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(26,134,190,.3);
    transition: transform .2s, box-shadow .2s;
    margin-top: .3rem;
  }
  .cf-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,134,190,.38); }

  /* ===== SUCCESS ===== */
  .cf-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
  }
  .cf-success span { font-size: 3.5rem; display: block; margin-bottom: .6rem; animation: popIn .5s cubic-bezier(.34,1.56,.64,1) both; }
  @keyframes popIn { 0%{ transform:scale(0) rotate(-20deg); opacity:0; } 100%{ transform:scale(1) rotate(0deg); opacity:1; } }
  .cf-success h3 { font-family:'Baloo 2',cursive; font-size:1.6rem; font-weight:800; color:var(--blue-deep); margin-bottom:.4rem; }
  .cf-success p { font-size:.93rem; color:var(--text-soft); font-weight:600; line-height:1.6; margin-bottom:1.1rem; }
  .cf-success button {
    background: var(--cloud);
    color: var(--blue-deep);
    font-family: 'Baloo 2', cursive;
    font-size: .92rem;
    font-weight: 700;
    border: 2px solid var(--sky2);
    border-radius: 50px;
    padding: .55rem 1.5rem;
    cursor: pointer;
    transition: background .2s;
  }
  .cf-success button:hover { background: var(--sky2); }
