/* =========================================================
   Moret — High-end SPA
   Mobile-first, responsive, no framework dependencies
   ========================================================= */

:root {
  --bg: #080a12;
  --bg-soft: rgba(16, 18, 34, 0.72);
  --panel: rgba(18, 21, 41, 0.72);
  --panel-strong: rgba(24, 27, 50, 0.94);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f7f8ff;
  --muted: #a8abc2;
  --blue: #4d7cff;
  --cyan: #63e5ff;
  --magenta: #d44dff;
  --pink: #ff4fba;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --font-sans: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(77, 124, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(212, 77, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #080a12 0%, #0e1020 46%, #140b1e 100%);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(212, 77, 255, 0.35);
  color: white;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-compact {
  padding-block: 80px;
}

.site-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
}

.site-glow--one {
  top: 12%;
  left: -180px;
  background: var(--blue);
}

.site-glow--two {
  bottom: 5%;
  right: -220px;
  background: var(--magenta);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 10, 18, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 24px rgba(99, 229, 255, 0.75);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: 72px 16px auto;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(12, 14, 26, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.nav .nav-cta {
  color: white;
  background: linear-gradient(135deg, rgba(77, 124, 255, 0.22), rgba(212, 77, 255, 0.22));
  border: 1px solid rgba(136, 112, 255, 0.22);
}

.hero {
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 900px;
  font-size: clamp(3rem, 13vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 20px;
  max-width: 820px;
  font-size: clamp(2.2rem, 8vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
}

.text-gradient {
  background: linear-gradient(110deg, #75cfff 0%, #a379ff 48%, #ff62c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 650;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

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

.btn-primary {
  color: white;
  background:
    linear-gradient(120deg, rgba(53, 125, 255, 0.96), rgba(199, 67, 255, 0.96));
  box-shadow: 0 14px 40px rgba(94, 79, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 52px rgba(111, 86, 255, 0.42);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.btn-full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #c1c4d6;
}

.hero-panel {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.browser-card {
  width: min(100%, 560px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(-1.5deg);
}

.browser-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 4px 2px 14px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser-url {
  max-width: 240px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #85899f;
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.browser-body {
  min-height: 360px;
  padding: 34px 26px;
  border-radius: 19px;
  background:
    radial-gradient(circle at 75% 15%, rgba(217, 63, 255, 0.24), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(74, 122, 255, 0.28), transparent 30%),
    linear-gradient(150deg, #101429, #17102a 70%);
  overflow: hidden;
}

.mock-badge {
  width: fit-content;
  margin-bottom: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(104, 220, 255, 0.2);
  border-radius: 999px;
  color: #a6e7ff;
  background: rgba(100, 218, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.mock-title,
.mock-copy,
.mock-cta,
.mock-card {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-title {
  width: 76%;
  height: 18px;
}

.mock-title--short {
  width: 48%;
  margin-top: 10px;
}

.mock-copy {
  width: 82%;
  height: 8px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.09);
}

.mock-copy--small {
  width: 64%;
  margin-top: 8px;
}

.mock-cta {
  width: 116px;
  height: 38px;
  margin-top: 26px;
  background: linear-gradient(90deg, #4c7fff, #d84dff);
}

.mock-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 10px;
  margin-top: 38px;
}

.mock-card {
  height: 80px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.mock-card--accent {
  background: linear-gradient(135deg, rgba(80, 125, 255, 0.2), rgba(216, 77, 255, 0.18));
  border: 1px solid rgba(132, 144, 255, 0.14);
}

.floating-chip {
  position: absolute;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(11, 13, 25, 0.82);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  color: #dfe1ee;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.chip-one {
  top: 8%;
  right: -2%;
}

.chip-two {
  bottom: 23%;
  left: -2%;
}

.chip-three {
  right: 6%;
  bottom: 2%;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  max-width: 680px;
}

.services-grid,
.testimonials-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.testimonial,
.bento-card,
.contact-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 146, 255, 0.22);
  background: linear-gradient(180deg, rgba(112, 91, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.service-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.bento-grid {
  display: grid;
  gap: 16px;
}

.bento-card {
  min-height: 360px;
  padding: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #9ea1b6;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.project-art {
  position: relative;
  min-height: 210px;
  margin-bottom: 22px;
  border-radius: 23px;
  overflow: hidden;
}

.project-art--restaurant {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(62, 151, 255, 0.38), transparent 34%),
    radial-gradient(circle at 82% 26%, rgba(246, 72, 201, 0.34), transparent 32%),
    linear-gradient(145deg, #11182e, #201027);
}

.project-window {
  width: 76%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(10, 12, 24, 0.66);
  backdrop-filter: blur(16px);
}

.project-kicker {
  width: 72px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #ff77cb;
}

.project-heading {
  width: 90%;
  height: 12px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.project-heading--short {
  width: 58%;
}

.project-button {
  width: 90px;
  height: 30px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #477cff, #c54cff);
}

.project-art--service {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(72, 199, 255, 0.14), transparent 50%),
    linear-gradient(145deg, #0c1322, #161128);
}

.pulse-ring,
.pulse-core {
  position: absolute;
  border-radius: 50%;
}

.pulse-ring {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(95, 208, 255, 0.24);
  box-shadow: 0 0 50px rgba(94, 209, 255, 0.08);
}

.pulse-ring--two {
  width: 96px;
  height: 96px;
  border-color: rgba(221, 87, 255, 0.32);
}

.pulse-core {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #55d8ff, #d553ff);
  box-shadow: 0 0 40px rgba(124, 112, 255, 0.5);
}

.project-art--retail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 12px;
  padding: 22px;
  background:
    radial-gradient(circle at 70% 20%, rgba(218, 68, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #151027, #0d1322);
}

.mini-product {
  height: 130px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-product:nth-child(2) {
  height: 160px;
  background:
    linear-gradient(180deg, rgba(91, 119, 255, 0.2), rgba(205, 73, 255, 0.06));
}

.metric-layout {
  display: grid;
  gap: 30px;
  min-height: 280px;
  align-content: end;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form label span small {
  text-transform: none;
  font-size: 0.75rem;
  color: rgba(168, 171, 194, 0.6);
  letter-spacing: normal;
  margin-left: 4px;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.metric-value {
  display: block;
  margin-top: 4px;
  font-size: clamp(5rem, 24vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, #a9dfff, #da67ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-layout {
  display: grid;
  gap: 44px;
}

.process-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 26px;
  background: rgba(11, 13, 25, 0.92);
}

.process-item > span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.testimonial {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius-md);
}

.testimonial > p {
  color: #e8e9f2;
  font-size: 1.05rem;
}

.testimonial footer {
  display: grid;
  gap: 2px;
  margin-top: 30px;
}

.testimonial footer span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-section {
  padding-bottom: 80px;
}

.contact-card {
  display: grid;
  gap: 40px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(63, 132, 255, 0.13), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(219, 69, 255, 0.12), transparent 28%),
    rgba(12, 14, 26, 0.86);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label > span {
  color: #c5c7d5;
  font-family: var(--font-mono);
  font-size: 0.73rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  outline: none;
  padding: 14px 15px;
  color: white;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(102, 180, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(83, 132, 255, 0.08);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-brand {
  font-family: var(--font-mono);
  color: #7f8398 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay {
  transition-delay: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  .container {
    width: min(1120px, calc(100% - 56px));
  }

  .section {
    padding-block: 124px;
  }

  .section-compact {
    padding-block: 96px;
  }

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

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

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

  .bento-card--large,
  .bento-card--wide {
    grid-column: span 2;
  }

  .metric-layout {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: end;
  }

  .contact-card {
    padding: 44px;
  }
}

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
    padding-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 64px;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bento-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: minmax(260px, auto);
  }

  .bento-card--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .process-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 80px;
    align-items: start;
  }

  .process-layout .section-heading {
    position: sticky;
    top: 120px;
  }

  .contact-card {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    padding: 56px;
  }
}

/* =========================================================
   Moret — additions: Helios + WhatsApp
   ========================================================= */

.project-art--solar {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 207, 82, 0.18), transparent 24%),
    radial-gradient(circle at 24% 30%, rgba(99, 229, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #0d1824, #151027 76%);
}

.solar-sun {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #fff8c7 0%, #ffd768 32%, #ffac45 68%, rgba(255, 172, 69, 0.15) 70%);
  box-shadow: 0 0 42px rgba(255, 197, 78, 0.24);
}

.solar-panel {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  width: 62%;
  height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(151, 228, 255, 0.3);
  border-radius: 10px;
  background: rgba(8, 20, 40, 0.92);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%) perspective(360px) rotateX(54deg) rotateZ(-4deg);
  transform-origin: center bottom;
}

.solar-panel span {
  border: 1px solid rgba(104, 202, 255, 0.12);
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(65, 139, 255, 0.44), rgba(45, 54, 117, 0.7));
}

.solar-horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, rgba(33, 50, 48, 0), rgba(31, 67, 56, 0.4));
  clip-path: polygon(0 66%, 18% 48%, 35% 62%, 54% 42%, 73% 58%, 100% 31%, 100% 100%, 0 100%);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #cfefff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.project-link:hover {
  color: white;
  transform: translateX(2px);
}

.testimonial--featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(99, 229, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(91, 119, 255, 0.08), rgba(255, 255, 255, 0.025));
  border-color: rgba(111, 171, 255, 0.18);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f7f8ff;
  background: rgba(10, 13, 24, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: #25d366;
  filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.2));
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.34);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.05);
}

.whatsapp-float:focus-visible,
.project-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (min-width: 720px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .whatsapp-float {
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 479px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* =========================================================
   Moret — V3 additions: boutique badge, glow cursor,
   Helios example, pricing, support details, subtle neon sparks
   ========================================================= */

.brand {
  max-width: min(78vw, 480px);
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.8vw, 0.82rem);
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-boutique {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(25, 28, 54, 0.85), rgba(18, 21, 39, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 44px rgba(0, 0, 0, 0.22);
  color: #b8bbd1;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-boutique-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #22a8ff);
  box-shadow: 0 0 24px rgba(99, 229, 255, 0.85);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(104, 219, 255, 0.18) 0%, rgba(88, 151, 255, 0.12) 28%, rgba(222, 77, 255, 0.08) 52%, transparent 72%);
  filter: blur(28px);
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

.spark {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.spark--one {
  top: 12%;
  left: 8%;
  width: 10px;
  height: 10px;
  background: rgba(99, 229, 255, 0.9);
  box-shadow: 0 0 18px rgba(99, 229, 255, 0.85), 0 0 44px rgba(99, 229, 255, 0.35);
}

.spark--two {
  right: 12%;
  bottom: 16%;
  width: 12px;
  height: 12px;
  background: rgba(255, 79, 186, 0.92);
  box-shadow: 0 0 22px rgba(255, 79, 186, 0.9), 0 0 52px rgba(212, 77, 255, 0.4);
}

.project-art--helios-example {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(66, 145, 255, 0.32), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(221, 73, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #11182e, #140f26 72%);
}

.helios-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 210px;
  padding: 24px;
}

.helios-panel {
  position: absolute;
  inset: 22px 20px auto 20px;
  height: 68%;
  border-radius: 26px;
  background: linear-gradient(90deg, rgba(60, 112, 210, 0.48), rgba(31, 45, 93, 0.22) 50%, rgba(174, 44, 122, 0.48));
}

.helios-panel-grid {
  position: absolute;
  inset: auto 32px 24px auto;
  width: 136px;
  height: 78px;
  border-radius: 14px;
  border: 1px solid rgba(97, 171, 255, 0.18);
  background:
    linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)),
    repeating-linear-gradient(0deg, rgba(86, 169, 255, 0.08) 0 1px, transparent 1px 25px),
    repeating-linear-gradient(90deg, rgba(86, 169, 255, 0.08) 0 1px, transparent 1px 33px),
    linear-gradient(145deg, rgba(15, 38, 70, 0.92), rgba(11, 16, 32, 0.88));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.helios-browser {
  position: absolute;
  top: 44px;
  left: 12%;
  z-index: 2;
  width: 76%;
  padding: 22px 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 10, 24, 0.8);
  backdrop-filter: blur(10px);
}

.helios-chip {
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #c8d8ef;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.helios-line,
.helios-button {
  border-radius: 999px;
}

.helios-line {
  height: 11px;
  background: rgba(255, 255, 255, 0.72);
}

.helios-line--lg {
  width: 86%;
}

.helios-line--md {
  width: 64%;
  margin-top: 10px;
}

.helios-line--sm {
  width: 48%;
  height: 7px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.helios-button {
  width: 92px;
  height: 30px;
  margin-top: 22px;
  background: linear-gradient(90deg, #477cff, #c54cff);
}

.pricing-section {
  overflow: hidden;
}

.pricing-grid,
.support-grid {
  display: grid;
  gap: 16px;
}

.pricing-card,
.support-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.pricing-card::before,
.support-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 162, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.pricing-card--featured {
  border-color: rgba(126, 221, 255, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 229, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(91, 119, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.pricing-head h3,
.support-card h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.pricing-pricebox {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(125, 146, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(150, 156, 255, 0.1);
}

.price-kicker,
.support-number {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-amount {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #eef1ff;
}

.price-installments {
  width: fit-content;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbe5d1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.pricing-copy {
  min-height: 3.2em;
}

.pricing-features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  color: #d4d8ea;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 14px rgba(99, 229, 255, 0.35);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn-small {
  min-height: 46px;
  padding-inline: 16px;
  font-size: 0.92rem;
}

.support-card h3 + p {
  margin-bottom: 0;
}

.contact-shortcuts {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-shortcuts a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: #e3e6f3;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-shortcuts a:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 171, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 720px) {
  .pricing-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }

  .support-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-card--featured {
    transform: translateY(-10px);
  }
}

@media (max-width: 919px) {
  .brand {
    max-width: calc(100% - 64px);
  }
}

@media (max-width: 719px) {
  .hero-boutique {
    padding-inline: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .helios-browser {
    left: 8%;
    width: 84%;
  }

  .helios-panel-grid {
    width: 110px;
    height: 64px;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

/* =========================================================
   Moret — V4 refinements
   ========================================================= */

.brand {
  font-weight: 400;
  color: rgba(232, 235, 248, 0.84);
}

.brand-slashes {
  color: var(--magenta);
}

.project-art--helios-example {
  padding: 16px;
}

.helios-preview {
  width: 100%;
  height: 100%;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 13, 25, 0.92), rgba(14, 16, 30, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 70px rgba(0, 0, 0, 0.24);
}

.helios-preview__bar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.helios-preview__dots {
  display: flex;
  gap: 5px;
}

.helios-preview__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.helios-preview__url {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #858ba5;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.helios-preview__hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  min-height: 136px;
  padding: 16px 16px 10px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 179, 56, 0.2), transparent 20%),
    radial-gradient(circle at 12% 18%, rgba(79, 132, 255, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(15, 23, 49, 0.95), rgba(25, 15, 44, 0.95));
}

.helios-preview__copy,
.helios-preview__visual {
  position: relative;
}

.helios-preview__badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbe4f7;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.helios-preview__title,
.helios-preview__text,
.helios-preview__cta {
  border-radius: 999px;
}

.helios-preview__title {
  width: 94%;
  height: 10px;
  background: rgba(255, 255, 255, 0.74);
}

.helios-preview__title--short {
  width: 68%;
  margin-top: 8px;
}

.helios-preview__text {
  width: 88%;
  height: 6px;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.16);
}

.helios-preview__text--short {
  width: 74%;
  margin-top: 8px;
}

.helios-preview__cta {
  width: 82px;
  height: 26px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(79, 132, 255, 0.95), rgba(214, 80, 255, 0.92));
}

.helios-preview__visual {
  display: grid;
  place-items: center;
}

.helios-preview__sun {
  position: absolute;
  top: 2px;
  right: 8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffad3 0%, #ffd46b 38%, #ffae4e 72%, rgba(255, 174, 78, 0.12) 73%);
  box-shadow: 0 0 24px rgba(255, 193, 72, 0.28);
}

.helios-preview__panel {
  width: 108px;
  height: 68px;
  border-radius: 10px;
  border: 1px solid rgba(126, 204, 255, 0.22);
  background:
    repeating-linear-gradient(0deg, rgba(126, 204, 255, 0.1) 0 1px, transparent 1px 21px),
    repeating-linear-gradient(90deg, rgba(126, 204, 255, 0.1) 0 1px, transparent 1px 27px),
    linear-gradient(145deg, rgba(12, 34, 64, 0.98), rgba(12, 18, 34, 0.95));
  transform: perspective(300px) rotateX(50deg) rotateZ(-8deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

.helios-preview__sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 16px 16px;
}

.helios-preview__section {
  min-height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.helios-preview__section--accent {
  background: linear-gradient(180deg, rgba(91, 119, 255, 0.14), rgba(212, 77, 255, 0.05));
}

.pricing-pricebox {
  background:
    radial-gradient(circle at 88% 14%, rgba(212, 77, 255, 0.18), transparent 24%),
    radial-gradient(circle at 12% 12%, rgba(77, 124, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(125, 146, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(196, 122, 255, 0.12);
}

.price-amount {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  letter-spacing: -0.02em;
  color: rgba(240, 242, 252, 0.9);
}

.price-kicker {
  color: #b8bcdf;
}

.price-installments {
  color: #ddd6e6;
}

.pricing-actions {
  margin-top: 22px;
}

.pricing-actions .btn {
  width: 100%;
}

.contact-shortcuts a,
.contact-shortcut-static {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: #e3e6f3;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

@media (max-width: 719px) {
  .helios-preview__hero {
    grid-template-columns: 1fr;
  }

  .helios-preview__sections {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Moret — V5 refinements
   ========================================================= */

.whatsapp-float--round {
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  min-height: 62px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #25d366 0%, #1ebe5d 100%);
  box-shadow: 0 18px 46px rgba(15, 20, 30, 0.35), 0 0 0 6px rgba(37, 211, 102, 0.08);
}

.whatsapp-float--round svg {
  width: 31px;
  height: 31px;
  fill: #ffffff;
  filter: none;
}

.whatsapp-float--round:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 56px rgba(15, 20, 30, 0.42), 0 0 0 8px rgba(37, 211, 102, 0.1);
}

.testimonial-link {
  width: fit-content;
  margin-top: 10px;
  color: #d9ecff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.testimonial-link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

@media (max-width: 479px) {
  .whatsapp-float--round {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    min-height: 58px;
  }
}

/* =========================================================
   Moret — V8 pricing expansion refinements
   ========================================================= */

.price-kicker {
  display: grid;
  gap: 4px;
  line-height: 1.15;
}

.price-kicker small {
  color: #d7caea;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-amount--free {
  letter-spacing: 0.08em;
  color: #ffffff;
}

.pricing-card--free .pricing-pricebox {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 79, 186, 0.2), transparent 24%),
    radial-gradient(circle at 12% 12%, rgba(77, 124, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(154, 84, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.pricing-card--free .price-kicker {
  color: #f2d9ff;
}

.pricing-copy {
  font-size: 0.98rem;
}

.pricing-features li {
  font-size: 0.96rem;
}

@media (min-width: 920px) {
  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .pricing-card {
    padding: 18px;
    border-radius: 24px;
  }

  .pricing-head h3 {
    font-size: 1.18rem;
  }

  .pricing-pricebox {
    padding: 15px 14px 14px;
    border-radius: 20px;
  }

  .price-kicker {
    font-size: 0.63rem;
  }

  .price-kicker small {
    font-size: 0.52rem;
  }

  .price-amount {
    font-size: clamp(1.22rem, 2vw, 1.8rem);
  }

  .price-installments {
    padding: 7px 10px;
    font-size: 0.64rem;
  }

  .pricing-copy {
    min-height: 4.4em;
    font-size: 0.92rem;
  }

  .pricing-features {
    gap: 11px;
  }

  .pricing-features li {
    padding-left: 18px;
    font-size: 0.92rem;
  }

  .pricing-features li::before {
    width: 7px;
    height: 7px;
  }

  .btn-small {
    min-height: 42px;
    font-size: 0.88rem;
  }

  .pricing-card--featured {
    transform: translateY(-8px);
  }
}

/* =========================================================
   Moret — Seguridad y estados de formulario
   ========================================================= */

/* Honeypot: posicionado fuera de pantalla, no display:none
   (display:none es detectado por scrapers sofisticados) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Estados del mensaje de estado del formulario */
.form-status {
  min-height: 1.4em;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  transition: color 0.2s ease;
}

.form-status--success {
  color: #6edfa0;
}

.form-status--error {
  color: #ff8080;
}

.form-status--loading {
  color: var(--muted);
}

/* Botón deshabilitado durante envío */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Footer legal — aviso de privacidad y cookies */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 12px;
}

.footer-legal p,
.footer-legal a {
  margin: 0;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: rgba(168, 171, 194, 0.55);
}

.footer-legal p a {
  color: rgba(168, 171, 194, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal p a:hover {
  color: rgba(168, 171, 194, 0.95);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================================
   Cookie consent banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0 16px;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(12, 14, 26, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner__inner p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a8abc2;
  flex: 1;
  min-width: 220px;
}

.cookie-banner__inner p strong {
  color: var(--text);
}

.cookie-banner__inner p a {
  color: #7ec8ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Ajuste mobile — botones a ancho completo */
@media (max-width: 520px) {
  .cookie-banner__inner {
    padding: 16px 18px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}



