/* ==============================
   SUPYM WEB - STYLE.CSS LIMPIO
   Landing moderna / impacto visual
================================= */

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ---------- VARIABLES ---------- */
:root {
  --bg-main: #030712;
  --bg-secondary: #06111f;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-strong: rgba(255, 255, 255, 0.1);

  --text-main: #ffffff;
  --text-muted: #a9bad0;

  --primary: #00aaff;
  --primary-dark: #0077c8;
  --primary-light: #66d9ff;

  --secondary: #0077ff;
  --secondary-light: #38bdf8;

  --danger: #ff4f7b;

  --border-soft: rgba(255, 255, 255, 0.12);
  --border-blue: rgba(0, 170, 255, 0.22);

  --shadow-glow: 0 0 70px rgba(0, 170, 255, 0.24);
  --shadow-card: 0 28px 80px rgba(0, 0, 0, 0.34);

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;

  --container: 1180px;
  --header-height: 86px;
}

/* ---------- BACKGROUND EFFECTS ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 170, 255, 0.24), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(0, 119, 255, 0.25), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(102, 217, 255, 0.12), transparent 36%),
    var(--bg-main);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 170, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

/* ---------- HEADER / NAVBAR ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 12px 24px;
  backdrop-filter: blur(18px);
  background: rgba(3, 7, 18, 0.78);
  border-bottom: 1px solid rgba(0, 170, 255, 0.16);
}

.navbar {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.logo-img {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo span {
  background: linear-gradient(135deg, #ffffff 10%, var(--primary) 45%, var(--secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.logo-navbar,
.logo-img img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 170, 255, 0.35));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.mobile-only {
  display: none;
}

.nav-login {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(0, 170, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 170, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.12);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--secondary), #00c8ff);
  font-weight: 900;
  margin-top: 8px;
  box-shadow: 0 14px 36px rgba(0, 170, 255, 0.25);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--secondary), #00c8ff);
  box-shadow: 0 18px 45px rgba(0, 170, 255, 0.30);
}

.btn-primary:hover {
  box-shadow: 0 24px 65px rgba(0, 170, 255, 0.45);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: var(--primary);
  box-shadow: 0 0 34px rgba(0, 170, 255, 0.22);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 150px 24px 90px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 70px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.10);
  filter: blur(80px);
  left: -120px;
  top: 180px;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.75);
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 950;
  max-width: 820px;
}

.hero-text {
  margin-top: 28px;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.22rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- HERO SHOWCASE SUPYM ---------- */
.hero-card,
.product-showcase {
  position: relative;
  min-height: 560px;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 25% 20%, rgba(0, 170, 255, 0.20), transparent 32%),
    radial-gradient(circle at 82% 80%, rgba(0, 91, 234, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow:
    0 0 80px rgba(0, 170, 255, 0.22),
    0 34px 110px rgba(0,0,0,0.48);
  backdrop-filter: blur(26px);
  overflow: visible;
  animation: floatCard 5s ease-in-out infinite;
}

.showcase-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orbit-one {
  width: 260px;
  height: 260px;
  left: -70px;
  top: 60px;
  background: rgba(0, 170, 255, 0.12);
  filter: blur(42px);
}

.orbit-two {
  width: 220px;
  height: 220px;
  right: -50px;
  bottom: 30px;
  background: rgba(0, 91, 234, 0.16);
  filter: blur(46px);
}

.laptop-frame {
  position: relative;
  z-index: 2;
  width: 92%;
  margin: 42px auto 0;
  border-radius: 28px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045)),
    rgba(4, 12, 24, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.laptop-frame::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -22px;
  height: 22px;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
    rgba(8, 17, 33, 0.94);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 0;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.34));
}

.laptop-topbar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) {
  background: #ff5f57;
}

.window-dots span:nth-child(2) {
  background: #ffbd2e;
}

.window-dots span:nth-child(3) {
  background: #28c840;
}

