/* === ОНОВЛЕНА ПАСТЕЛЬНА ПАЛІТРА === */
:root {
  --main-bg: linear-gradient(135deg, #fafdff 0%, #e3f8f3 100%);
  --accent-mint: #7ee7c7;
  --accent-blue: #b3e5fc;
  --accent-lavender: #d1c4e9;
  --accent-pink: #ffb6d5;
  --accent-yellow: #fff9c4;
  --main-text: #181818;
  --secondary-text: #343434;
  --cta: #7ee7c7;
  --cta-hover: #4fd1b3;
  --block-bg: #fff;
  --block-bg-alt: #e3f8f3;
}

body {
  font-family: 'Roboto', 'SF Pro Display', Arial, Helvetica, sans-serif;
  background: var(--main-bg);
  color: var(--main-text);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Навігація */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.97);
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(186, 222, 255, 0.10);
  transition: background 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-mint);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px #e3f8f3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90vw;
  display: inline-block;
  vertical-align: middle;
}

.logo:hover {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: #fff;
  background: linear-gradient(90deg, #7ee7c7 0%, #b3e5fc 100%);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.18rem;
  padding: 14px 36px;
  border-radius: 32px;
  transition: background 0.25s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px #e3f8f3;
  border: none;
  outline: none;
  display: inline-block;
}
.nav-links a:hover, .nav-links a:focus {
  background: linear-gradient(90deg, #4fd1b3 0%, #7ee7c7 100%);
  color: #fff;
  box-shadow: 0 6px 18px #b3e5fc;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 30px;
  height: 4px;
  background: var(--accent-mint);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Геройський блок */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--main-bg);
  animation: hero-fade-in 1.2s cubic-bezier(.4,1.3,.5,1) 0.1s both;
}
@keyframes hero-fade-in {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 50%;
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--accent-mint);
  text-shadow: 0 2px 8px #e3f8f3;
}

.hero h1 span {
  color: var(--accent-blue);
}

.hero p {
  font-size: 1.7rem;
  color: var(--secondary-text);
  margin-bottom: 30px;
}

