/* ==========================================================================
   VELTRIX STUDIO — 100% PERFECT RESPONSIVE MOBILE HERO & PAGE LAYOUT
   ========================================================================== */

:root {
  --bg: #191151;
  --ink: #1e1758;
  --muted: #8c8ba0;
  --paper: #fbfbfd;
  --white: #ffffff;
  --soft: #f5f4f8;
  --violet: #6f2cff;
  --violet-gradient: linear-gradient(135deg, #8c55ff 0%, #5b13f5 100%);
  --text-gradient: linear-gradient(135deg, #7e43ff 0%, #5c16f1 100%);
  --line: #e7e5ec;
  --ease: cubic-bezier(.22, .8, .22, 1);
  --shadow-sm: 0 8px 24px rgba(30, 23, 88, 0.06);
  --shadow-md: 0 16px 38px rgba(30, 23, 88, 0.1);
  --shadow-lg: 0 24px 50px rgba(30, 23, 88, 0.16);
  --shadow-glow: 0 0 45px rgba(111, 44, 255, 0.42);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  position: relative;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ==========================================================================
   LAYOUT SYSTEM — 100% FULL BLEED WEB RESPONSIVE
   ========================================================================== */
.section-full {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(231, 229, 236, 0.7);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 max(16px, 4vw);
}

/* Page Reading Progress Bar */
.page-progress {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #7a3cff, #d9caff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

/* ==========================================================================
   FLOATING NAVBAR HEADER (RESPONSIVE)
   ========================================================================== */
.site-header {
  position: fixed;
  z-index: 900;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, 94vw);
  height: 66px;
  padding: 8px 12px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 18px 45px rgba(8, 0, 45, 0.15);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(8, 0, 45, 0.2);
}

.brand {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: -0.03em;
}

.brand-mark {
  margin-right: 5px;
  color: var(--violet);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.main-nav a, .outline-btn {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  transition: all 0.25s ease;
}

.main-nav a:hover {
  background: #eeeaf8;
  color: var(--violet);
}

.outline-btn {
  border: 1px solid #21185b;
  background: transparent;
}

.outline-btn:hover {
  background: var(--ink);
  color: #fff;
}

/* Mobile Hamburger */
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   1. HERO SECTION — DESKTOP VIEW
   ========================================================================== */
.hero-section {
  background: var(--white);
  height: 100vh;
  min-height: 720px;
  max-height: 1080px;
  padding: 110px 0 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rings {
  position: absolute;
  inset: -35%;
  background: repeating-radial-gradient(circle at 50% 47%, transparent 0 92px, rgba(30, 23, 88, 0.08) 93px 94px);
  animation: ringDrift 20s linear infinite;
  pointer-events: none;
}

.hero-glow-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-1 {
  width: 450px;
  height: 450px;
  top: -10%;
  left: 20%;
  background: radial-gradient(circle, rgba(111, 44, 255, 0.3), transparent 70%);
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  right: 10%;
  background: radial-gradient(circle, rgba(91, 19, 245, 0.25), transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: end;
  row-gap: 20px;
  column-gap: 20px;
  height: 100%;
  min-height: 580px;
  position: relative;
}

.hero-top-title {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 2;
  position: relative;
}

.hero-top-title h1 {
  margin: 0;
  font-size: clamp(60px, 7.5vw, 116px);
  line-height: 0.88;
  letter-spacing: -.045em;
  font-weight: 800;
  width: 100%;
  display: block;
  text-align: left;
}

.title-line-1 {
  display: block;
  margin-left: 8%;
  background: linear-gradient(135deg, #100836 0%, #291b70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(16, 8, 54, 0.12));
}

.title-line-2 {
  display: block;
  margin-left: 48%;
  background: linear-gradient(135deg, #7c3cff 0%, #5611f5 60%, #9851ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 25px rgba(111, 44, 255, 0.3));
}

/* Center Hand Phone Visual — Centered at bottom center on Desktop */
.hero-center-visual {
  position: absolute;
  bottom: 0;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
  width: 100%;
}

.hero-center-visual.reveal.in-view {
  opacity: 1;
  transform: translateX(-50%) !important;
}

.hero-phone-wrap {
  position: relative;
  width: 380px;
  max-width: 86%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: auto;
}

.hero-phone {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 -10px 32px rgba(25, 17, 81, 0.16));
  animation: floatPhoneFromBottom 5s ease-in-out infinite;
}

.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 44, 255, 0.22), transparent 68%);
  filter: blur(20px);
  animation: pulseGlow 3s ease-in-out infinite;
}

.float-card {
  position: absolute;
  z-index: 4;
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(30, 23, 88, 0.12);
  display: grid;
  place-items: center;
  font-size: 30px;
  animation: floatCard 4s ease-in-out infinite;
  pointer-events: auto;
}

.float-logo {
  left: -80px;
  bottom: 42%;
  color: var(--violet);
}

.float-avatar {
  right: -80px;
  bottom: 45%;
  overflow: hidden;
}

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

/* Bottom Grid Elements */
.hero-bottom-left {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  z-index: 5;
  max-width: 340px;
}

.hero-tagline {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.12;
  letter-spacing: -.05em;
  color: var(--ink);
  font-weight: 700;
  margin: 0;
}

.hero-bottom-right {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  text-align: left;
  z-index: 5;
  max-width: 380px;
}

.hero-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px 0;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

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

.primary-btn:hover {
  background: var(--violet);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.secondary-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}

.secondary-btn:hover {
  background: #eeeaf8;
  transform: translateY(-3px);
}

/* ==========================================================================
   2. PROCESO DE TRABAJO
   ========================================================================== */
.how-section {
  padding: 100px 0;
  background: var(--paper);
}

.how-title {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px;
  background: #fff;
}

.how-title h2 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.07em;
  margin: 0;
}

.mini-logo {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  font-size: 35px;
  transform: rotate(-12deg);
  box-shadow: 0 16px 38px rgba(30, 23, 88, 0.1);
  background: #fff;
  color: var(--violet);
}

.works-pill {
  border: 0;
  border-radius: 32px;
  padding: 22px 38px;
  background: var(--violet-gradient);
  font: 500 clamp(38px, 4.5vw, 62px)/1 Manrope;
  color: #fff;
  letter-spacing: -.07em;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-glow);
  animation: worksPulse 3s ease-in-out infinite;
  cursor: pointer;
}

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

.step {
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.step:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-md);
  border-color: rgba(111, 44, 255, 0.3);
}

.step b {
  color: var(--violet);
  font-size: 16px;
}

.step h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 12px 0;
}

