:root {
  --gold: #c9a227;
  --gold-light: #f5edd4;
  --gold-dark: #a8861f;
  --sky: #dce8f5;
  --sky-light: #f4f8fc;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #e6f7f5;
  --telegram: #229ed9;
  --white: #ffffff;
  --cream: #faf9f7;
  --text: #1c2430;
  --text-muted: #5c6672;
  --shadow: 0 16px 48px rgba(28, 36, 48, 0.07);
  --shadow-lg: 0 24px 64px rgba(28, 36, 48, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container-pad: clamp(16px, 4vw, 40px);
  --section-pad: clamp(60px, 8vw, 100px);
  --grid-gap: clamp(24px, 4vw, 60px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.btn,
.header-cta,
.social-link,
.whatsapp-qr,
.contact-item a {
  position: relative;
  z-index: 2;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  display: block;
}

.social-link .icon {
  width: 22px;
  height: 22px;
}

.btn .icon {
  width: 18px;
  height: 18px;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  scroll-margin-top: 90px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 38rem;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(26, 35, 50, 0.06);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.35);
}

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

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 110px 0 70px;
  background: var(--cream);
  overflow: hidden;
  scroll-margin-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(13, 148, 136, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-orb {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: var(--grid-gap);
  align-items: center;
}

.hero-content {
  max-width: 36rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--teal-light);
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text);
}

.hero-title span {
  display: block;
  color: var(--teal);
  margin-top: 4px;
}

.hero-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.75;
  max-width: 32rem;
}

.hero-text:last-of-type {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(13, 148, 136, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1.5px solid rgba(26, 35, 50, 0.12);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-gold {
  background: linear-gradient(135deg, #f0d060, #e8b830);
  color: var(--text);
  border: none;
  box-shadow: 0 6px 20px rgba(232, 184, 48, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f5d870, #f0c840);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 184, 48, 0.4);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo {
  position: relative;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
}

.hero-photo-frame {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 36px);
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid rgba(28, 36, 48, 0.08);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--grid-gap);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--sky-light);
  border-radius: 14px;
  transition: transform 0.3s;
}

.about-feature:hover {
  transform: translateX(6px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(32px, 5vw, 48px);
}

.service-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-light), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Online services */
.online {
  background: var(--white);
}

.service-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--grid-gap);
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-block-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s;
}

.service-block:hover .service-block-image img {
  transform: scale(1.02);
}

.service-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--teal);
  margin: 12px 0 20px;
}

.service-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Guides */
.guides {
  background: var(--sky-light);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(16px, 3vw, 24px);
  margin-top: clamp(32px, 5vw, 48px);
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s;
}

.guide-card:hover {
  transform: translateY(-6px);
}

.guide-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.guide-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.guide-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
}

/* Reviews */
.reviews {
  background: var(--gold-light);
  overflow: hidden;
}

.reviews .section-title,
.reviews .section-label {
  color: var(--text);
}

.reviews-slider {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
}

.review-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.review-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
}

.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.review-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.review-service {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.review-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--text);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.review-btn:hover {
  transform: scale(1.1);
  background: var(--teal-dark);
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 35, 50, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.review-dot.active {
  background: var(--text);
  transform: scale(1.2);
}

/* Clinics */
.clinics {
  background: var(--cream);
}

.clinics-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 48px;
}

.clinics-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

/* Contact */
.contact {
  background: var(--text);
  color: var(--white);
  padding: var(--section-pad) 0 clamp(32px, 5vw, 40px);
  scroll-margin-top: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: var(--grid-gap);
  align-items: start;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-label {
  color: var(--gold);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.contact-item a {
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.3s, background 0.3s;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  background: var(--teal);
}

.social-link--telegram:hover {
  background: var(--telegram);
}

.social-link--instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: var(--white);
}

.social-link--instagram:hover {
  background: linear-gradient(135deg, #fad44a, #f03d8a, #7338e8);
}

.social-link--vk {
  background: #0077ff;
  color: var(--white);
}

.social-link--vk:hover {
  background: #1a85ff;
}

.btn-outline-light {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.whatsapp-qr {
  display: inline-block;
  margin-top: 28px;
  text-align: center;
  transition: transform 0.3s;
}

.whatsapp-qr:hover {
  transform: scale(1.03);
}

.whatsapp-qr img {
  width: 180px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.whatsapp-qr span {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #10b981;
}

.contact-cta {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-buttons .btn {
  width: 100%;
}

.btn-whatsapp {
  background: #10b981;
  color: var(--white);
}

.btn-telegram {
  background: var(--telegram);
  color: var(--white);
}

.btn-instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 20px rgba(238, 42, 123, 0.3);
}

.btn-instagram:hover {
  background: linear-gradient(135deg, #fad44a, #f03d8a, #7338e8);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(238, 42, 123, 0.4);
}

.btn-vk {
  background: #0077ff;
  color: var(--white);
  border: none;
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.3);
}

.btn-vk:hover {
  background: #1a85ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 119, 255, 0.4);
}

.footer-bottom {
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: clamp(0.8rem, 1.5vw, 0.85rem);
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll animations */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.9s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .hero-animate-d1,
  .hero-animate-d2,
  .hero-animate-d3,
  .hero-animate-d4 {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-animate-d1 { animation-delay: 0.15s; }
.hero-animate-d2 { animation-delay: 0.3s; }
.hero-animate-d3 { animation-delay: 0.45s; }
.hero-animate-d4 { animation-delay: 0.6s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--cream);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-panel a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* Responsive */
@media (max-width: 968px) {
  .nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .service-block.reverse {
    direction: ltr;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .clinics-card {
    padding: clamp(20px, 5vw, 28px);
  }

  .contact-cta {
    padding: clamp(20px, 5vw, 28px);
  }

  .whatsapp-qr img {
    width: min(180px, 70vw);
  }
}