.laptop-topbar small {
  color: rgba(255,255,255,0.52);
  font-size: 0.74rem;
  font-weight: 700;
}

.laptop-screen {
  position: relative;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.laptop-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.14), transparent 30%),
    linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.18));
  pointer-events: none;
}

.phone-frame {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 32px;
  width: 178px;
  padding: 12px 10px 14px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05)),
    rgba(3, 8, 18, 0.96);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.55),
    0 0 42px rgba(0,170,255,0.20);
  transform: rotate(4deg);
}

.phone-speaker {
  width: 46px;
  height: 5px;
  border-radius: 999px;
  margin: 0 auto 10px;
  background: rgba(255,255,255,0.25);
}

.phone-screen {
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.phone-label {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--secondary), #00c8ff);
  box-shadow: 0 14px 30px rgba(0,170,255,0.28);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-badge {
  position: absolute;
  z-index: 5;
  padding: 13px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.055)),
    rgba(4, 12, 24, 0.82);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.35),
    0 0 28px rgba(0,170,255,0.12);
  backdrop-filter: blur(16px);
}

.showcase-badge span {
  display: block;
  color: var(--primary-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.showcase-badge strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.badge-sales {
  left: 22px;
  top: 36px;
}

.badge-stock {
  left: 62px;
  bottom: 38px;
}

/* ---------- GENERAL SECTIONS ---------- */
.section {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 24px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section h2,
.quote-section h2,
.cta h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.section p {
  color: var(--text-muted);
  line-height: 1.65;
}

.section-subtitle {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

/* ---------- BUSINESS STRIP ---------- */
.business-strip {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 95px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 50px;
}

.business-content h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.business-content p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.business-marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 170, 255, 0.13), rgba(0, 91, 234, 0.10)),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.business-marquee::before,
.business-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.business-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(5,7,13,0.96), transparent);
}

.business-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(5,7,13,0.96), transparent);
}

.business-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: businessScroll 28s linear infinite;
}

.business-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.business-track span:hover {
  border-color: rgba(0, 170, 255, 0.42);
  background: rgba(0, 170, 255, 0.12);
}

/* ---------- PROBLEM ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.problem-grid article {
  min-height: 250px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border-soft);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.problem-grid article:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 170, 255, 0.38);
}

.problem-grid h3 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.problem-grid p {
  font-size: 1rem;
}

/* ---------- SOLUTION ---------- */
.solution {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.solution-content p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 1.12rem;
}

.solution-list {
  display: grid;
  gap: 18px;
}

.solution-list div {
  position: relative;
  padding: 28px 28px 28px 88px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-soft);
}

.solution-list span {
  position: absolute;
  left: 28px;
  top: 28px;
  color: var(--primary);
  font-weight: 950;
}

.solution-list strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

/* ---------- MODULES ---------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.module-card {
  min-height: 290px;
  padding: 30px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.module-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.12);
  filter: blur(18px);
  transition: transform 0.35s ease;
}

.module-card:hover {
  transform: translateY(-9px);
  border-color: rgba(0, 170, 255, 0.35);
  box-shadow: 0 24px 70px rgba(0,0,0,0.30);
}

.module-card:hover::before {
  transform: scale(1.35);
}

.module-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
}

.module-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.65rem;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.module-card p {
  position: relative;
  z-index: 2;
}

/* ---------- PLANS ---------- */
.plans {
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.11);
  filter: blur(22px);
}

.plan-card:hover {
  transform: translateY(-9px);
  border-color: rgba(0, 170, 255, 0.38);
  box-shadow: var(--shadow-card);
}

.plan-card.featured {
  border-color: rgba(0, 170, 255, 0.60);
  box-shadow:
    0 0 60px rgba(0, 170, 255, 0.18),
    0 28px 80px rgba(0,0,0,0.38);
}

.plan-card.featured::before {
  background: rgba(0, 170, 255, 0.20);
}

.plan-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--primary-light);
  background: rgba(0, 170, 255, 0.12);
  border: 1px solid rgba(0, 170, 255, 0.26);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.75rem;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