.step p, .section-heading p, .shop-info p, .feature-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

/* ==========================================================================
   3. SERVICIOS & BENTO GRID
   ========================================================================== */
.benefits-section {
  padding: 110px 0;
  background: #ffffff;
}

.section-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--violet);
  background: rgba(111, 44, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}

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

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.06em;
  font-weight: 500;
  margin-bottom: 16px;
}

.muted-span, .shop-info h3 span, .spending-info h3 span {
  color: #c8c6d1;
}

.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-lead {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.metric-card, .shop-card, .feature-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.metric-card:hover, .shop-card:hover, .feature-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-md);
  border-color: rgba(111, 44, 255, 0.3);
}

.metric-card {
  padding: 34px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.metric-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
}

.metric-card strong {
  font-size: clamp(66px, 6vw, 84px);
  color: var(--violet);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: 1;
}

.metric-card sup {
  font-size: .45em;
}

.shop-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  padding: 36px 0 0 36px;
  min-height: 340px;
  align-items: center;
}

.shop-info h3 {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 14px 0;
}

.shop-visual {
  align-self: flex-end;
}

.shop-visual img {
  width: 100%;
  transform: translateY(12px);
  transition: transform 0.4s var(--ease);
}

.shop-card:hover .shop-visual img {
  transform: translateY(0);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 20px;
}

.feature-card {
  min-height: 330px;
  padding: 34px;
}