.hero p strong {
  color: var(--main-text);
  font-weight: 700;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  font-size: 1.25rem;
  color: var(--accent-blue);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #e3f8f3;
  padding: 16px 28px;
  font-weight: 700;
  justify-content: flex-start;
  max-width: 420px;
  margin-left: 0;
  animation: social-pulse 2.2s infinite alternate;
}
@keyframes social-pulse {
  0% { box-shadow: 0 2px 12px #e3f8f3, 0 0 0 0 #7ee7c733; }
  100% { box-shadow: 0 8px 32px #b3e5fc, 0 0 16px 8px #7ee7c733; }
}
.social-proof .rating {
  color: #ffd700;
  font-size: 1.3em;
  font-weight: 900;
}
.social-proof .user-icon {
  color: var(--accent-mint);
  margin-right: 10px;
  font-size: 1.4em;
  vertical-align: middle;
}

.cta-btn, .offer-section .cta-btn {
  display: block;
  margin: 24px auto 0 auto;
  background: var(--accent-mint);
  color: #181818;
  font-weight: 900;
  font-size: 1.18rem;
  padding: 18px 44px;
  border-radius: 999px;
  border: 2.5px solid var(--accent-mint);
  box-shadow: 0 4px 18px #7ee7c7cc;
  outline: none;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.12s;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.cta-btn svg, .offer-section .cta-btn svg {
  margin-left: 10px;
  vertical-align: middle;
  width: 1.3em;
  height: 1.3em;
  fill: #fff9c4;
  transition: transform 0.18s;
}
.cta-btn:active, .offer-section .cta-btn:active {
  transform: scale(0.97);
}
.cta-btn:focus, .offer-section .cta-btn:focus {
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
  border: 2.5px solid var(--accent-blue);
}
.cta-btn:hover, .offer-section .cta-btn:hover {
  background: #4fd1b3;
  color: #fff;
  border: 2.5px solid #4fd1b3;
  box-shadow: 0 8px 32px #4fd1b3cc;
}
@media (max-width: 900px) {
  .cta-btn, .offer-section .cta-btn {
    width: 100%;
    max-width: 320px;
    font-size: 1.05rem;
    padding: 14px 0;
  }
}

.hero-image {
  flex: 1;
  text-align: center;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  background: var(--block-bg-alt);
  border-radius: 50%;
  box-shadow: 0 8px 32px #e3f8f3;
  padding: 24px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 30px;
  filter: drop-shadow(0 15px 30px #b3e5fc);
}

/* Декоративні елементи */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
  filter: blur(16px);
  animation: cloud-move 12s linear infinite alternate;
}
.hero::before {
  left: 8%;
  top: 12%;
  width: 180px;
  height: 80px;
  background: var(--accent-blue);
  animation-delay: 0s;
}
.hero::after {
  right: 6%;
  bottom: 10%;
  width: 120px;
  height: 60px;
  background: var(--accent-mint);
  animation-delay: 3s;
}
@keyframes cloud-move {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(24px) scale(1.08); }
}

/* Переваги */
.features-section {
  padding: 80px 0;
  text-align: center;
  background: var(--block-bg);
  border-radius: 40px;
  margin: 40px 0;
  box-shadow: 0 4px 24px #e3f8f3;
  opacity: 0;
  transform: translateY(40px);
  animation: section-fade-in 1.1s cubic-bezier(.4,1.3,.5,1) 0.5s forwards;
}
@keyframes section-fade-in {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.features-section h2 {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 50px;
  color: var(--accent-blue);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-item {
  padding: 32px;
  background: var(--block-bg-alt);
  border-radius: 25px;
  box-shadow: 0 2px 12px #b3e5fc;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px #b3e5fc, 0 0 0 2px #7ee7c7;
  transform: translateY(-6px) scale(1.03);
  background: #fff;
}
.feature-item i {
  font-size: 2.2rem;
  color: var(--accent-mint);
  margin-bottom: 20px;
}
.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--main-text);
}
.feature-item p {
  color: var(--secondary-text);
}

/* Відео та галерея */
.media-section {
  padding: 80px 0;
  background: var(--block-bg-alt);
  text-align: center;
  border-radius: 40px;
  margin: 40px 0;
  box-shadow: 0 4px 24px #e3f8f3;
  opacity: 0;
  transform: translateY(40px);
  animation: section-fade-in 1.1s cubic-bezier(.4,1.3,.5,1) 0.5s forwards;
}
@keyframes section-fade-in {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.video-block {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.video-block h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--accent-mint);
}
.video-block video {
  max-width: 520px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px #e3f8f3;
  margin: 0 auto;
  display: block;
}
.video-block .cta-btn {
  margin-top: 20px;
}
.gallery-block {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-block::-webkit-scrollbar {
  display: none;
}
.gallery-img {
  max-width: 250px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.4,1.3,.5,1), box-shadow 0.3s;
  box-shadow: 0 2px 12px #b3e5fc;
}
.gallery-img:hover {
  transform: scale(1.09) rotate(-2deg);
  box-shadow: 0 8px 32px #b3e5fc;
}

/* Як це працює */
.how-it-works {
  padding: 80px 0;
  text-align: center;
  background: var(--block-bg);
  border-radius: 40px;
  margin: 40px 0;
  box-shadow: 0 4px 24px #e3f8f3;
  opacity: 0;
  transform: translateY(40px);
  animation: section-fade-in 1.1s cubic-bezier(.4,1.3,.5,1) 0.5s forwards;
}
@keyframes section-fade-in {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.how-it-works h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--accent-lavender);
}
.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 24px;
  background: var(--block-bg-alt);
  border-radius: 20px;
  box-shadow: 0 2px 12px #e3f8f3;
}
.step span {
  display: block;
  width: 44px;
  height: 44px;
  background: var(--accent-blue);
  color: var(--main-text);
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 50%;
  line-height: 44px;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px #e3f8f3;
}
.step p {
  color: var(--secondary-text);
}