.plan-description {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  min-height: 96px;
}

.plan-price {
  position: relative;
  z-index: 2;
  margin: 26px 0;
  display: flex;
  align-items: end;
  gap: 7px;
  flex-wrap: wrap;
}

.plan-price span,
.plan-price small {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.plan-price strong {
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.plan-price.custom {
  align-items: center;
  min-height: 48px;
}

.plan-price.custom strong {
  font-size: 1.8rem;
}

.plan-features {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  margin-bottom: 30px;
}

.plan-features li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 950;
}

.plan-card .btn {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
}

/* ---------- BENEFITS ---------- */
.benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefits-list div {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border-soft);
}

.benefits-list strong {
  display: block;
  font-size: 1.22rem;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}

/* ---------- FAQ ---------- */
.faq {
  position: relative;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.faq-highlight {
  position: sticky;
  top: 120px;
  padding: 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(0, 91, 234, 0.10)),
    rgba(255,255,255,0.055);
  border: 1px solid rgba(0, 170, 255, 0.22);
  box-shadow:
    0 0 70px rgba(0, 170, 255, 0.18),
    0 28px 80px rgba(0,0,0,0.28);
  overflow: hidden;
}

.faq-highlight::before {
  content: "?";
  position: absolute;
  right: 26px;
  bottom: -42px;
  font-size: 13rem;
  line-height: 1;
  font-weight: 950;
  color: rgba(255,255,255,0.045);
  pointer-events: none;
}

.faq-highlight h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

.faq-highlight p {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.faq-highlight .btn {
  position: relative;
  z-index: 2;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.11);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(0, 170, 255, 0.32);
}

.faq-item.active {
  border-color: rgba(0, 170, 255, 0.48);
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
  background:
    linear-gradient(180deg, rgba(0, 170, 255, 0.10), rgba(255,255,255,0.035));
}

.faq-question {
  width: 100%;
  min-height: 74px;
  padding: 0 26px;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.faq-question strong {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 170, 255, 0.16);
  border: 1px solid rgba(0, 170, 255, 0.24);
  font-size: 1.45rem;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.faq-item.active .faq-question strong {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--secondary), #00c8ff);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.active .faq-answer {
  max-height: 360px;
}

.faq-answer p {
  padding: 0 26px 26px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- QUOTE ---------- */
.quote-section {
  width: 100%;
  padding: 130px 24px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(0, 170, 255, 0.17), transparent 35%),
    rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.quote-section h2 {
  max-width: 980px;
  margin: 0 auto;
}

/* ---------- CTA ---------- */
.cta {
  padding-bottom: 120px;
}

.cta-box {
  padding: 70px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 170, 255, 0.18), rgba(0, 91, 234, 0.12)),
    rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 70px rgba(0, 170, 255, 0.24);
  text-align: center;
}

.cta-box .eyebrow {
  justify-content: center;
}

.cta-box p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 1.12rem;
}

.cta-box .hero-actions {
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 90px 24px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 170, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(0, 91, 234, 0.10), transparent 30%),
    rgba(3, 7, 18, 0.96);
  border-top: 1px solid rgba(0, 170, 255, 0.16);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 170, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  opacity: 0.7;
}

.footer-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
  gap: 44px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

.footer-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 170, 255, 0.35));
}

.footer-brand p {
  max-width: 390px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: rgba(0, 170, 255, 0.14);
  border-color: rgba(0, 170, 255, 0.34);
  box-shadow: 0 12px 30px rgba(0, 170, 255, 0.16);
}