.rewards, .spending {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.rewards img {
  width: 100%;
  filter: drop-shadow(0 14px 24px rgba(30, 23, 88, 0.12));
}

.logo-row {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.logo-row span {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  background: #fff;
}

.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 15px 38px rgba(30, 23, 88, 0.1);
  margin-bottom: 20px;
}

.at-icon {
  font-size: 42px;
  color: #16c77b;
  font-weight: 700;
}

.centered h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  line-height: 1.15;
}

.centered h3 small {
  font-size: 14px;
  color: var(--muted);
}

.bar-chart-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 200px;
  width: 100%;
}

.bar-chart {
  align-self: end;
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  justify-content: flex-end;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.bar-col i {
  width: 100%;
  max-width: 32px;
  height: 0;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(#7c3cff, #5b17ee);
  font-size: 9px;
  color: #fff;
  text-align: center;
  padding-top: 7px;
  font-style: normal;
  transition: height 1.2s var(--ease);
  position: relative;
}

.bar-col i span {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.bar-col:hover i span {
  opacity: 1;
}

.spending.in-view .bar-col i, .feature-card.in-view .bar-col i {
  height: var(--h);
}

.bar-col:nth-child(2) i, .bar-col:nth-child(5) i { background: #ff8445; }
.bar-col:nth-child(3) i { background: #3a9fff; }
.bar-col:nth-child(6) i { background: #39ca89; }

.bar-col small {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}

.chart-summary-chip {
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   4. PLANES & PRECIOS SECTION
   ========================================================================== */
.pricing-section {
  padding: 110px 0;
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-md);
  border-color: rgba(111, 44, 255, 0.3);
}

.pricing-card.popular {
  border-color: var(--violet);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
  overflow: visible !important;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet-gradient);
  color: #fff;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 14px rgba(111, 44, 255, 0.4);
  z-index: 10;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  align-items: stretch;
  padding-top: 15px;
}

.spotlight-card {
  position: relative;
}

/* ==========================================================================
   3. BEFORE / AFTER COMPARISON SECTION
   ========================================================================== */
.comparison-section {
  padding: 90px 0;
  background: #fbfbfd;
}

.comparison-container {
  margin-top: 36px;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-card-box {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 7, 35, 0.22), 0 0 35px rgba(111, 44, 255, 0.14);
  border: 1px solid var(--line);
  background: #0e092b;
  min-height: 420px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.comparison-card-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 12, 48, 0.35) 0%, rgba(8, 5, 26, 0.45) 100%);
  z-index: 2;
  pointer-events: none;
}

.comparison-card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(111, 44, 255, 0.25);
}

.comp-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
  opacity: 0.78;
  filter: blur(2px) brightness(0.8) contrast(1.05);
  transform: scale(1.02);
}

.comp-overlay-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  min-height: 420px;
  padding: 40px 44px;
  box-sizing: border-box;
  align-items: stretch;
}

.comp-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.comp-side-left {
  text-align: left;
}

.comp-side-right {
  text-align: right;
  align-items: flex-end;
}

.comp-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.comp-badge-before {
  background: rgba(255, 255, 255, 0.12);
  color: #ff9b9b;
  border: 1px solid rgba(255, 155, 155, 0.3);
  backdrop-filter: blur(8px);
}

.comp-badge-after {
  background: var(--violet-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(111, 44, 255, 0.4);
}

.comp-stat-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}

.stat-red {
  background: rgba(255, 87, 87, 0.22);
  color: #ff6e6e;
  border: 1px solid rgba(255, 110, 110, 0.3);
}

.stat-green {
  background: rgba(72, 219, 140, 0.22);
  color: #48db8c;
  border: 1px solid rgba(72, 219, 140, 0.3);
}

.comp-content h3 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.comp-content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #e2deff;
  margin: 0;
  max-width: 440px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.comp-center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  z-index: 3;
}

.divider-line {
  width: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.divider-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  margin: 12px 0;
  box-shadow: 0 6px 24px rgba(10, 7, 35, 0.5), 0 0 16px rgba(140, 85, 255, 0.6);
  border: 2px solid rgba(140, 85, 255, 0.4);
  user-select: none;
}

