:root {
  --bg: #fffaf1;
  --card: rgba(255, 255, 255, 0.88);
  --card-border: rgba(255, 196, 39, 0.24);
  --navy: #1a2f5f;
  --text: #4f5b6b;
  --yellow: #ffc517;
  --yellow-soft: #fff0b9;
  --pink: #ef2c9d;
  --blue: #2ea4f0;
  --blue-deep: #1784d8;
  --shadow: 0 28px 80px rgba(30, 53, 111, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 209, 92, 0.42), transparent 42%),
    linear-gradient(180deg, #fff9ee 0%, #fffefb 52%, #fff8e4 100%);
  color: var(--navy);
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 40px 18px 28px;
}

.orb {
  position: absolute;
  border-radius: 34% 66% 58% 42% / 44% 31% 69% 56%;
  filter: blur(1px);
  opacity: 0.95;
  pointer-events: none;
}

.orb-left {
  top: -90px;
  left: -120px;
  width: 320px;
  height: 220px;
  background: linear-gradient(135deg, #ffcb29 0%, #ffb600 100%);
}

.orb-right {
  top: -50px;
  right: -70px;
  width: 260px;
  height: 160px;
  background: linear-gradient(135deg, #57b9ff 0%, #2fa9f8 100%);
}

.orb-bottom-left {
  bottom: -85px;
  left: -40px;
  width: 240px;
  height: 160px;
  background: linear-gradient(135deg, #ffd654 0%, #ffba17 100%);
}

.orb-bottom-right {
  right: -30px;
  bottom: -90px;
  width: 270px;
  height: 180px;
  background: linear-gradient(135deg, #65bdf8 0%, #2d99eb 100%);
}

.card {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 52px 56px 44px;
  border-radius: 38px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo {
  width: min(100%, 560px);
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 12px 26px rgba(255, 185, 19, 0.22));
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text);
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
  line-height: 1.6;
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 246, 213, 0.86) 0%, rgba(255, 252, 241, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 10px 12px;
}

.badge h2 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.badge p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.badge-icon {
  flex: 0 0 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 24px rgba(46, 164, 240, 0.18);
}

.badge-icon svg,
.telegram-button svg,
.mail-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-icon.bag,
.badge-icon.truck {
  background: linear-gradient(135deg, #47b1f8 0%, #2a95e8 100%);
}

.badge-icon.shield {
  background: linear-gradient(135deg, #ffc626 0%, #ffb400 100%);
}

.actions {
  margin-top: 34px;
}

.social-title {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.08rem;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  padding: 18px 26px;
  border-radius: 18px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(26, 47, 95, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(26, 47, 95, 0.2);
}

.social-link.facebook {
  background: linear-gradient(135deg, #2c6de6 0%, #1748ba 100%);
}

.social-link.instagram {
  background: linear-gradient(135deg, #ffb238 0%, #f73b87 48%, #7e47ff 100%);
}

.social-link.tiktok {
  background: linear-gradient(135deg, #22283c 0%, #111827 100%);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.floating-heart {
  top: 118px;
  right: 14%;
  color: var(--pink);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  transform: rotate(-8deg);
  text-shadow: 0 12px 24px rgba(239, 44, 157, 0.18);
}

.floating-paw {
  color: rgba(255, 190, 32, 0.34);
  font-size: 2rem;
}

.paw-a {
  top: 140px;
  left: 12%;
}

.paw-b {
  right: 8%;
  bottom: 140px;
}

.paw-c {
  left: 8%;
  bottom: 170px;
  color: rgba(71, 177, 248, 0.28);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  text-align: center;
  color: #66717f;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .card {
    padding: 42px 24px 38px;
  }

  .badges {
    grid-template-columns: 1fr;
  }

  .floating-heart {
    right: 8%;
    top: 82px;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 18px 12px 20px;
  }

  .card {
    border-radius: 28px;
    padding: 28px 16px 26px;
  }

  .eyebrow {
    font-size: 0.95rem;
  }

  .lead {
    font-size: 1rem;
  }

  .badge {
    padding: 8px 4px;
  }

  .badge-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .badge h2 {
    font-size: 1rem;
  }

  .badge p {
    font-size: 0.95rem;
  }

  .telegram-button {
    min-width: 0;
    width: 100%;
    padding: 18px 20px;
    font-size: 1.25rem;
  }

  .social-link {
    width: 100%;
    min-width: 0;
    font-size: 1.08rem;
  }

  .floating-heart {
    display: none;
  }

  .floating-paw {
    font-size: 1.6rem;
  }
}
