
:root {
  --ak-salmon: #f09087;
  --ak-salmon-dark: #e07a70;
  --ak-cream: #fff9e3;
  --ak-lavender: #e8e8ff;
  --ak-purple-banner: #ebe5ff;
  --ak-text: #333333;
  --ak-text-muted: #666666;
}

.ak-landing { color: var(--ak-text); }
.ak-landing h1, .ak-landing h2, .ak-landing h3 { color: #2d2d2d; }

.ak-btn-salmon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--ak-salmon);
  color: #fff;
  font-weight: 700;
  padding: 0.875rem 2rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(240, 144, 135, 0.35);
}
.ak-btn-salmon:hover { background: var(--ak-salmon-dark); transform: translateY(-1px); }

.ak-btn-outline-salmon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 2px solid var(--ak-salmon);
  color: var(--ak-salmon);
  background: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  transition: all 0.2s;
}
.ak-btn-outline-salmon:hover { background: #fff5f4; }

.ak-feature-box {
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ak-feature-box--pink { background: #fde8e6; }
.ak-feature-box--yellow { background: #fff6d6; }
.ak-feature-box--lavender { background: var(--ak-lavender); }

.ak-pain-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}

.ak-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--ak-salmon);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ak-promo-banner {
  background: linear-gradient(135deg, #ebe5ff 0%, #f3efff 50%, #e8e0ff 100%);
  border-radius: 1.25rem;
  overflow: hidden;
}

.ak-section-cream { background: var(--ak-cream); }
.ak-section-white { background: #ffffff; }

.ak-mockup-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}
.ak-mockup-frame img { width: 100%; height: auto; display: block; }

.ak-telegram-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2aabee;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(42, 171, 238, 0.45);
  transition: transform 0.2s;
}
.ak-telegram-float:hover { transform: translateY(-2px); color: #fff; }

.ak-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.35rem;
  background: var(--ak-lavender);
  color: var(--ak-salmon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ak-cta-box {
  background: var(--ak-salmon);
  color: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
}