@media (max-width: 850px) {
  .comp-overlay-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
    min-height: auto;
  }

  .comp-side-right {
    text-align: left;
    align-items: flex-start;
  }

  .comp-center-divider {
    display: none;
  }

  .comp-content p {
    max-width: 100%;
  }
}

.plan-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--violet);
  display: block;
  margin-bottom: 12px;
}

.plan-price strong {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.plan-price sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 4px;
}

.plan-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13.5px;
  color: var(--ink);
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all 0.3s ease;
}

.plan-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.primary-plan-btn {
  background: var(--ink);
  color: #fff;
  border: none;
}

.primary-plan-btn:hover {
  background: var(--violet);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(111, 44, 255, 0.35);
}

/* ==========================================================================
   5. DIRECTOR CREATIVO
   ========================================================================== */
.section-full {
  width: 100%;
  position: relative;
  contain: content;
}

/* ==========================================================================
   5. SOBRE NOSOTROS (ABOUT US)
   ========================================================================== */
.guide-section {
  padding: 100px 0;
  background: var(--white);
}

.about-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--violet);
  background: var(--soft);
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(111, 44, 255, 0.2);
  margin-bottom: 16px;
}

.about-header h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}

.about-lead-text {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Mission & Vision Split Cards */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1140px;
  margin-bottom: 40px;
}

.about-split-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 32px;
  text-align: left;
  box-shadow: 0 12px 32px rgba(30, 23, 88, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-split-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 44, 255, 0.3);
  box-shadow: 0 20px 40px rgba(111, 44, 255, 0.1);
}

.about-split-card.highlight-card {
  background: linear-gradient(135deg, #1b1152 0%, #0a0628 100%);
  color: #fff;
  border: none;
}

.about-split-card.highlight-card p {
  color: rgba(255, 255, 255, 0.8);
}

.about-split-card.highlight-card h3 {
  color: #fff;
}

.split-card-header {
  margin-bottom: 14px;
}

.split-card-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--violet);
  background: var(--soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.glow-badge {
  color: #fff;
  background: var(--violet-gradient);
  box-shadow: var(--shadow-glow);
}

.about-split-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}

.about-split-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Metric Counter Bar */
.about-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1140px;
  background: #fbf9ff;
  border: 1px solid #efe8fc;
  border-radius: 24px;
  padding: 28px 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(111, 44, 255, 0.05);
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stat-box small {
  font-size: 20px;
  font-weight: 800;
  color: var(--violet);
}

.stat-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(111, 44, 255, 0.15);
}

@media (max-width: 992px) {
  .about-split-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-bar {
    flex-direction: column;
    gap: 20px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1140px;
  margin-bottom: 30px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 23, 88, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 44, 255, 0.3);
  box-shadow: 0 16px 40px rgba(111, 44, 255, 0.12);
}

.pillar-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.pillar-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.guide-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 40px 0;
}

.guide-title-box {
  margin-bottom: 48px;
}

.guide-title-box h2 {
  font-size: clamp(48px, 6vw, 76px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin: 0 0 20px 0;
}

.personal-pill {
  display: inline-block;
  background: var(--violet-gradient);
  color: #fff;
  padding: 8px 28px 14px;
  border-radius: 28px;
  box-shadow: var(--shadow-glow);
  transform: rotate(-3deg);
}

.guide-subtext {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 2 Team Member Cards Row Below Title */
.team-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 780px;
  margin: 20px auto 0;
  z-index: 5;
}

.team-member-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  position: relative;
}

.team-member-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 48px rgba(111, 44, 255, 0.16);
  border-color: rgba(111, 44, 255, 0.35);
}

.member-avatar-wrapper {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 22px;
}

.member-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(30, 23, 88, 0.14);
}

.member-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet-gradient);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(111, 44, 255, 0.4);
}

.member-body h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.member-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--violet);
  display: block;
  margin-bottom: 12px;
}

.member-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.member-tags span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  background: var(--soft);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

