/* ============================================================
   INTEGRATUBE PRO - NEXT-GEN ULTRA LUXURY TECH DESIGN SYSTEM
   Modern Bento Grid · Glassmorphism · Cyber Dark Mode
   ============================================================ */

:root {
  /* Cores Base - Deep Obsidian & Cosmos */
  --bg-base: #030407;
  --bg-surface: #090a10;
  --bg-glass: rgba(14, 17, 26, 0.65);
  --bg-glass-heavy: rgba(11, 13, 20, 0.85);
  --bg-card: rgba(18, 22, 34, 0.55);
  --bg-card-hover: rgba(26, 32, 50, 0.75);

  /* Acentos de Alta Tecnologia */
  --ruby: #ff1e4b;
  --ruby-glow: rgba(255, 30, 75, 0.35);
  --ruby-subtle: rgba(255, 30, 75, 0.12);
  
  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --gold-subtle: rgba(245, 158, 11, 0.1);

  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  --emerald-subtle: rgba(16, 185, 129, 0.12);

  --cyan: #06b6d4;
  --cyan-subtle: rgba(6, 182, 212, 0.12);

  /* Tipografia & Contrastes */
  --text-white: #ffffff;
  --text-100: #f8fafc;
  --text-200: #e2e8f0;
  --text-300: #94a3b8;
  --text-400: #64748b;

  /* Fontes Modernas */
  --font-heading: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Layout */
  --max-w: 1200px;
  --narrow-w: 780px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transições & Sombras */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass-light: 1px solid rgba(255, 255, 255, 0.14);
}

/* ============================================================
   RESET & SETUP
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-200);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

.esconder {
  display: none !important;
}

/* ============================================================
   BACKGROUND AMBIENT SYSTEM
   ============================================================ */
.bg-grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.bg-ambient-glows {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.ambient-glow--top {
  width: 650px;
  height: 650px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 30, 75, 0.18), transparent 70%);
}

.ambient-glow--center {
  width: 500px;
  height: 500px;
  top: 40%;
  right: -100px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
}

.ambient-glow--bottom {
  width: 550px;
  height: 550px;
  bottom: 5%;
  left: -100px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.09), transparent 70%);
}

/* ============================================================
   FLOATING PILL NAVBAR
   ============================================================ */
.navbar-wrap {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 1rem;
  pointer-events: none;
}

.navbar-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(11, 14, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.25rem;
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  pointer-events: auto;
}

.navbar-status-badge__text {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1.3vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-200);
}

.status-indicator__dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald);
  animation: pulseLight 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseLight {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ============================================================
   CONTAINERS & SECTION COMMONS
   ============================================================ */
.site-container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-container-narrow {
  width: min(100% - 2.5rem, var(--narrow-w));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-header-modern {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ruby);
  background: var(--ruby-subtle);
  border: 1px solid rgba(255, 30, 75, 0.3);
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.15rem;
}

.section-tag-modern--gold {
  color: var(--gold);
  background: var(--gold-subtle);
  border-color: rgba(245, 158, 11, 0.3);
}

.section-tag-modern--danger {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.1);
  border-color: rgba(251, 113, 133, 0.25);
}

.section-title-modern {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-white);
  max-width: 32ch;
  text-wrap: balance;
  margin-bottom: 0.9rem;
}

.section-desc-modern {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-300);
  max-width: 40rem;
  line-height: 1.6;
}

