/* ==========================================================================
   WORK+ Shared Offices — stiluri principale
   Paletă: crem #F5F1EA / negru cald #17130D / galben-muștar #EDB427
   ========================================================================== */

:root {
  --cream: #f5f1ea;
  --cream-soft: #efeae1;
  --ink: #17130d;
  --ink-soft: #24201a;
  --yellow: #edb427;
  --yellow-dark: #d9a217;
  --muted: #5c564c;
  --muted-light: #b8b0a2;
  --white: #ffffff;
  --whatsapp: #25d366;

  --font: "Archivo", system-ui, sans-serif;
  --container: 1200px;
  --radius: 4px;
  --shadow-card: 0 18px 45px rgba(23, 19, 13, 0.14);
  --transition: 0.3s cubic-bezier(0.25, 0.6, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* Etichete mici galbene (ex: "DE CE WORK+?") */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}

.label--yellow { color: var(--yellow); }

.section-heading {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

/* ==========================================================================
   Butoane
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn__arrow { transition: transform var(--transition); }

.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn--primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }

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

.btn--outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

.btn--dark-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(23, 19, 13, 0.35);
}

.btn--dark-outline:hover { border-color: var(--ink); background: rgba(23, 19, 13, 0.05); transform: translateY(-2px); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover { background: #1fb757; transform: translateY(-2px); }

.btn--full { width: 100%; justify-content: center; }

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(23, 19, 13, 0.96);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

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

/* Logo */
.logo { display: inline-flex; align-items: center; line-height: 1; }

.logo__img {
  width: 205px;
  height: auto;
  display: block;
}

.logo--footer .logo__img { width: 225px; }

/* Navigație */
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { padding: 12px 20px; }

/* Comutator limbă RO / EN */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-btn:hover { color: var(--white); }

.lang-btn.is-active {
  background: var(--yellow);
  color: var(--ink);
}

/* Buton meniu mobil */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 60svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 12, 8, 0.82) 0%, rgba(15, 12, 8, 0.55) 45%, rgba(15, 12, 8, 0.15) 100%);
}

.hero__content {
  width: 100%;
  padding-top: 80px;
}

.hero__title {
  font-size: clamp(2.34rem, 5.85vw, 4.14rem);
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 12ch;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero__title em {
  font-style: normal;
  color: var(--yellow);
}

.hero__text {
  max-width: 34ch;
  margin-top: 26px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  animation: rise 0.9s 0.15s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  animation: rise 0.9s 0.3s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  animation: drift 2.2s ease-in-out infinite;
}

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

@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================================================
   Beneficii
   ========================================================================== */

.benefits__inner {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 64px;
  align-items: start;
}

.benefits__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.25;
}

.benefits__lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 42ch;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}

.benefit { text-align: center; }

.benefit__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: var(--ink);
}

.benefit__icon svg { width: 100%; height: 100%; }

.benefit__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.benefit__text {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 24ch;
  margin: 0 auto;
}

/* ==========================================================================
   Spații
   ========================================================================== */

.spaces__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.space {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
  border-radius: var(--radius);
}

.space__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.space:hover .space__img { transform: scale(1.06); }

/* Pentru pozele cu text grafic în partea de jos: decupăm din partea de jos */
.space__img--top { object-position: center top; }

.space__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(15, 12, 8, 0) 40%, rgba(15, 12, 8, 0.88) 100%);
}

.space__title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.space__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 40ch;
}

/* ==========================================================================
   Locație
   ========================================================================== */

.location { background: var(--cream-soft); }

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: center;
}

.location__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 18px;
}

.location__text {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
  margin-bottom: 28px;
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Casetă „încarcă harta la cerere” (fără cookie-uri înainte de click) */
.map-consent {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: var(--cream);
  background-image: radial-gradient(circle at 1px 1px, rgba(23, 19, 13, 0.08) 1px, transparent 0);
  background-size: 22px 22px;
}

.map-consent__inner { max-width: 300px; }

.map-consent__icon { color: var(--yellow-dark); display: inline-block; margin-bottom: 12px; }

.map-consent__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 18px;
}

.map-consent__btn { margin-bottom: 14px; }

.map-consent__note {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   Recenzii
   ========================================================================== */

.reviews { background: var(--cream); }

.reviews__head { text-align: center; margin-bottom: 48px; }

.reviews__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(23, 19, 13, 0.14);
  border-radius: 999px;
  transition: border-color var(--transition), transform var(--transition);
}

.reviews__rating:hover { border-color: var(--yellow); transform: translateY(-2px); }

