    :root {
      --bg: #0d1117;
      --bg-soft: #131a23;
      --panel: rgba(16, 23, 32, 0.78);
      --panel-strong: rgba(13, 19, 28, 0.92);
      --line: rgba(255, 255, 255, 0.12);
      --text: #e8edf5;
      --muted: #9ca7bb;
      --primary: #e0a456;
      --primary-strong: #c48832;
      --accent: #2ec9c9;
      --danger: #e07a7a;
      --radius-xl: 24px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 10px;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
      --display: "Playfair Display", serif;
      --body: "Manrope", system-ui, -apple-system, sans-serif;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: var(--body);
      color: var(--text);
      background: var(--bg);
      line-height: 1.55;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

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

    .skip-link {
      position: absolute;
      left: -999px;
      top: -999px;
      background: #fff;
      color: #000;
      padding: 0.6rem 0.8rem;
      border-radius: 8px;
      z-index: 100;
    }

    .skip-link:focus {
      left: 1rem;
      top: 1rem;
    }

    .bg-video {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -3;
      filter: saturate(1.05) contrast(1.08) brightness(0.58);
      pointer-events: none;
    }

    .bg-overlay {
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(1200px 580px at 85% -10%, rgba(46, 201, 201, 0.2), transparent 60%),
        radial-gradient(1000px 600px at -10% 28%, rgba(224, 164, 86, 0.2), transparent 60%),
        linear-gradient(180deg, rgba(7, 12, 18, 0.8) 0%, rgba(7, 11, 17, 0.9) 48%, rgba(10, 16, 24, 0.92) 100%);
      pointer-events: none;
    }

    .bg-noise {
      position: fixed;
      inset: 0;
      z-index: -1;
      background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: 0.15;
      pointer-events: none;
    }

    .shell {
      width: min(1160px, 100% - 2rem);
      margin-inline: auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      border-bottom: 1px solid var(--line);
      background: rgba(10, 14, 21, 0.66);
      backdrop-filter: blur(16px);
    }

    .topbar {
      min-height: 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 0.9rem;
      padding: 0.46rem 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.72rem;
      min-width: 0;
    }

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transform: scaleX(-1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

    .brand-copy {
      min-width: 0;
      display: grid;
      gap: 0.05rem;
    }

    .brand-copy strong {
      font-family: var(--display);
      font-size: 1.2rem;
      letter-spacing: 0.01em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-copy span {
      color: var(--muted);
      font-size: 0.83rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      padding: 0.24rem;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
    }

    .lang-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--muted);
      border-radius: 999px;
      padding: 0.36rem 0.56rem;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .lang-btn:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-1px);
    }

    .lang-btn.is-active,
    .lang-btn[aria-pressed="true"] {
      background: linear-gradient(120deg, rgba(224, 164, 86, 0.28), rgba(46, 201, 201, 0.26));
      color: var(--text);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    }

    .lang-switch-desktop { display: none; }

    .mobile-lang-block {
      margin-top: 0.32rem;
      padding-top: 0.48rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-lang-title {
      margin: 0 0 0.42rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: #b8c6d8;
    }

    .btn {
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 0.68rem 1rem;
      font-size: 0.92rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.38rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      cursor: pointer;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: linear-gradient(120deg, var(--primary), #efb56d);
      border-color: rgba(224, 164, 86, 0.6);
      color: #1f1407;
      box-shadow: 0 10px 28px rgba(224, 164, 86, 0.3);
    }

    .btn-primary:hover {
      box-shadow: 0 14px 34px rgba(224, 164, 86, 0.36);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.2);
      color: var(--text);
    }

    .menu-btn {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      display: grid;
      place-items: center;
      font-size: 1rem;
      cursor: pointer;
    }

    .desktop-nav {
      display: none;
      align-items: center;
      gap: 0.2rem;
      margin-left: 0.6rem;
    }

    .desktop-nav a {
      color: var(--muted);
      font-size: 0.93rem;
      font-weight: 600;
      padding: 0.55rem 0.66rem;
      border-radius: 10px;
    }

    .desktop-nav a:hover,
    .desktop-nav a:focus-visible {
      color: var(--text);
      background: rgba(255, 255, 255, 0.07);
      outline: none;
    }

    .mobile-nav {
      border-top: 1px solid var(--line);
      padding: 0;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.25s ease;
    }

    .mobile-nav.open {
      max-height: 430px;
      padding: 0.75rem 0;
    }

    .mobile-nav-grid {
      display: grid;
      gap: 0.3rem;
    }

    .mobile-nav-grid > a {
      padding: 0.7rem 0.78rem;
      border-radius: 11px;
      color: var(--muted);
      font-size: 0.95rem;
      border: 1px solid transparent;
      background: rgba(255, 255, 255, 0.02);
    }

    .mobile-nav-grid > a:hover,
    .mobile-nav-grid > a:focus-visible {
      color: var(--text);
      border-color: var(--line);
      outline: none;
      background: rgba(255, 255, 255, 0.06);
    }

    .hero {
      padding: 2.4rem 0 1.2rem;
      display: grid;
      gap: 1rem;
    }

    .hero-main,
    .hero-side {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--panel);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-main {
      padding: 1.1rem;
    }

    .hero-main::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(140deg, rgba(224, 164, 86, 0.18), transparent 44%);
    }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.92rem;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.33rem 0.64rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
  animation: pillFloatIn 0.44s ease both;
}