/* GRADIENT TEXTS */
.gradient-text-ruby {
  background: linear-gradient(135deg, #ffffff 20%, #ff5277 60%, #ff1e4b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ffffff 20%, #fcd34d 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   HERO SECTION (FOCO TOTAL NO VÍDEO NO TOPO - ABOVE THE FOLD)
   ============================================================ */
.hero-section {
  position: relative;
  z-index: 1;
  padding: clamp(3.6rem, 5vh, 4.2rem) 0 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.hero-container {
  width: min(100% - 2rem, 960px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.25rem, 2.7vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-white);
  max-width: 44ch;
  text-wrap: balance;
  margin-bottom: 0.65rem;
}

.hero-subtitle {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  color: var(--text-200);
  max-width: 44rem;
  line-height: 1.45;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.hero-subtitle strong {
  color: #ffffff;
}

.hero-desc {
  font-size: clamp(0.84rem, 1.4vw, 0.96rem);
  color: var(--text-300);
  max-width: 40rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-desc strong {
  color: var(--text-white);
}

/* VSL CINEMATIC CARD */
.vsl-cinematic-card {
  position: relative;
  width: 100%;
  max-width: min(100%, 860px, calc((100svh - 220px) * 16 / 9));
  margin-inline: auto;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 30, 75, 0.4) 40%, rgba(245, 158, 11, 0.2) 80%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 
    0 25px 70px -15px rgba(0, 0, 0, 0.9),
    0 0 70px -15px var(--ruby-glow);
  margin-bottom: 0.85rem;
}

.vsl-card-border-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 0%, var(--ruby-glow), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.vsl-card-inner {
  background: #06080e;
  border-radius: calc(var(--radius-lg) - 1px);
  overflow: hidden;
}

.vsl-card-header {
  height: 42px;
  background: rgba(16, 20, 30, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot--red { background: #ff5f56; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #27c93f; }

.window-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-300);
  letter-spacing: 0.08em;
}

.window-live-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--ruby);
}

.live-pulse {
  width: 6px;
  height: 6px;
  background: var(--ruby);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ruby);
  animation: pulseLight 1.5s infinite;
}

.vsl-player-frame {
  background: #020305;
}

/* CTA SLOT & DESBLOQUEIO */
.hero-cta-slot {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-locked-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(14, 18, 28, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 30, 75, 0.25);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.cta-locked-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 30, 75, 0.12);
  border: 1px solid rgba(255, 30, 75, 0.3);
  display: grid;
  place-items: center;
  color: var(--ruby);
  flex-shrink: 0;
}

.cta-locked-card__content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.cta-locked-card__content p {
  font-size: 0.8rem;
  color: var(--text-300);
}

.cta-unlocked-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.unlocked-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--emerald);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.unlocked-chip__icon {
  width: 16px;
  height: 16px;
  background: var(--emerald);
  color: #020406;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-300);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.hero-scroll-indicator {
  display: none !important;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-400);
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

body.is-unlocked .hero-scroll-indicator {
  display: flex !important;
}

body.is-unlocked #cta-locked {
  display: none !important;
}

body.is-unlocked #cta-unlocked {
  display: flex !important;
}

body.is-unlocked #conteudo-revelado {
  display: block !important;
}

/* ============================================================
   BOTÃO PRIMÁRIO DE ALTA CONVERSÃO (GLOW SHINE)
   ============================================================ */
.btn-glow-primary {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: min(100%, 540px);
  padding: 1.15rem 2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #ff2a55 0%, #e60f3d 50%, #c40830 100%);
  border: 1px solid rgba(255, 170, 190, 0.45);
  box-shadow: 
    0 14px 40px -5px rgba(255, 30, 75, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 0 5px rgba(255, 30, 75, 0.15);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-glow-primary__text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
}

.btn-glow-primary__sub {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
}

.btn-glow-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-150%);
  animation: shineLoop 3.8s infinite ease-in-out;
}

@keyframes shineLoop {
  0%, 65% { transform: translateX(-150%); }
  85%, 100% { transform: translateX(150%); }
}

.btn-glow-primary:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 
    0 20px 50px -5px rgba(255, 30, 75, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 0 0 7px rgba(255, 30, 75, 0.2);
}

.btn-glow-primary--large {
  padding: 1.35rem 2.4rem;
  width: min(100%, 600px);
}

.btn-glow-primary--large .btn-glow-primary__text {
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
}

/* ============================================================
   BENTO GRID - AUTORIDADE & RESULTADOS
   ============================================================ */