/* Обмежена пропозиція */
.offer-section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 48px #7ee7c755, 0 1.5px 8px #b3e5fc33;
  padding: 56px 0 48px 0;
  margin: 48px 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  overflow: visible;
  opacity: 0;
  transform: translateY(40px);
  animation: section-fade-in 1.1s cubic-bezier(.4,1.3,.5,1) 0.5s forwards;
}
@keyframes section-fade-in {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.offer-section .offer-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ffb6d5 0%, #ffd700 100%);
  color: #181818;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 8px 28px;
  border-radius: 999px;
  box-shadow: 0 2px 12px #ffd70055;
  letter-spacing: 0.08em;
  z-index: 2;
  text-transform: uppercase;
  animation: badge-pulse 1.5s infinite alternate;
}
@keyframes badge-pulse {
  0% { box-shadow: 0 2px 12px #ffd70055, 0 0 0 0 #ffb6d555; }
  100% { box-shadow: 0 8px 32px #ffd70099, 0 0 16px 8px #ffb6d555; }
}
.offer-section h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #181818;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.offer-section .offer-subtitle {
  font-size: 1.18rem;
  color: var(--accent-mint);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.offer-section .timer-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fafdff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #b3e5fc55;
  padding: 14px 32px;
  margin: 0 auto 28px auto;
  width: fit-content;
}
.offer-section .timer-block .fa-clock {
  color: var(--accent-mint);
  font-size: 1.5rem;
}
.offer-section #timer {
  color: #181818;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  animation: none;
}
.offer-section .cta-btn {
  margin: 32px auto 0 auto;
}
@media (max-width: 900px) {
  .offer-section {
    padding: 28px 0 24px 0;
    border-radius: 18px;
    margin: 24px 0;
    max-width: 98vw;
  }
  .offer-section h2 {
    font-size: 1.2rem;
  }
  .offer-section .offer-subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .offer-section .timer-block {
    padding: 8px 12px;
    gap: 8px;
  }
  .offer-section #timer {
    font-size: 1.1rem;
  }
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  text-align: center;
  background: var(--block-bg);
  border-radius: 40px;
  margin: 40px 0;
  box-shadow: 0 4px 24px #e3f8f3;
  opacity: 0;
  transform: translateY(40px);
  animation: section-fade-in 1.1s cubic-bezier(.4,1.3,.5,1) 0.5s forwards;
}
@keyframes section-fade-in {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--accent-blue);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  margin-bottom: 20px;
  padding: 24px;
  background: var(--block-bg-alt);
  border-radius: 20px;
  box-shadow: 0 2px 12px #b3e5fc;
}
.faq-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--main-text);
}
.faq-item p {
  color: var(--secondary-text);
}

/* Футер */
.footer {
  padding: 50px 0;
  text-align: center;
  background: var(--block-bg-alt);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -2px 12px #e3f8f3;
}
.footer a {
  color: var(--accent-mint);
  text-decoration: none;
}
.footer .social-links a {
  font-size: 1.5rem;
  margin: 0 10px;
}