.pill-row .pill:nth-child(2) { animation-delay: 0.05s; }
.pill-row .pill:nth-child(3) { animation-delay: 0.1s; }

.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.16) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.pill:hover::after,
.pill:focus-visible::after {
  transform: translateX(140%);
}

.pill.primary {
  border-color: rgba(224, 164, 86, 0.58);
  background: rgba(224, 164, 86, 0.14);
  color: #ffd8ad;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.1;
      letter-spacing: 0.01em;
      font-family: var(--display);
    }

    h1 {
      font-size: clamp(1.86rem, 6vw, 3.25rem);
      max-width: 16ch;
      margin-bottom: 0.78rem;
    }

    .lead {
      margin: 0;
      color: var(--muted);
      max-width: 62ch;
      font-size: 1rem;
    }

    .hero-ctas {
      margin-top: 1.05rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.62rem;
    }

    .hero-proof {
      margin-top: 0.95rem;
      display: grid;
      gap: 0.4rem;
      color: #b6f3ec;
      font-size: 0.88rem;
      font-weight: 600;
    }

    .hero-side {
      display: grid;
      gap: 0;
      background: rgba(12, 18, 26, 0.84);
    }

    .hero-side img {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      border-bottom: 1px solid var(--line);
    }

    .hero-side-copy {
      padding: 0.95rem;
      display: grid;
      gap: 0.45rem;
    }

    .hero-side-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .hero-bullets {
      margin: 0;
      padding-left: 1rem;
      color: var(--muted);
      display: grid;
      gap: 0.28rem;
      font-size: 0.88rem;
    }

    section { padding: 1.3rem 0; }

    .section-head {
      display: grid;
      gap: 0.35rem;
      margin-bottom: 0.95rem;
    }

    .section-head p { margin: 0; color: var(--muted); max-width: 64ch; }

    .cards {
      display: grid;
      gap: 0.78rem;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--panel);
      box-shadow: var(--shadow);
      padding: 0.95rem;
    }

    .card h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }

.service-title-link {
  color: inherit;
  text-decoration: none;
}

.service-title-link:hover,
.service-title-link:focus-visible {
  text-decoration: underline;
  text-decoration-color: rgba(224, 164, 86, 0.7);
}

    .card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.card-service {
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-service:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
}

.card-service:focus-visible {
  outline: 2px solid rgba(224, 164, 86, 0.92);
  outline-offset: 2px;
}

    .chips {
      margin-top: 0.62rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.38rem;
    }

.chip {
  border-radius: 999px;
  border: 1px solid rgba(224, 164, 86, 0.45);
  background: rgba(224, 164, 86, 0.14);
  color: #ffd8ad;
  padding: 0.3rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 164, 86, 0.66);
  box-shadow: 0 10px 22px rgba(224, 164, 86, 0.2);
}

