:root {
  --primary: #e76f51;
  --accent: #f47f5b;
  --secondary: #f4b942;
  --ink: #1f2937;
  --stone: #6b7280;
  --warm: #f7f4ed;
  --line: #d9d5cc;
  --paper: #fffaf2;
  --white: #ffffff;
  --green: #1f9d73;
  --blue: #4169e1;
  --dark: #0f172a;
  --dark-soft: #111827;
  --dark-card: #172033;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  background: var(--dark);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 16px 24px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 46px rgba(31, 41, 55, 0.13);
}

.brand img {
  width: 132px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  font-weight: 700;
}

.desktop-nav a {
  padding: 8px 0;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher button {
  min-width: 34px;
  min-height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--primary);
  color: white;
}

.section {
  position: relative;
  padding: 104px 24px;
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 34px;
  padding-top: 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(231, 111, 81, 0.28), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(244, 185, 66, 0.18), transparent 22%),
    linear-gradient(115deg, rgba(15, 23, 42, 0.98) 0%, rgba(17, 24, 39, 0.94) 52%, rgba(31, 41, 55, 0.9) 100%);
  transform: scale(1.02);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: 10vw;
  top: 110px;
  width: 220px;
  height: 220px;
  background: url("./assets/tiendix-icon.svg") center / contain no-repeat;
  opacity: 0.1;
  filter: drop-shadow(0 32px 60px rgba(231, 111, 81, 0.28));
}

.hero-content,
.store-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-content {
  max-width: 650px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 540px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(3.2rem, 6vw, 5.45rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.03rem, 2vw, 1.32rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 36px rgba(231, 111, 81, 0.34);
}

.button-primary:hover {
  background: #d95e43;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.button-secondary.dark {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.store-stage {
  min-height: 560px;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.store-browser {
  position: relative;
  width: min(690px, 100%);
  transform: rotate(-1.5deg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.88);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.browser-top span:nth-child(2) {
  background: var(--secondary);
}

.browser-top span:nth-child(3) {
  background: var(--green);
}

.browser-top strong {
  margin-left: 10px;
  color: var(--stone);
  font-size: 0.82rem;
}

.store-window {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 430px;
}

.store-sidebar {
  padding: 28px 18px;
  background: #17202f;
  color: white;
}

.store-sidebar img {
  width: 44px;
  margin-bottom: 22px;
}

.store-sidebar p {
  margin-bottom: 4px;
  font-weight: 900;
}

.store-sidebar small {
  color: rgba(255, 255, 255, 0.68);
}

.store-main {
  padding: 26px;
  color: #17202f;
}

.store-toolbar,
.order-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.store-toolbar small {
  display: block;
  margin-bottom: 5px;
  color: var(--stone);
  font-weight: 800;
}

.store-toolbar strong {
  color: #17202f;
  font-size: 1.8rem;
}

.store-toolbar button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.product-grid article {
  min-height: 170px;
  padding: 12px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 8px;
  background: white;
}

.product-grid span {
  display: block;
  height: 88px;
  margin-bottom: 14px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(231, 111, 81, 0.16), rgba(244, 185, 66, 0.22)),
    linear-gradient(90deg, #f4f0e7, #ffffff);
}

.product-grid strong,
.product-grid small {
  display: block;
}

.product-grid small {
  margin-top: 5px;
  color: var(--green);
  font-weight: 800;
}

.order-strip {
  min-height: 62px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff5df;
}

.order-strip p {
  margin: 0 auto 0 0;
  font-weight: 800;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31, 157, 115, 0.42);
  animation: pulse 1.8s ease-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 144px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(31, 41, 55, 0.16);
  color: #17202f;
  font-size: 0.92rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
  animation: float 5s ease-in-out infinite;
}

.card-one { top: 55px; right: min(560px, 40vw); }
.card-two { top: 150px; right: 36px; animation-delay: 0.4s; }
.card-three { bottom: 90px; right: min(620px, 44vw); animation-delay: 0.8s; }
.card-four { bottom: 38px; right: 92px; color: var(--green); animation-delay: 1.2s; }

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.problem,
.benefits,
.catalog,
.faq {
  background: var(--dark-soft);
}

.dark-band {
  background: radial-gradient(circle at top left, rgba(231, 111, 81, 0.14), transparent 34%), var(--dark);
}

.dark-band h2,
.dark-band h3 {
  color: white;
}

.problem-grid,
.benefit-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-card,
.benefit-card,
.trust-card,
.compare-card,
.step,
.price-card,
.transparent-box,
.mp-card,
.emotional-panel,
.faq-item,
.catalog-flow article {
  border: 1px solid rgba(31, 41, 55, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.problem-card {
  min-height: 106px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 850;
}

.statement {
  max-width: 900px;
  margin: 38px auto 0;
  color: white;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.compare-card {
  padding: 30px;
}

.compare-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.compare-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.compare-card ul,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li,
.price-card li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.compare-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.traditional {
  background: rgba(255, 255, 255, 0.06);
}

.tiendix {
  background: rgba(31, 157, 115, 0.13);
}

.tiendix li::before {
  background: var(--green);
}

.flow,
.catalog-flow {
  display: grid;
  align-items: center;
  max-width: 1060px;
  margin: 24px auto 0;
}

.flow {
  grid-template-columns: 1fr 54px 1fr 54px 1fr 54px 1fr;
  padding: 20px;
  border-radius: 8px;
  background: #17202f;
  color: white;
}

.flow span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
  font-weight: 900;
}

.flow b,
.catalog-flow span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.flow b::after,
.catalog-flow span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: -4px 0 0 auto;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 33px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--green));
}

.step {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.step span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 950;
}

.step p,
.benefit-card p,
.trust-card p,
.transparent-box p,
.mp-card p,
.final-cta p,
.emotional-panel p,
.faq-panel p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.benefit-card,
.trust-card {
  padding: 24px;
}

.benefit-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 950;
}