/* Сторінка замовлення */
.order-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--main-bg);
}
.order-header {
  text-align: center;
  margin-bottom: 40px;
}
.order-section h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--accent-mint);
}
.order-section p {
  font-size: 1.3rem;
  color: var(--secondary-text);
}
.order-form {
  max-width: 400px;
  margin: 0 auto;
  background: var(--block-bg);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 24px #e3f8f3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}
.form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.order-form input {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: var(--main-text);
  font-size: 1rem;
  box-shadow: 0 2px 8px #e3f8f3;
  box-sizing: border-box;
}
.order-form input:focus {
  outline: none;
  box-shadow: 0 0 5px var(--accent-mint);
}
.order-form .cta-btn {
  width: 100%;
  margin-top: 10px;
  font-size: 1.15rem;
  padding: 18px 0;
  background: linear-gradient(90deg, #7ee7c7 0%, #b3e5fc 100%);
  box-shadow: 0 8px 24px rgba(126, 231, 199, 0.22);
  border: none;
  font-weight: 900;
  border-radius: 50px;
  transition: background 0.25s, box-shadow 0.25s, outline 0.2s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.order-form .cta-btn:hover {
  background: linear-gradient(90deg, #4fd1b3 0%, #7ee7c7 100%);
  box-shadow: 0 16px 32px rgba(79, 209, 179, 0.25);
}
.order-form .cta-btn:focus {
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
}
.back-link {
  display: block;
  background: var(--accent-mint);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  padding: 14px 0;
  border-radius: 32px;
  box-shadow: 0 2px 12px #e3f8f3;
  margin: 24px auto 0 auto;
  max-width: 320px;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, color 0.2s, box-shadow 0.2s;
}
.back-link:hover, .back-link:focus {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 6px 18px #b3e5fc;
}

/* Модальне вікно */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(179, 229, 252, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal-content {
  background: var(--block-bg);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 2px 12px #b3e5fc;
}
.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent-mint);
}
.modal-content p {
  color: var(--secondary-text);
  margin-bottom: 20px;
}

/* Модальне вікно для галереї */
.gallery-modal-content {
  position: relative;
  background: var(--block-bg-alt);
  padding: 20px;
  border-radius: 15px;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  box-shadow: 0 2px 12px #e3f8f3;
}
#modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: var(--accent-mint);
  cursor: pointer;
}
.close:hover {
  color: var(--accent-blue);
}

/* Медіа-запити */
@media (max-width: 900px) {
  .navbar {
    padding: 10px 0;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 12px #e3f8f3;
  }
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .logo {
    font-size: 0.95rem;
    flex: 1;
    text-align: left;
    padding-left: 8px;
  }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 12px;
    z-index: 1201;
  }
  .burger span {
    width: 28px;
    height: 4px;
    background: var(--accent-mint);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    box-shadow: -2px 0 16px #e3f8f3;
    padding: 80px 24px 24px 24px;
    gap: 24px;
    transition: right 0.35s cubic-bezier(.4,1.3,.5,1);
    z-index: 1200;
    border-radius: 24px 0 0 24px;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    font-size: 1.08rem;
    padding: 14px 0;
    width: 100%;
    text-align: left;
    border-radius: 18px;
    box-shadow: none;
    background: linear-gradient(90deg, #7ee7c7 0%, #b3e5fc 100%);
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .cta-btn {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
  .social-proof {
    font-size: 1.08rem;
    padding: 10px 12px;
    max-width: 100%;
    margin-top: 18px;
  }
  .hero-image img {
    max-width: 80%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
  }
  .gallery-img {
    max-width: 180px;
  }
  .order-section h1 {
    font-size: 2rem;
  }
  .order-form {
    max-width: 100%;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 2px 8px #e3f8f3;
    gap: 12px;
  }
  .order-form input {
    padding: 14px;
    font-size: 1rem;
  }
  .order-form .cta-btn {
    font-size: 1rem;
    padding: 14px 0;
  }
  .video-block video {
    max-width: 80%;
  }
  #timer {
    font-size: 2rem;
    padding: 10px 18px;
  }
  .footer {
    padding: 28px 0;
    border-radius: 18px 18px 0 0;
    margin: 0;
  }
  .footer .container {
    padding: 0 8px;
  }
  .footer p {
    font-size: 0.98rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .footer .social-links {
    margin-top: 10px;
  }
  .footer .social-links a {
    font-size: 2rem;
    margin: 0 14px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .navbar {
    padding: 10px 0;
  }
  .logo {
    font-size: 1.3rem;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 8px 10px;
  }
  .features-section, .media-section, .how-it-works, .offer-section, .faq-section, .footer {
    padding: 30px 0;
    border-radius: 20px;
    margin: 20px 0;
  }
  .order-form {
    padding: 8px;
    border-radius: 8px;
    gap: 8px;
  }
  .order-form input {
    padding: 12px;
    font-size: 0.98rem;
  }
  .order-form .cta-btn {
    font-size: 0.98rem;
    padding: 12px 0;
  }
  .modal-content {
    padding: 12px;
    border-radius: 10px;
  }
  .gallery-modal-content {
    padding: 8px;
    border-radius: 8px;
  }
  .gallery-img {
    max-width: 120px;
  }
  .cta-btn {
    padding: 10px 16px;
    font-size: 1rem;
  }
  #timer {
    font-size: 1.5rem;
  }
  .footer {
    padding: 18px 0;
    border-radius: 12px 12px 0 0;
  }
  .footer p {
    font-size: 0.92rem;
    margin-bottom: 8px;
  }
  .footer .social-links a {
    font-size: 2.2rem;
    margin: 0 10px;
  }
}

/* Анімація появи для .hero-image img */
.hero-image img {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  animation: hero-img-in 1.2s cubic-bezier(.4,1.3,.5,1) 0.4s forwards;
}
@keyframes hero-img-in {
  0% { opacity: 0; transform: scale(0.92) translateY(30px); }
  100% { opacity: 1; transform: none; }
}

/* Hover-ефект для кнопок */
.cta-btn, .offer-section .cta-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.12s;
}
.cta-btn:hover, .offer-section .cta-btn:hover {
  transform: scale(1.045);
  box-shadow: 0 12px 36px #4fd1b3cc;
}

/* Hover-ефект для .feature-item */
.feature-item:hover {
  box-shadow: 0 8px 32px #b3e5fc, 0 0 0 2px #7ee7c7;
  transform: translateY(-6px) scale(1.03);
  background: #fff;
}

.star-svg {
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg width="28" height="28" xmlns="http://www.w3.org/2000/svg"><polygon points="14,2 17,10 26,10 18.5,15 21,24 14,18 7,24 9.5,15 2,10 11,10" fill="%23ffb6d5"/></svg>') no-repeat center/contain;
}
.paw-svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><circle cx="6" cy="12" r="3" fill="%23fff9c4"/><circle cx="18" cy="12" r="3" fill="%23fff9c4"/><circle cx="12" cy="6" r="3" fill="%23fff9c4"/><ellipse cx="12" cy="18" rx="4" ry="2.5" fill="%23fff9c4"/></svg>') no-repeat center/contain;
  margin-left: 8px;
}
.arrow-svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M5 12h14M13 6l6 6-6 6" stroke="%23fff9c4" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
  margin-left: 8px;
}