.reviews__score {
  font-size: 1.15rem;
  font-weight: 700;
}

.reviews__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--yellow);
}

.reviews__stars svg { width: 18px; height: 18px; }

.reviews__count {
  font-size: 0.82rem;
  color: var(--muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 19, 13, 0.06);
}

.review__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--yellow);
}

.review__stars svg { width: 18px; height: 18px; }

.review__text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  flex-grow: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review__name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
}

.review__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.reviews__cta {
  display: inline-flex;
  margin: 44px auto 0;
}

.reviews .container > .reviews__cta { justify-content: center; }

.reviews__cta { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Contact / CTA
   ========================================================================== */

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact__title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact__text {
  color: var(--muted-light);
  font-size: 0.95rem;
  max-width: 44ch;
  margin-bottom: 30px;
}

/* Formular */
.contact__form { display: grid; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { display: grid; gap: 8px; }

.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.form-field .optional { text-transform: none; letter-spacing: 0; font-weight: 400; }

.form-field input,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-field input[type="date"] { color-scheme: dark; }

.form-status {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* casetă vizibilă doar când există un mesaj (are o clasă ok/err) */
.form-status.ok,
.form-status.err {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
}

.form-status.ok {
  color: #a7f0bf;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.form-status.err {
  color: #f2a196;
  background: rgba(242, 96, 80, 0.1);
  border: 1px solid rgba(242, 96, 80, 0.35);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: #0f0c08;
  color: var(--muted-light);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--yellow); }

.footer__social { display: flex; gap: 12px; }

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer__social a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.footer__legal { display: flex; gap: 24px; }

.footer__legal a:hover { color: var(--yellow); }

/* ==========================================================================
   Buton WhatsApp plutitor
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-float:hover { transform: scale(1.08); background: #1fb757; }

/* ==========================================================================
   Animații la scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Decalaj în cascadă pentru elementele din grile */
.benefits__grid .reveal:nth-child(2),
.spaces__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.benefits__grid .reveal:nth-child(3),
.spaces__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.benefits__grid .reveal:nth-child(4),
.spaces__grid .reveal:nth-child(4) { transition-delay: 0.1s; }
.benefits__grid .reveal:nth-child(5),
.spaces__grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.benefits__grid .reveal:nth-child(6),
.spaces__grid .reveal:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__title, .hero__text, .hero__actions { animation: none; }
  .hero__scroll { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  /* pe tabletă micșorăm logo-ul ca meniul complet să încapă pe un rând */
  .logo__img { width: 170px; }
  .benefits__inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
  .spaces__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .location__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }

  /* sub 720px meniul devine hamburger, deci logo-ul poate fi mai mare din nou */
  .logo__img { width: 210px; }

  /* Meniu mobil */
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(15, 12, 8, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav.open { opacity: 1; pointer-events: auto; }

  .nav__link { font-size: 1.2rem; }

  .nav-toggle { position: relative; z-index: 110; }

  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .spaces__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Pagini legale (Confidențialitate / Termeni și condiții)
   ========================================================================== */

.legal-topbar {
  background: var(--ink);
  padding: 16px 0;
}

.legal-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-topbar .logo__img { width: 160px; }

.legal-wrap { background: var(--cream); min-height: 70vh; }

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}

.legal__updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 34px 0 12px;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal p { margin-bottom: 12px; }

.legal ul { padding-left: 22px; margin-bottom: 12px; }

.legal li { list-style: disc; margin-bottom: 6px; }

.legal a { color: var(--yellow-dark); text-decoration: underline; }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.legal__back:hover { color: var(--yellow-dark); }

.legal-topbar .lang-btn { color: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   Footer: logo-uri de plată (NETOPIA / Mastercard / Visa) + badge-uri ANPC
   ========================================================================== */

.footer__badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 26px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pay-logo { display: block; width: auto; }
.pay-logo--netopia { height: 30px; }
.pay-logo--mc { height: 30px; }
.pay-logo--visa { height: 19px; }

.anpc-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.anpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 8px;
  padding: 9px 14px;
  max-width: 300px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.anpc-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.anpc-badge__text {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #12245b;
  line-height: 1.3;
}

.anpc-badge__btn {
  flex-shrink: 0;
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: #12245b;
  padding: 5px 11px;
  border-radius: 4px;
}

@media (max-width: 720px) {
  .footer__badges { justify-content: center; }
  .pay-logos { justify-content: center; width: 100%; }
  .anpc-badges { justify-content: center; width: 100%; }
}
