:root {
  --aa: #fae0ea;
  --bb: #f6d1e0;
  --cc: #ff82c4;
  --ink: #3a1c27;
  --ink2: #7a5f67;
  --accent: #ff82c4;
  --mw: 1200px;
  --sh1: 0 10px 30px rgba(255, 130, 196, .45);
  --sh2: 0 14px 40px rgba(58, 28, 39, .12);
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
}

.c-1 {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 20px;
}

.c-2 {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .78));
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  z-index: 60;
}

.c-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.c-4 {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.c-4 svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(var(--sh2));
}

.c-5 {
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 1.05rem;
  color: var(--ink);
}

.c-6 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-6 a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
}

.c-6 a:hover {
  background: var(--bb);
}

.c-7 {
  display: none;
}

.c-7 button {
  all: unset;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bb);
  box-shadow: var(--sh2);
}

.c-7 span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: relative;
}

.c-7 span:after,
.c-7 span:before {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.c-7 span:before {
  top: -6px;
}

.c-7 span:after {
  top: 6px;
}

.c-8 {
  position: fixed;
  inset: 0;
  background: rgba(58, 28, 39, .28);
  backdrop-filter: saturate(120%) blur(6px);
  display: none;
  z-index: 99;
}

.c-9 {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 420px);
  height: 100%;
  background: linear-gradient(180deg, var(--aa), var(--bb));
  padding: 22px 18px 40px;
  border-top-left-radius: 24px;
  box-shadow: var(--sh1);
}

.c-9 a {
  display: block;
  margin: 10px 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.c-prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: rgba(0, 0, 0, .04);
  z-index: 80;
}

.c-prog > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #ffb3d9);
  box-shadow: var(--sh1);
  transition: width .12s linear;
}

main {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--aa), var(--bb));
}

.c-hero {
  padding: clamp(36px, 6vw, 80px) 0;
}

.c-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

.c-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .6));
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--sh1);
}

.c-panel h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  color: var(--ink);
}

.c-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--ink2);
  margin-top: 6px;
}

.c-card {
  background: var(--aa);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--sh2);
}

.c-card--inl-643b1f {
  margin-top: 14px;
}

.c-card--inl-438658 {
  margin-top: 12px;
}

form.c-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-right: 30px;
}

.c-form .row-2 {
  grid-column: 1/-1;
}

.row-2--inl-e6cee8 {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.c-form label {
  font-weight: 700;
  color: var(--ink);
  font-size: .92rem;
}

.c-form input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fdfdfd;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.c-btn1 {
  background: linear-gradient(90deg, var(--accent), #ffb3d9);
  color: var(--ink);
  box-shadow: var(--sh1);
  border: none;
}

.c-btn2 {
  background: var(--aa);
  border: 1px solid rgba(0, 0, 0, .08);
}

.c-img {
  border-radius: 18px;
  overflow: hidden;
}

.c-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: linear-gradient(180deg, var(--aa), var(--bb));
}

.c-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.c-foot a {
  color: var(--ink2);
  text-decoration: none;
}

.in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s, transform .8s;
}

.on {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .c-wrap {
    grid-template-columns: 1fr;
  }
  .c-6 {
    display: none;
  }
  .c-7 {
    display: block;
  }
}

.elem--inl-2db2af {
  height: auto;
  width: 100%;
}

@media (max-width: 600px) {
    .s-cookie {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 12px;
        border-radius: 14px;
        font-size: 0.9rem;
    }

    .elem--inl-a1a861 {
        flex-direction: column;
        gap: 6px;
        margin-top: 10px;
    }

    .s-cta-1--inl-bbe9ac,
    .s-cta-2--inl-9f2eda {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}