.emotional {
  background: #17202f;
  color: white;
  overflow: hidden;
}

.emotional::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(231, 111, 81, 0.18), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(244, 185, 66, 0.12), transparent 24%),
    linear-gradient(115deg, rgba(23, 32, 47, 0.99), rgba(23, 32, 47, 0.9));
}

.emotional-panel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.emotional h2,
.emotional h3 {
  color: white;
}

.emotional h3 {
  margin-top: 32px;
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.no-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.no-list p {
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.catalog-flow {
  grid-template-columns: 1fr 70px 1fr 70px 1fr;
}

.catalog-flow article {
  min-height: 178px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.commission-card {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
}

.commission-card p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.commission-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.commission-grid strong,
.commission-grid span {
  display: block;
}

.commission-grid strong {
  margin-bottom: 10px;
  color: white;
  font-size: 1.2rem;
}

.commission-grid span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.pricing {
  background: linear-gradient(180deg, var(--warm), #ffffff);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 930px;
  margin: 0 auto;
}

.price-card {
  padding: 30px;
  background: white;
}

.price-card.featured {
  border-color: rgba(231, 111, 81, 0.36);
  box-shadow: 0 26px 70px rgba(231, 111, 81, 0.18);
}

.price-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff0e8;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 12px 0 10px;
  color: #17202f;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.transparent-box strong {
  color: white;
}

.transparent-box,
.mp-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.07);
}

.mercado-pago {
  padding-top: 0;
}

.trust {
  background: var(--dark);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-trigger span {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 22px;
}

.final-cta {
  background: var(--dark);
  color: white;
}

.final-inner {
  max-width: 480px;
  margin: 0;
  text-align: left;
}

.final-inner h2 {
  color: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 32px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.contact-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  resize: vertical;
  min-height: 126px;
  padding: 13px 14px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(231, 111, 81, 0.82);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.18);
}

.contact-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.form-status.is-error {
  color: #fecaca;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  padding: 48px 24px 86px;
  background: #070b14;
  color: rgba(255, 255, 255, 0.8);
}

.footer > * {
  max-width: 1180px;
}

.footer img {
  width: 140px;
  margin-bottom: 14px;
}

.footer nav,
.social-links {
  display: grid;
  gap: 10px;
}

.footer a:hover {
  color: white;
}

.footer-flags {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1180px;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

.footer-flags img {
  width: 34px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.mobile-sticky-cta {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 26;
  display: inline-flex;
  min-width: 150px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 50%;
  border-radius: 999px;
  background: #25d366;
  color: white;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-float strong {
  font-size: 0.94rem;
  line-height: 1;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  100% { box-shadow: 0 0 0 16px rgba(31, 157, 115, 0); }
}

@media (max-width: 980px) {
  .site-header {
    inset: 10px 12px auto;
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 116px;
  }

  .hero-content {
    margin-left: 0;
  }

  .store-stage {
    min-height: 520px;
    padding-right: 0;
  }

  .store-browser {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .problem-grid,
  .benefit-grid,
  .trust-grid,
  .comparison,
  .pricing-grid,
  .commission-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .flow,
  .catalog-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow b,
  .catalog-flow span {
    width: 2px;
    height: 32px;
    margin: 0 auto;
  }

  .flow b::after,
  .catalog-flow span::after {
    margin: 22px 0 0 -4px;
    transform: rotate(135deg);
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .final-inner {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 16px;
  }

  .site-header .button {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .language-switcher button {
    min-width: 30px;
    min-height: 30px;
    font-size: 0.72rem;
  }

  .brand img {
    width: 118px;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(2.5rem, 12vw, 3.05rem);
    line-height: 0.96;
  }

  .hero-content,
  .hero-copy {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 1rem;
  }

  .store-stage {
    min-height: 440px;
  }

  .store-browser {
    width: calc(100vw - 32px);
    transform: none;
  }

  .browser-top strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .store-window {
    grid-template-columns: 1fr;
  }

  .store-sidebar {
    display: none;
  }

  .store-main {
    padding: 18px;
  }

  .store-toolbar button {
    display: none;
  }

  .store-toolbar strong {
    font-size: 1.5rem;
  }

  .order-strip {
    padding: 0 12px;
  }

  .order-strip strong {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
    margin: 20px 0;
  }

  .product-grid article:nth-child(n + 2) {
    display: none;
  }

  .floating-card {
    min-width: 120px;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .card-one { top: 14px; right: auto; left: 8px; }
  .card-two { display: none; }
  .card-three { bottom: 60px; right: auto; left: 8px; }
  .card-four { display: none; }

  .timeline,
  .no-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-points {
    margin-top: 22px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 25;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(231, 111, 81, 0.36);
  }

  .whatsapp-float {
    right: auto;
    left: 16px;
    bottom: 76px;
    min-width: 0;
    width: 50px;
    height: 48px;
    padding: 0;
  }

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

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

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

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