.section-bento-stats {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.bento-grid-authority {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  background: rgba(14, 18, 28, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.bento-card__bg-blur {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 30, 75, 0.15), transparent 70%);
  pointer-events: none;
}

.bento-card__bg-blur--gold {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
}

.bento-card__bg-blur--emerald {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
}

.bento-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.bento-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ruby);
  background: var(--ruby-subtle);
  border: 1px solid rgba(255, 30, 75, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.bento-icon-pill--gold {
  color: var(--gold);
  background: var(--gold-subtle);
  border-color: rgba(245, 158, 11, 0.3);
}

.bento-icon-pill--emerald {
  color: var(--emerald);
  background: var(--emerald-subtle);
  border-color: rgba(16, 185, 129, 0.3);
}

.bento-number-glam {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.bento-number-glam--gold {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.bento-number-glam--emerald {
  color: var(--emerald);
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.bento-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.bento-card__text {
  font-size: 0.92rem;
  color: var(--text-300);
  line-height: 1.55;
}

/* ============================================================
   TESTIMONIAL GLASS CARD
   ============================================================ */
.section-testimonial-modern {
  padding: 2rem 0 5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card-glass {
  background: rgba(14, 18, 28, 0.75);
  backdrop-filter: blur(20px);
  border: var(--border-glass-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-meta__avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 30, 75, 0.15);
  border: 1px solid rgba(255, 30, 75, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.user-meta__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.user-meta__sub {
  font-size: 0.8rem;
  color: var(--text-300);
}

.verified-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--emerald);
  background: var(--emerald-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.testimonial-video-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #020305;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-video-box video {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-footer-text {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-200);
  font-style: italic;
  margin-top: 1.25rem;
}

/* ============================================================
   SPLIT COMPARISON (PROBLEM VS PRO SOLUTION)
   ============================================================ */
.section-problem-modern {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.split-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.split-col {
  padding: 2.8rem 2.4rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.split-col--bad {
  background: rgba(22, 14, 18, 0.55);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.split-col--good {
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.08) 0%, rgba(14, 18, 28, 0.85) 60%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 0 50px -15px rgba(16, 185, 129, 0.2);
}

.split-col__glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
  pointer-events: none;
}

.split-col__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fb7185;
  background: rgba(244, 63, 94, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.split-col__badge--good {
  color: var(--emerald);
  background: var(--emerald-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.split-col__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--text-white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.split-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.split-list__bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}

.split-list__bullet--check {
  background: rgba(16, 185, 129, 0.18);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.split-list li strong {
  display: block;
  font-size: 1.02rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.split-list li p {
  font-size: 0.92rem;
  color: var(--text-300);
  line-height: 1.5;
}

/* ============================================================
   MATRIZ COMPARATIVA START VS PRO
   ============================================================ */
.section-compare-modern {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.matrix-card-wrap {
  background: rgba(11, 14, 22, 0.85);
  backdrop-filter: blur(20px);
  border: var(--border-glass-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.matrix-table th, 
.matrix-table td {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.98rem;
}

.matrix-table thead th {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  background: #0d101a;
}

.matrix-table thead th.col-feature {
  width: 38%;
  color: var(--text-300);
}

.matrix-table thead th.col-start {
  width: 28%;
  color: #fb7185;
}

.matrix-table thead th.col-pro {
  width: 34%;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.12);
  border-top: 3px solid var(--emerald);
  border-left: 2px solid rgba(16, 185, 129, 0.35);
  border-right: 2px solid rgba(16, 185, 129, 0.35);
}

.pro-header-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #020406;
  background: var(--emerald);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.35rem;
}

.matrix-table td.pro-cell {
  background: rgba(16, 185, 129, 0.05);
  border-left: 2px solid rgba(16, 185, 129, 0.25);
  border-right: 2px solid rgba(16, 185, 129, 0.25);
  color: var(--text-white);
}

.matrix-table tr:hover td.pro-cell {
  background: rgba(16, 185, 129, 0.09);
}

.tag-red {
  color: #fb7185;
  font-weight: 600;
}

.tag-green {
  color: var(--emerald);
  font-weight: 700;
}

.matrix-pricing-row td {
  padding: 1.8rem 1.75rem;
  border-bottom: none;
}

.price-start {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fb7185;
}

.price-pro__val {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--emerald);
  line-height: 1;
}

.price-pro__val span {
  font-size: 0.9rem;
  color: var(--text-300);
}

.price-pro__daily {
  font-size: 0.78rem;
  color: var(--text-300);
  margin-top: 0.25rem;
}

.matrix-cta {
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   INTEGRATUBE STUDIO SHOWCASE (MEGA CARD)
   ============================================================ */
.section-studio-showcase {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.studio-card-mega {
  position: relative;
  background: linear-gradient(175deg, rgba(26, 16, 22, 0.85) 0%, rgba(10, 13, 20, 0.95) 50%);
  border: 1px solid rgba(255, 30, 75, 0.35);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  box-shadow: 
    0 35px 100px -20px rgba(0, 0, 0, 0.9),
    0 0 90px -20px var(--ruby-glow);
  overflow: hidden;
}

.studio-card-mega__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(255, 30, 75, 0.2), transparent 70%);
  pointer-events: none;
}

.studio-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.exclusive-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--ruby), #d11035);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 25px var(--ruby-glow);
  margin-bottom: 1.25rem;
}

.studio-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.12;
  color: #ffffff;
  max-width: 30ch;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.studio-sub {
  font-size: 1.08rem;
  color: var(--text-300);
  max-width: 38rem;
}

.studio-visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.studio-mockup-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 30, 75, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 30, 75, 0.25);
}

.studio-mockup-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.mockup-floating-tag--1 {
  top: 1.25rem;
  left: 1.25rem;
}

.mockup-floating-tag--2 {
  bottom: 1.25rem;
  right: 1.25rem;
}

.studio-features-list {
  display: grid;
  gap: 1.5rem;
}

.studio-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem 1.6rem;
  background: rgba(14, 18, 28, 0.7);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.studio-feat-item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 30, 75, 0.35);
}

.studio-feat-item__icon {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ruby);
  background: var(--ruby-subtle);
  border: 1px solid rgba(255, 30, 75, 0.3);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.studio-feat-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.studio-feat-item p {
  font-size: 0.9rem;
  color: var(--text-300);
  line-height: 1.5;
}

/* ============================================================
   SPECIALIST MODERN CARDS
   ============================================================ */
.section-specialist-modern {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.specialist-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-card {
  padding: 2.2rem 2rem;
  background: rgba(14, 18, 28, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.spec-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px var(--gold-glow);
}

.spec-card__icon-box {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.spec-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.spec-card p {
  font-size: 0.96rem;
  color: var(--text-300);
  line-height: 1.6;
}

/* ============================================================
   MATH & VALUE ANCHOR
   ============================================================ */
.section-math-modern {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.math-card-glass {
  background: rgba(14, 18, 28, 0.85);
  backdrop-filter: blur(20px);
  border: var(--border-glass-light);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.team-cost-table {
  display: grid;
  gap: 0.65rem;
  margin: 2.5rem 0 2rem;
  text-align: left;
}

.team-cost-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-200);
}

.team-cost-row .cost-val {
  color: #fb7185;
  font-weight: 600;
}

.team-cost-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: var(--radius-sm);
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.total-strike {
  color: #fb7185;
  font-size: 1.2rem;
}

.pro-offer-comparison {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.12) 0%, rgba(11, 14, 22, 0.9) 60%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
}

.pro-offer-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--emerald);
  margin-bottom: 0.4rem;
}

.pro-offer-price-big {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--emerald);
  line-height: 1;
}

.pro-offer-price-big span {
  font-size: 1.2rem;
  color: var(--text-300);
}

.pro-offer-desc {
  font-size: 0.96rem;
  color: var(--text-200);
  margin-top: 0.65rem;
}

/* ============================================================
   MASTER PRICING BOX (OFERTA FINAL)
   ============================================================ */
.section-pricing-master {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.pricing-card-master {
  position: relative;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(16, 185, 129, 0.18), transparent 70%),
              linear-gradient(180deg, #0d121c 0%, #06080d 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: 
    0 40px 100px -20px rgba(0, 0, 0, 0.9),
    0 0 90px -20px var(--emerald-glow);
  overflow: hidden;
}

.pricing-card-master__halo {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, var(--emerald-glow), transparent 70%);
  pointer-events: none;
}

.pricing-card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #020406;
  background: var(--gold);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 25px var(--gold-glow);
  margin-bottom: 1.5rem;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.85rem);
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.pricing-card-sub {
  font-size: 1.05rem;
  color: var(--text-300);
  max-width: 36rem;
  margin: 0 auto 2.8rem;
}

.deliverables-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  text-align: left;
  margin-bottom: 2.8rem;
}

.stack-card {
  background: rgba(14, 18, 30, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.stack-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stack-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stack-card__icon {
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stack-card__header h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.25;
}

.stack-card p {
  font-size: 0.88rem;
  color: var(--text-300);
  line-height: 1.5;
}

.stack-card--highlight {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(14, 18, 30, 0.85) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.stack-card--highlight .stack-card__icon {
  background: var(--emerald-subtle);
  border-color: rgba(16, 185, 129, 0.35);
}

.price-presentation {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-presentation__promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--emerald);
  background: var(--emerald-subtle);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 1; }
}

.price-presentation__anchor {
  font-size: 1.05rem;
  color: #fb7185;
  text-decoration: line-through;
  margin-bottom: 0.4rem;
}

.price-presentation__prefix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.price-presentation__main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.2rem 0 0.85rem;
}

.price-currency {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--emerald);
}

.price-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3.8rem, 9vw, 5.5rem);
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 35px rgba(16, 185, 129, 0.4);
}