.chip:hover::after {
  transform: translateX(140%);
}

    .trust-band {
      border: 1px solid rgba(46, 201, 201, 0.45);
      border-radius: var(--radius-lg);
      background: linear-gradient(120deg, rgba(46, 201, 201, 0.12), rgba(224, 164, 86, 0.12));
      padding: 0.9rem;
      display: grid;
      gap: 0.55rem;
    }

    .trust-grid {
      display: grid;
      gap: 0.5rem;
    }

    .trust-item {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      padding: 0.7rem;
    }

    .trust-item strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 0.15rem;
    }

    .trust-item span {
      color: var(--muted);
      font-size: 0.83rem;
    }

    .prices {
      display: grid;
      gap: 0.76rem;
    }

    .price {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: linear-gradient(130deg, rgba(16, 23, 32, 0.95), rgba(16, 23, 32, 0.76));
      padding: 0.92rem;
    }

    .price strong {
      display: block;
      font-size: 1.02rem;
      margin-bottom: 0.18rem;
    }

    .price .amount {
      display: block;
      font-size: 1.35rem;
      font-family: var(--display);
      color: #ffd8ad;
      font-weight: 700;
    }

    .price small {
      margin-top: 0.36rem;
      display: block;
      color: var(--muted);
      font-size: 0.81rem;
    }

    .faq-shell {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--panel-strong);
      box-shadow: var(--shadow);
      padding: 0.84rem;
    }

    .faq-pills {
      display: flex;
      gap: 0.45rem;
      overflow: auto hidden;
      scrollbar-width: thin;
      padding-bottom: 0.36rem;
      margin-bottom: 0.66rem;
    }

.faq-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
      color: var(--muted);
      padding: 0.5rem 0.76rem;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.faq-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.14) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.faq-pill:hover,
.faq-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.faq-pill:hover::after,
.faq-pill:focus-visible::after {
  transform: translateX(140%);
}

.faq-pill[aria-selected="true"] {
  border-color: rgba(224, 164, 86, 0.6);
  background: linear-gradient(120deg, rgba(224, 164, 86, 0.22), rgba(46, 201, 201, 0.2));
  color: var(--text);
  box-shadow: 0 10px 24px rgba(224, 164, 86, 0.18);
}

    .faq-panel[hidden] { display: none; }

    .faq-stack {
      display: grid;
      gap: 0.53rem;
    }

    details {
      border: 1px solid var(--line);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
      padding: 0.64rem 0.74rem;
    }

    summary {
      list-style: none;
      cursor: pointer;
      font-weight: 700;
      font-size: 0.92rem;
      position: relative;
      padding-right: 1.4rem;
    }

    summary::marker,
    summary::-webkit-details-marker { display: none; }

    summary::after {
      content: "+";
      position: absolute;
      right: 0;
      top: -0.06rem;
      color: #b8c5d8;
      font-size: 1.05rem;
    }

    details[open] summary::after { content: "-"; }

    details p {
      margin: 0.52rem 0 0;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .cta-band {
      border: 1px solid rgba(46, 201, 201, 0.42);
      border-radius: var(--radius-xl);
      background: linear-gradient(120deg, rgba(46, 201, 201, 0.14), rgba(224, 164, 86, 0.13));
      padding: 1rem;
    }

    .cta-band p {
      margin: 0.45rem 0 0;
      color: var(--muted);
      max-width: 66ch;
      font-size: 0.92rem;
    }

    .contact-grid {
      margin-top: 0.95rem;
      display: grid;
      gap: 0.78rem;
    }

    .contact-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--panel);
      box-shadow: var(--shadow);
      padding: 0.9rem;
    }

    .contact-card p { margin: 0; color: var(--muted); }

    .form {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--panel);
      box-shadow: var(--shadow);
      padding: 0.9rem;
      display: grid;
      gap: 0.6rem;
    }

    .form label {
      font-size: 0.84rem;
      font-weight: 700;
      color: #b8c6d8;
    }

    .form input,
    .form textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      font: inherit;
      padding: 0.68rem 0.72rem;
    }

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

.form-result {
      margin: 0;
      font-size: 0.84rem;
      color: var(--muted);
    }