@media (max-width: 992px) {
  .team-cards-row {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.guide-icon {
  display: none !important;
}

.icon-a {
  right: 18%;
  top: 20%;
  color: var(--violet);
}

.icon-b {
  right: 24%;
  bottom: 18%;
  color: #ff7c2b;
}

.guide-orbit-wrapper {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.guide-orbit {
  width: 420px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(111, 44, 255, 0.22), transparent 65%);
  filter: blur(20px);
  animation: pulseGlow 3.5s ease-in-out infinite;
}

/* ==========================================================================
   6. DOWNLOAD CTA SECTION
   ========================================================================== */
.download-section {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.download-container {
  max-width: 820px;
}

.download-lead {
  max-width: 630px;
  margin: 0 auto 36px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.download-hr {
  width: 90px;
  height: 2px;
  background: var(--line);
  margin: 0 auto 40px;
}

.download-section h2 {
  margin: 0 0 36px 0;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.accent-text {
  color: var(--violet);
}

.center-store-row {
  justify-content: center;
}

/* ==========================================================================
   7. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--soft);
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -.05em;
  margin: 0;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
}

.testimonial-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform .7s var(--ease);
  will-change: transform;
}

.quote-card {
  flex: 0 0 calc(33.333% - 16px);
  min-height: 310px;
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  font-size: 54px;
  color: #efedf5;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.quote-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  margin: 16px 0;
}

.quote-card footer {
  margin-top: auto;
}

.quote-card footer b {
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.quote-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.slider-status {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.slider-counter {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.slider-bar {
  height: 3px;
  flex: 0 0 320px;
  background: #ddd9e7;
  overflow: hidden;
  border-radius: 2px;
  max-width: 100%;
}

.slider-progress-fill {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--ink);
  transition: transform .7s var(--ease);
}

/* ==========================================================================
   8. FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 40px;
  border-top: none;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-line h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
  margin: 0;
}

.contact-email {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: #a777ff;
  transition: color 0.25s ease;
  word-break: break-word;
}

.contact-email:hover {
  color: #c4a1ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col b {
  color: #fff;
  font-size: 14px;
}

.sub-col-title {
  margin-top: 18px;
}

.footer-col a {
  color: #a39ebc;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
  word-break: break-word;
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  transition: background 0.2s ease;
}

.socials a:hover {
  background: var(--violet);
  color: #fff;
}

.download-app-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  color: #fff;
  gap: 16px;
}

.download-app-card img {
  width: 48%;
  object-fit: cover;
  align-self: end;
}

.app-icons {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.app-icons span {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
}

.app-icons small {
  display: block;
  font-size: 8px;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
}

.footer-brand {
  font-size: clamp(44px, 5.5vw, 76px);
  letter-spacing: -.08em;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.footer-bottom p {
  font-size: 12px;
  color: #a39ebc;
}

.footer-bottom a {
  color: #a39ebc;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ==========================================================================
   REVEAL ANIMATIONS & KEYFRAMES
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes ringDrift {
  to { transform: rotate(360deg) scale(1.04); }
}
@keyframes floatPhoneFromBottom {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.6deg); }
}
@keyframes floatCard {
  50% { transform: translateY(-13px) rotate(3deg); }
}
@keyframes pulseGlow {
  50% { transform: scale(1.15); opacity: .55; }
}
@keyframes worksPulse {
  50% { transform: rotate(-5deg) scale(1.05); }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES (PERFECT MOBILE FLOW)
   ========================================================================== */

/* Hamburger Button & Drawer Styling */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  z-index: 101;
}

.hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-cta {
  display: none !important;
}

/* 1. LARGE DESKTOPS & TABLETS LANDSCAPE (1025px to 1360px) */
@media (max-width: 1360px) {
  .title-line-1 { margin-left: 5%; }
  .title-line-2 { margin-left: 45%; }
  .float-logo { left: -30px; }
  .float-avatar { right: -30px; }
}

/* 2. TABLETS & MOBILE DEVICES (Up to 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 30px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
  }

  .hero-top-title {
    order: 1;
    width: 100%;
    text-align: center !important;
  }

  .hero-top-title h1 {
    text-align: center !important;
    font-size: clamp(36px, 8.5vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    width: 100%;
  }

  .title-line-1, .title-line-2 {
    margin-left: 0 !important;
    text-align: center !important;
    display: block;
    width: 100%;
  }

  .hero-bottom-left {
    order: 2;
    max-width: 100%;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100%;
  }

  .hero-tagline {
    text-align: center !important;
    font-size: clamp(18px, 4.5vw, 22px);
    line-height: 1.25;
    margin: 0 auto;
    width: 100%;
  }

  .hero-bottom-right {
    order: 3;
    max-width: 460px;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100%;
  }

  .hero-desc {
    text-align: center !important;
    margin: 0 auto 18px;
    font-size: 14px;
  }

  .store-row {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
    gap: 10px;
  }

  .store-btn {
    width: 100%;
  }

  .hero-center-visual, .hero-center-visual.reveal.in-view {
    order: 4;
    position: relative !important;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .hero-phone-wrap {
    width: 260px;
    max-width: 85%;
  }

  .hero-phone {
    max-height: 38vh;
    object-position: bottom center;
  }
}

/* 3. TABLETS PORTRAIT & MOBILE LANDSCAPE (Up to 900px) */
@media (max-width: 900px) {
  .site-header {
    height: 56px;
    top: 12px;
    padding: 6px 16px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .reserve {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    padding: 18px;
    gap: 8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    box-shadow: 0 20px 50px rgba(15, 9, 43, 0.18);
    border: 1px solid rgba(111, 44, 255, 0.2);
    z-index: 100;
  }

  .main-nav.open {
    display: flex;
    animation: mobileMenuSlideIn 0.3s var(--ease) forwards;
  }

  .main-nav a {
    padding: 12px 18px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    background: #fbf9ff;
    border: 1px solid #f0eafe;
    border-radius: 14px;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .mobile-nav-cta {
    display: flex !important;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 14.5px;
    font-weight: 700;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .results-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-split-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .about-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 16px;
    border-radius: 20px;
  }

  .stat-divider {
    display: none;
  }

  .team-cards-row {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
  }

  .team-member-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .steps-grid, .feature-lead, .feature-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-card, .rewards, .spending {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .quote-card {
    flex: 0 0 90%;
  }
}

@keyframes mobileMenuSlideIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* 4. SMARTPHONES & MOBILE PORTRAIT (Up to 560px) */
@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 20px);
    padding: 6px 14px;
  }

  .hero-section {
    padding: 78px 0 20px;
  }

  .hero-top-title h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-phone-wrap {
    width: 220px;
  }

  .float-card {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-radius: 12px;
  }

  .float-logo { left: 0px; bottom: 20%; }
  .float-avatar { right: 0px; bottom: 20%; }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .comparison-slider-box {
    border-radius: 20px;
    touch-action: pan-y;
  }

  .how-section, .benefits-section, .pricing-section, .guide-section, .download-section, .testimonials-section, .calculator-section, .faq-section {
    padding: 45px 0;
  }

  .how-title {
    flex-direction: column;
    text-align: center;
    padding: 20px 14px;
  }

  .how-title h2 {
    font-size: 28px;
  }

  .works-pill {
    font-size: 26px;
    padding: 8px 18px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

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

  .pricing-card.popular {
    transform: none;
  }

  .popular-badge {
    font-size: 10px;
    padding: 4px 14px;
  }

  .plan-price strong {
    font-size: 34px;
  }

  .res-price {
    font-size: clamp(36px, 9vw, 50px);
  }

  .guide-title-box h2 {
    font-size: 32px;
  }

  .personal-pill {
    padding: 6px 18px 10px;
    border-radius: 20px;
  }

  .testimonial-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .quote-card {
    flex: 0 0 100%;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .site-footer {
    padding: 40px 0 24px;
  }

  .contact-line h2 {
    font-size: 20px;
  }

  .contact-email {
    font-size: 18px;
  }

  .footer-brand {
    font-size: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* 5. SMALL SMARTPHONES (Up to 380px) */
@media (max-width: 380px) {
  .hero-top-title h1 {
    font-size: 28px;
  }
  .hero-phone-wrap {
    width: 200px;
  }
  .store-btn {
    padding: 12px 16px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .bar-col i {
    height: var(--h);
  }
}

/* ==========================================================================
   LENIS SMOOTH SCROLL & GSAP ANIMATION HELPERS
   ========================================================================== */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Text Reveal Line Masking Wrappers */
.gsap-reveal-line-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.gsap-reveal-line {
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: left center;
  width: 100%;
}

/* GPU Hardware acceleration helper */
.gsap-gpu {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* ==========================================================================
   1. HERO PARTICLE CANVAS
   ========================================================================== */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

/* ==========================================================================
   2. SPOTLIGHT 3D MOUSE TRACKING
   ========================================================================== */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(550px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(140, 85, 255, 0.16), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
}

.spotlight-card:hover::before {
  opacity: 1;
}



.comp-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
}

.comp-badge-before {
  background: rgba(255, 255, 255, 0.1);
  color: #ff9b9b;
  border: 1px solid rgba(255, 155, 155, 0.3);
}

.comp-badge-after {
  background: var(--violet-gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.comp-stat-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.stat-red { background: rgba(255, 87, 87, 0.2); color: #ff6e6e; }
.stat-green { background: rgba(72, 219, 140, 0.2); color: #48db8c; }

.comp-content h3 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.comp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(140, 85, 255, 0.8);
}

.handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   4. CALCULATOR INTERACTIVE WIDGET
   ========================================================================== */
.calculator-section {
  padding: 90px 0;
}

.calculator-card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: 0 16px 40px rgba(30, 23, 88, 0.06);
  margin-top: 36px;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  contain: layout style;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}

.calc-group {
  margin-bottom: 28px;
}

.calc-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-pill {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.calc-pill.active, .calc-pill:hover {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  box-shadow: 0 8px 20px rgba(111, 44, 255, 0.3);
}

.calc-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fcfbfe;
  border: 1px solid #f0edf7;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.calc-check:hover {
  background: #f5f0ff;
  border-color: #d9c8ff;
  transform: translateX(4px);
}

.calc-checkbox {
  accent-color: var(--violet);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.results-box {
  background: linear-gradient(135deg, #1b1252 0%, #0a0628 100%);
  border-radius: 24px;
  padding: 36px;
  color: #fff;
  box-shadow: 0 18px 45px rgba(11, 6, 40, 0.25);
  text-align: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.res-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #bfa5ff;
  margin-bottom: 14px;
}

.res-price {
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.res-price small {
  font-size: 22px;
  color: #bfa5ff;
  vertical-align: super;
}

.res-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}

.green-text {
  color: #48db8c;
}

.calc-cta-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   5. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
}

.faq-list {
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--violet);
  box-shadow: 0 12px 30px rgba(111, 44, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  font-weight: bold;
  color: var(--violet);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  will-change: height;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 850px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Targeting Peru 971249593)
   ========================================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: calc(max(24px, 3vw) + 64px);
  right: max(24px, 3vw);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.35s cubic-bezier(.22, .8, .22, 1),
              box-shadow 0.35s ease;
  text-decoration: none;
}

.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.65), 0 0 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.wa-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(18, 14, 36, 0.92);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(37, 211, 102, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   FLOATING SCROLL-TO-TOP ARROW BUTTON
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: max(24px, 3vw);
  right: max(24px, 3vw);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(30, 23, 88, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(140, 85, 255, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  box-shadow: 0 10px 30px rgba(111, 44, 255, 0.35), 0 0 15px rgba(111, 44, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.22, .8, .22, 1),
              visibility 0.35s cubic-bezier(.22, .8, .22, 1),
              transform 0.35s cubic-bezier(.22, .8, .22, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--violet-gradient);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 35px rgba(111, 44, 255, 0.6), 0 0 25px rgba(140, 85, 255, 0.5);
}

.scroll-top-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.scroll-top-btn svg {
  transition: transform 0.3s ease;
}

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

/* ==========================================================================
   INTERACTIVE POPUP MODAL (CONTACT FORM)
   ========================================================================== */
/* ==========================================================================
   INTERACTIVE POPUP MODAL (CONTACT FORM)
   ========================================================================== */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, 2vh) max(12px, 2vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 7, 34, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: min(86vh, 86dvh);
  margin: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background: linear-gradient(165deg, #211762 0%, #150d42 100%);
  border: 1px solid rgba(140, 85, 255, 0.3);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 25px 65px rgba(10, 7, 35, 0.8), 0 0 50px rgba(111, 44, 255, 0.25);
  transform: scale(0.92) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(140, 85, 255, 0.4) transparent;
}

.contact-modal.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.4);
}

.modal-header {
  margin-bottom: 20px;
  text-align: left;
}

.modal-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(111, 44, 255, 0.2);
  border: 1px solid rgba(140, 85, 255, 0.4);
  color: #c4a3ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.modal-title {
  font-size: clamp(20px, 3.8vw, 26px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 6px;
}

.modal-desc {
  color: #a3a1c0;
  font-size: 13.5px;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #d1cfeb;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
}

.form-group select option {
  background: #1e1758;
  color: var(--white);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8c55ff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 16px rgba(140, 85, 255, 0.35);
}

.budget-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 2px;
}

.budget-pill {
  position: relative;
  cursor: pointer;
}

.budget-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.budget-pill span {
  display: block;
  text-align: center;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c4c2e4;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.budget-pill input:checked + span {
  background: var(--violet-gradient);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(111, 44, 255, 0.4);
}

.budget-pill:hover span {
  border-color: rgba(140, 85, 255, 0.4);
  color: var(--white);
}

.modal-submit-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 14px;
  border: none;
  background: var(--violet-gradient);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 10px 30px rgba(111, 44, 255, 0.45), 0 0 20px rgba(140, 85, 255, 0.25);
  transition: all 0.3s cubic-bezier(.22, .8, .22, 1);
}

.modal-submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 40px rgba(111, 44, 255, 0.65), 0 0 30px rgba(140, 85, 255, 0.4);
  filter: brightness(1.1);
}

.modal-submit-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.modal-success-view {
  text-align: center;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(140, 85, 255, 0.15);
  border: 2px solid rgba(140, 85, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  animation: pulseSuccess 2s infinite ease-in-out;
}

@keyframes pulseSuccess {
  0%, 100% { box-shadow: 0 0 0 0 rgba(140, 85, 255, 0.4); }
  50% { box-shadow: 0 0 0 16px rgba(140, 85, 255, 0); }
}

.modal-success-view h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
}

.modal-success-view p {
  color: #a3a1c0;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 440px;
}

.direct-wa-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  margin-top: 6px;
}

.wa-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.wa-action-btn.wa-primary {
  background: var(--violet-gradient);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(111, 44, 255, 0.45);
}

.wa-action-btn.wa-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 35px rgba(111, 44, 255, 0.65);
}

.wa-action-btn.wa-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(140, 85, 255, 0.5);
  color: #c4a3ff;
}

.wa-action-btn.wa-secondary:hover {
  background: rgba(140, 85, 255, 0.2);
  border-color: #8c55ff;
  color: #ffffff;
}

.modal-close-btn {
  margin-top: 8px;
  padding: 12px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Modal Enhancements & Touch Scroll Fix */
@media (max-width: 640px) {
  .contact-modal {
    padding: 10px 8px;
    align-items: flex-start;
  }
  .modal-dialog {
    padding: 22px 16px 30px 16px;
    border-radius: 20px;
    max-height: calc(100dvh - 20px);
    margin: 10px auto;
  }
  .modal-close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }
  .modal-title {
    font-size: 19px;
    line-height: 1.25;
  }
  .modal-desc {
    font-size: 12.5px;
    line-height: 1.4;
  }
  .modal-header {
    margin-bottom: 14px;
  }
  .modal-form {
    gap: 11px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .form-group label {
    font-size: 12px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents iOS auto-zoom */
    padding: 10px 12px;
    border-radius: 10px;
  }
  .form-group textarea {
    min-height: 58px;
  }
  .budget-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .budget-pill span {
    font-size: 11.5px;
    padding: 8px 4px;
  }
  .modal-submit-btn {
    font-size: 15px;
    padding: 13px 18px;
    margin-top: 6px;
  }
}