.footer-column h3 {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.footer-column ul {
  display: grid;
  gap: 13px;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-contact li {
  display: grid;
  gap: 4px;
}

.footer-contact span {
  color: var(--primary-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 70px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@keyframes businessScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1120px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-description {
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .hero-card,
  .product-showcase {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-frame {
    right: 20px;
  }

  .solution,
  .benefits,
  .faq-layout,
  .business-strip {
    grid-template-columns: 1fr;
  }

  .business-strip {
    gap: 30px;
  }

  .modules-grid,
  .problem-grid,
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-highlight {
    position: relative;
    top: auto;
    width: 100%;
  }

  .footer-content {
    gap: 42px 34px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .header {
    padding: 12px 16px;
  }

  .navbar {
    width: 100%;
  }

  .logo-navbar,
  .logo-img img {
    height: 42px;
  }

  .nav-login {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 120;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045)),
      rgba(6, 17, 31, 0.98);
    border: 1px solid rgba(0, 170, 255, 0.22);
    box-shadow:
      0 24px 80px rgba(0, 0, 0, 0.45),
      0 0 40px rgba(0, 170, 255, 0.12);
    backdrop-filter: blur(18px);
    z-index: 110;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a:hover {
    color: var(--primary-light);
    background: rgba(0, 170, 255, 0.12);
    border-color: rgba(0, 170, 255, 0.20);
  }

  .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding: 120px 18px 70px;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
    letter-spacing: -0.08em;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-showcase {
    min-height: auto;
    padding: 22px 16px 32px;
    border-radius: 28px;
    overflow: hidden;
    animation: none;
  }

  .laptop-frame {
    width: 100%;
    margin: 34px auto 0;
    padding: 10px;
    border-radius: 22px;
  }

  .laptop-frame::after {
    display: none;
  }

  .laptop-topbar {
    height: 32px;
    padding: 0 8px;
  }

  .laptop-topbar small {
    font-size: 0.64rem;
  }

  .window-dots span {
    width: 9px;
    height: 9px;
  }

  .laptop-screen {
    height: 260px;
    border-radius: 16px;
  }

  .phone-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: 62%;
    max-width: 190px;
    margin: 24px 0 0 auto;
    transform: rotate(0deg);
    border-radius: 28px;
  }

  .phone-screen {
    height: 260px;
    border-radius: 22px;
  }

  .phone-label {
    bottom: -14px;
    font-size: 0.66rem;
  }

  .showcase-badge {
    padding: 11px 13px;
    border-radius: 15px;
  }

  .showcase-badge strong {
    font-size: 0.82rem;
  }

  .badge-sales {
    left: 16px;
    top: 18px;
  }

  .badge-stock {
    left: 16px;
    bottom: 24px;
  }

  .section {
    padding: 80px 18px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section h2,
  .quote-section h2,
  .cta h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .business-strip {
    padding: 35px 18px 70px;
    gap: 28px;
  }

  .business-content h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .business-content p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .business-marquee {
    width: 100%;
    padding: 20px 0;
    border-radius: 24px;
  }

  .business-marquee::before,
  .business-marquee::after {
    width: 54px;
  }

  .business-track {
    gap: 10px;
    animation-duration: 20s;
  }

  .business-track span {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .problem-grid,
  .modules-grid,
  .plans-grid,
  .benefits-list,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .module-card {
    min-height: auto;
  }

  .solution-list div {
    padding: 26px;
  }

  .solution-list span {
    position: static;
    display: block;
    margin-bottom: 18px;
  }

  .plan-card {
    width: 100%;
    min-width: 0;
    padding: 26px 22px;
  }

  .plan-price strong {
    font-size: 2rem;
  }

  .plan-card h3 {
    font-size: 1.55rem;
  }

  .plan-features li {
    font-size: 0.93rem;
  }

  .benefits {
    gap: 42px;
  }

  .faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .faq .section-heading {
    margin-bottom: 30px;
  }

  .faq .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .faq .section-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: 18px;
  }

  .faq-layout {
    gap: 22px;
  }

  .faq-highlight {
    padding: 28px 22px;
    border-radius: 24px;
    box-shadow:
      0 0 42px rgba(0, 170, 255, 0.14),
      0 18px 45px rgba(0, 0, 0, 0.24);
  }

  .faq-highlight::before {
    font-size: 8rem;
    right: 18px;
    bottom: -28px;
  }

  .faq-highlight h3 {
    font-size: 1.55rem;
    line-height: 1.12;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
  }

  .faq-highlight p {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .faq-highlight .btn {
    width: 100%;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    min-height: auto;
    padding: 18px;
    align-items: center;
  }

  .faq-question span {
    font-size: 0.98rem;
    line-height: 1.35;
    letter-spacing: -0.025em;
  }

  .faq-question strong {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 1.25rem;
  }

  .faq-answer p {
    padding: 0 18px 20px;
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .quote-section {
    padding: 90px 18px;
  }

  .cta-box {
    padding: 44px 24px;
  }

  .footer {
    padding: 70px 18px 0;
  }

  .footer-content {
    gap: 34px;
  }

  .footer-logo img {
    height: 48px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .footer-column h3 {
    margin-bottom: 16px;
  }

  .footer-column ul {
    gap: 11px;
  }

  .footer-bottom {
    margin-top: 48px;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom p {
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 1.28rem;
  }

  .logo-navbar,
  .logo-img img {
    height: 38px;
  }

  .btn-outline {
    padding: 0 14px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .menu-toggle span {
    left: 11px;
    width: 20px;
  }

  .nav-links {
    top: 76px;
    left: 12px;
    right: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .nav-links a {
    padding: 13px 14px;
    font-size: 0.96rem;
  }

  .mobile-menu-btn {
    min-height: 46px;
  }

  .product-showcase {
    padding: 20px 14px 30px;
  }

  .laptop-screen {
    height: 230px;
  }

  .phone-frame {
    width: 68%;
    max-width: 178px;
  }

  .phone-screen {
    height: 240px;
  }

  .badge-stock {
    display: none;
  }

  .business-strip {
    padding: 28px 16px 60px;
    gap: 24px;
  }

  .business-content h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .business-content p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .business-marquee {
    border-radius: 20px;
  }

  .business-track span {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .faq-highlight {
    padding: 24px 18px;
  }

  .faq-highlight h3 {
    font-size: 1.38rem;
  }

  .faq-question {
    padding: 16px;
    gap: 12px;
  }

  .faq-question span {
    font-size: 0.94rem;
  }

  .faq-answer p {
    padding: 0 16px 18px;
  }
}

/* ==============================
   FIX BOTÓN INGRESAR MENÚ MÓVIL
================================= */

@media (max-width: 760px) {
  .nav-links a.mobile-menu-btn,
  .mobile-menu-btn {
    justify-content: center !important;
    min-height: 48px !important;
    margin-top: 8px !important;

    color: #ffffff !important;
    background: linear-gradient(135deg, #0077ff, #00c8ff) !important;
    border: none !important;

    font-weight: 900 !important;
    box-shadow: 0 14px 36px rgba(0, 170, 255, 0.25) !important;
  }

  .nav-links a.mobile-menu-btn:hover,
  .mobile-menu-btn:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #006dff, #00d4ff) !important;
    box-shadow: 0 18px 44px rgba(0, 170, 255, 0.34) !important;
  }
}

/* ==============================
   CASOS DE ÉXITO
================================= */

.success-cases {
  position: relative;
}

.success-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.success-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.success-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.12);
  filter: blur(24px);
  pointer-events: none;
}

.success-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 170, 255, 0.36);
  box-shadow: 0 26px 76px rgba(0,0,0,0.32);
}

.success-card.featured-case {
  grid-row: span 2;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border-color: rgba(0, 170, 255, 0.28);
}

.success-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--primary-light);
  background: rgba(0, 170, 255, 0.12);
  border: 1px solid rgba(0, 170, 255, 0.26);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-card h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.success-card p {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.success-results {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: auto;
  padding-top: 34px;
}

.success-results div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.success-results strong {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.success-results span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.success-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  margin-top: auto;
  padding-top: 28px;
}

.success-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.success-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 950;
}

.success-quote {
  margin-top: 26px;
  padding: 34px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 170, 255, 0.13), rgba(0, 91, 234, 0.08)),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(0, 170, 255, 0.18);
}

.success-quote p {
  max-width: 820px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 900;
}

/* ---------- RESPONSIVE CASOS ---------- */

@media (max-width: 1024px) {
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-card.featured-case {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .success-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .success-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .success-results {
    grid-template-columns: 1fr;
    padding-top: 26px;
  }

  .success-quote {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .success-quote p {
    font-size: clamp(1.45rem, 8vw, 2.15rem);
  }
}

/* ==============================
   CASOS REALES SUPYM
================================= */

.featured-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.featured-real-case {
  min-height: 100%;
}

.real-case-card {
  gap: 0;
}

.case-logo-wrap {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 24px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.28),
    0 0 30px rgba(0,170,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.case-logo-large {
  width: 150px;
  height: 110px;
  border-radius: 28px;
}

.case-modules {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.case-modules span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 170, 255, 0.10);
  border: 1px solid rgba(0, 170, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 850;
}

.featured-real-case h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
}

/* ---------- MINI CASOS ---------- */

.mini-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.mini-case-card {
  padding: 22px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.11);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mini-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 170, 255, 0.32);
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
}

.mini-case-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.mini-logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  margin-bottom: 0;
  border-radius: 18px;
}

.mini-case-top h4 {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: -0.035em;
  margin-bottom: 4px;
}

.mini-case-top p {
  color: var(--primary-light);
  font-size: 0.82rem;
  line-height: 1.3;
}

.mini-case-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.mini-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.72rem;
  font-weight: 800;
}

/* ==============================
   PEDIDOS WEB SHOWCASE
================================= */

.web-orders-showcase {
  padding-top: 40px;
}

.web-orders-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.web-orders-text h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.web-orders-text p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.web-orders-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.web-orders-points div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.web-orders-points strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  letter-spacing: -0.035em;
  margin-bottom: 6px;
}

.web-orders-points span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.web-orders-image-card {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 25% 20%, rgba(0, 170, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow:
    0 0 80px rgba(0, 170, 255, 0.18),
    0 34px 110px rgba(0,0,0,0.42);
  overflow: hidden;
}

.web-orders-image-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(0,170,255,0.14);
  filter: blur(42px);
}

.orders-card-top {
  position: relative;
  z-index: 2;
  height: 38px;
  padding: 0 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.orders-card-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.orders-card-top span:nth-child(1) {
  background: #ff5f57;
}

.orders-card-top span:nth-child(2) {
  background: #ffbd2e;
}

.orders-card-top span:nth-child(3) {
  background: #28c840;
}

.orders-card-top small {
  margin-left: auto;
  color: rgba(255,255,255,0.58);
  font-size: 0.76rem;
  font-weight: 750;
}

.web-orders-image {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 60px rgba(0,0,0,0.32);
}

.web-orders-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.web-orders-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(to bottom, transparent 75%, rgba(0,0,0,0.18));
  pointer-events: none;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1200px) {
  .featured-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .featured-cases-grid,
  .web-orders-layout {
    grid-template-columns: 1fr;
  }

  .mini-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-orders-layout {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .case-logo-wrap {
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }

  .case-logo-large {
    width: 128px;
    height: 94px;
  }

  .case-modules {
    gap: 8px;
  }

  .case-modules span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .mini-cases-grid {
    grid-template-columns: 1fr;
  }

  .mini-case-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .mini-logo {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }

  .web-orders-showcase {
    padding-top: 20px;
  }

  .web-orders-layout {
    gap: 34px;
  }

  .web-orders-text h2 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .web-orders-text p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .web-orders-image-card {
    padding: 12px;
    border-radius: 26px;
  }

  .orders-card-top {
    height: 34px;
  }

  .orders-card-top small {
    display: none;
  }

  .web-orders-image {
    border-radius: 18px;
  }
}