.dm-hp { display: none !important; }

    .form-result.error { color: var(--danger); }

footer {
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.2rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.footer-legal a,
.footer-cookie-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-legal a:hover,
.footer-cookie-btn:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-cookie-btn {
  cursor: pointer;
  font-family: inherit;
}

.footer-legal > * + * {
  position: relative;
  padding-left: 0.62rem;
}

.footer-legal > * + *::before {
  content: "·";
  position: absolute;
  left: 0.14rem;
  color: #7f8da1;
}

.floating-social {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 70;
}

.floating-instagram,
.floating-whatsapp {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.floating-instagram {
  background: radial-gradient(circle at 35% 108%, #feda75 0%, #feda75 9%, #fa7e1e 38%, #d62976 62%, #962fbf 79%, #4f5bd5 100%);
}

.floating-whatsapp { background: #25d366; }

.floating-instagram:hover,
.floating-whatsapp:hover { transform: translateY(-2px); }

.floating-instagram img,
.floating-whatsapp img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body.has-cookie-banner .floating-social {
  bottom: calc(8.2rem + env(safe-area-inset-bottom, 0px));
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.72rem;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-card {
  width: min(980px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(12, 18, 26, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  padding: 0.76rem;
  display: grid;
  gap: 0.56rem;
  pointer-events: auto;
}

.cookie-copy {
  margin: 0;
  color: #d4dfed;
  font-size: 0.82rem;
}

.cookie-copy a {
  color: #93f2f2;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.48rem;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.44rem 0.74rem;
  cursor: pointer;
}

.cookie-btn.accept {
  background: linear-gradient(120deg, var(--primary), #efb56d);
  color: #1f1407;
  border-color: rgba(224, 164, 86, 0.58);
}

.cookie-manage {
  position: fixed;
  left: 0.8rem;
  bottom: 0.82rem;
  z-index: 95;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 18, 26, 0.82);
  color: #d4dfed;
  border-radius: 999px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.34rem 0.58rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

    .btn:focus-visible,
    .lang-btn:focus-visible,
    .faq-pill:focus-visible,
    .menu-btn:focus-visible,
    .main-nav a:focus-visible,
    .desktop-nav a:focus-visible,
    .form input:focus,
    .form textarea:focus,
    summary:focus-visible {
      outline: 2px solid rgba(224, 164, 86, 0.92);
      outline-offset: 2px;
    }

@media (min-width: 930px) {
      .topbar {
        grid-template-columns: auto 1fr auto;
        min-height: 82px;
      }

      .menu-btn,
      .mobile-nav { display: none; }

      .desktop-nav { display: flex; }
      .lang-switch-desktop { display: inline-flex; }

      .hero {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: stretch;
        padding-top: 3rem;
      }

      .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

      .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

      .prices { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .contact-grid { grid-template-columns: 1.02fr 0.98fr; }
}

@media (max-width: 929px) {
  .topbar {
    min-height: 74px;
    gap: 0.62rem;
    padding: 0.52rem 0;
  }

  .lang-switch-desktop {
    display: none;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-family: var(--body);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0;
  }

  .brand-copy span {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .header-actions {
    gap: 0.48rem;
  }

  .header-actions .btn {
    padding: 0.58rem 0.9rem;
    font-size: 0.88rem;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
  }

  .lang-btn {
    padding: 0.35rem 0.54rem;
    font-size: 0.75rem;
  }

  .floating-social {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    gap: 0.52rem;
  }

  body.has-cookie-banner .floating-social {
    bottom: calc(9.2rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner {
    padding: 0.62rem;
  }

  .cookie-card {
    padding: 0.68rem;
  }

  .cookie-manage {
    left: 0.62rem;
    bottom: calc(0.62rem + env(safe-area-inset-bottom, 0px));
  }

  .floating-instagram,
  .floating-whatsapp {
    width: 50px;
    height: 50px;
  }

  .floating-instagram img,
  .floating-whatsapp img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy span {
    max-width: 140px;
  }

  .header-actions .btn {
    padding: 0.56rem 0.82rem;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

@keyframes pillFloatIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