.price-period {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text-300);
}

.price-presentation__details {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-200);
  margin-bottom: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.price-presentation__details span {
  color: #ffffff;
}

.price-presentation__payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-300);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
}

.pricing-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.guarantee-pills-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.g-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-300);
}

/* ============================================================
   FAQ ACCORDIONS
   ============================================================ */
.section-faq-modern {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.faq-accordion-wrap {
  display: grid;
  gap: 0.85rem;
}

.faq-card-modern {
  background: rgba(14, 18, 28, 0.75);
  backdrop-filter: blur(14px);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card-modern:hover,
.faq-card-modern[open] {
  border-color: rgba(255, 30, 75, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-card-modern summary {
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-card-modern summary::-webkit-details-marker {
  display: none;
}

.faq-card-modern summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--ruby);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-card-modern[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.6rem 1.4rem;
  color: var(--text-300);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-body strong {
  color: #fff;
}

/* ============================================================
   FOOTER MODERN
   ============================================================ */
.footer-modern {
  padding: 4rem 0 3rem;
  background: #020306;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 30px;
  width: auto;
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-400);
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 2rem;
}

.footer-company {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-300);
  margin-bottom: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.76rem;
  color: var(--text-400);
  max-width: 44rem;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.76rem;
  color: var(--text-400);
}

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.floating-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 0.85rem 1.25rem;
  background: rgba(6, 8, 14, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 30, 75, 0.3);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-action-bar.is-visible {
  transform: translateY(0);
}

body.has-floating-cta {
  padding-bottom: 85px;
}

.floating-action-bar__inner {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.floating-action-bar__info {
  display: none;
  align-items: center;
  gap: 0.85rem;
}

.floating-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: #020406;
  background: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.floating-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
}

.floating-text span {
  font-size: 0.78rem;
  color: var(--text-300);
}

.btn-pill-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff2a55, #d11035);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 160, 180, 0.45);
  box-shadow: 0 6px 25px rgba(255, 30, 75, 0.4);
  transition: var(--transition-smooth);
}

.btn-pill-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 30, 75, 0.6);
}

@media (min-width: 768px) {
  .floating-action-bar__info {
    display: flex;
  }
}

/* ============================================================
   RESPONSIVIDADE MOBILE FIRST
   ============================================================ */
@media (max-width: 900px) {
  .bento-grid-authority {
    grid-template-columns: 1fr;
  }

  .split-comparison-grid {
    grid-template-columns: 1fr;
  }

  .studio-visual-grid {
    grid-template-columns: 1fr;
  }

  .specialist-cards-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-stack-grid {
    grid-template-columns: 1fr;
  }

  .navbar-pill__center {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .btn-glow-primary {
    width: 100%;
    padding: 1rem 1.25rem;
  }

  .btn-glow-primary__text {
    font-size: 1.05rem;
  }

  .btn-glow-primary__sub {
    font-size: 0.7rem;
  }

  .matrix-table {
    min-width: 600px;
  }

  .matrix-table-responsive {
    overflow-x: auto;
  }

  .pricing-card-master {
    padding: 2.2rem 1.2rem;
  }

  .price-value {
    font-size: 3.8rem;
  }

  .price-currency {
    font-size: 1.6rem;
  }

  .btn-pill-action {
    width: 100%;
    justify-content: center;
  }
}
