/* ============================================
   MIFIBRA - LANDING PAGE OPTIMIZADA
   Mobile-First | Conversion-Optimized
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --brand-pink: #ff0091;
  --brand-pink-hover: #d6007a;
  --brand-pink-light: #ff66b8;
  --brand-blue: #2c2a29;
  --brand-light: #FFF0F7;
  
  /* UI Colors */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #1da851;
  
  /* Spacing */
  --container-max: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-pink);
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-pink);
  font-style: italic;
  transform: skewX(-5deg);
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  display: block;
  width: auto;
  height: 34px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: var(--brand-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.header-phone:hover {
  background: var(--brand-pink);
  color: var(--white);
  transform: scale(1.05);
}

.header-phone svg {
  color: var(--brand-pink);
}

.header-phone:hover svg {
  color: var(--white);
}

.header-phone-text {
  display: none;
}

@media (min-width: 480px) {
  .header-phone-text {
    display: inline;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: var(--brand-pink);
  padding: 4rem 0 2rem;
  overflow: hidden;
  min-height: 600px;
}

/* Desktop: Background image with proper layout */
@media (min-width: 1024px) {
  .hero {
    background-image: url('../img/hero-bg-woman.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    min-height: 90vh;
    max-height: 850px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  
  /* Subtle overlay - let image show through */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
      rgba(255, 0, 145, 0.30) 0%,
      rgba(255, 0, 145, 0.40) 50%,
      rgba(255, 0, 145, 0.50) 100%
    );
    pointer-events: none;
    z-index: 1;
  }
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Desktop Content - Simple 2 column */
.hero-desktop-content {
  display: none;
}

@media (min-width: 1024px) {
  .hero-desktop-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 4rem;
  }
}

/* Mobile Content */
.hero-mobile-content {
  display: block;
}

@media (min-width: 1024px) {
  .hero-mobile-content {
    display: none;
  }
}

.hero-layout {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 45% 55%;
    gap: 3rem;
  }
}

/* Hero Image/Model */
.hero-image-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    display: block;
    position: relative;
  }
  
  .hero-model-img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    object-position: bottom left;
  }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  color: var(--white);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .urgency-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }
}

/* Hero Offer Content */
.hero-offer-content {
  margin-bottom: 1.5rem;
}

.hero-main-title {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 1rem 0;
  color: var(--white);
}

.hero-main-subtitle {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.5rem;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .hero-main-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-main-title {
    font-size: 2.25rem;
  }
}

/* Hero Offer Badge */
.hero-offer-badge {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  margin: 1rem 0;
  text-align: center;
}

.offer-speed {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.offer-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.offer-price-large {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.offer-price-large .currency {
  font-size: 1.25rem;
  font-weight: 700;
}

.offer-price-large .amount {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.offer-price-large .decimals {
  font-size: 1.75rem;
  font-weight: 700;
}

.offer-period {
  font-size: 0.875rem;
  font-weight: 700;
  align-self: flex-end;
  padding-bottom: 0.5rem;
}

.offer-promo-text {
  font-size: 0.8125rem;
  opacity: 0.95;
  line-height: 1.4;
}

/* Hero 100% Badge */
.hero-badge-100 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0;
}

/* Hero Awards Small */
.hero-awards-small {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.875rem;
  border-radius: var(--radius-xl);
  margin: 1rem 0;
}

.awards-img-small {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.awards-text-small {
  flex: 1;
}

.awards-text-small strong {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.awards-text-small p {
  font-size: 0.625rem;
  opacity: 0.9;
  line-height: 1.3;
}

/* Hero Features Grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem 0;
}

.feature-mini {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.625rem;
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .feature-mini {
    flex-direction: row;
  }
}

/* OLD HERO STYLES - Keep for compatibility but hide */
.hero-title {
  display: none;
}
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

.hero-price {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-pink);
  margin-top: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 0, 145, 0.5);
}

.hero-price sup {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-price {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-price {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-price {
    font-size: 5rem;
  }
}

/* Hero Awards */
.hero-awards {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: var(--radius-xl);
  margin: 1.5rem 0;
}

.awards-img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.awards-text strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--brand-pink);
}

.awards-text p {
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-direction: column;
}

@media (min-width: 640px) {
  .feature-item {
    flex-direction: row;
  }
}

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

/* Hero CTA Mobile */
.hero-cta-mobile {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-cta-mobile {
    display: none;
  }
}

/* Hero Form Wrapper */
.hero-form-wrapper {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-form-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-form-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===== FEATURED CARD ===== */
.featured-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand-pink);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.featured-header {
  background: var(--brand-light);
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.featured-img {
  max-width: 200px;
  height: auto;
}

.featured-body {
  padding: 1.5rem;
}

.featured-speed {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.featured-promo {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.featured-price {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.price {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}

.price-decimals {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.price-period {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.featured-after {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.featured-benefits {
  list-style: none;
  margin: 1.5rem 0;
}

.featured-benefits li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-benefits li:last-child {
  border-bottom: none;
}

.featured-benefits li i {
  color: var(--brand-pink);
  flex-shrink: 0;
}

.featured-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
}

/* ===== LEAD FORM ===== */
.lead-form {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: var(--gray-50);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-pink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 0, 145, 0.1);
}

.form-help {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--brand-pink);
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.4;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--brand-pink);
  font-weight: 600;
  text-decoration: underline;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--brand-pink);
  color: var(--white);
  border-color: var(--brand-pink);
}

.btn-primary:hover:not(:disabled) {
  background: var(--brand-pink-hover);
  border-color: var(--brand-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 145, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brand-pink);
  border-color: var(--brand-pink);
}

.btn-outline:hover:not(:disabled) {
  background: var(--brand-pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover:not(:disabled) {
  background: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== TRUST SIGNALS ===== */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--brand-pink);
}

.trust-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: 2rem;
}

/* ===== PLANS MOBILE (CAROUSEL) ===== */
.plans-mobile {
  padding: 3rem 0;
  background: var(--gray-50);
}

@media (min-width: 768px) {
  .plans-mobile {
    display: none;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  padding: 0 0 3rem 0;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1rem;
}

.carousel-slide {
  flex: 0 0 85%;
  max-width: 350px;
}

@media (min-width: 480px) {
  .carousel-slide {
    flex: 0 0 70%;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.is-active {
  background: var(--brand-pink);
  width: 24px;
}

/* ===== PLANS DESKTOP (GRID) ===== */
.plans-desktop {
  display: none;
  padding: 3rem 0;
  background: var(--gray-50);
}

@media (min-width: 768px) {
  .plans-desktop {
    display: block;
  }
}

.plans-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

/* ===== PLAN CARD ===== */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--brand-pink-light);
}

.plan-featured {
  border-color: var(--brand-pink);
}

.plan-featured .plan-header {
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-pink-hover) 100%);
}

.plan-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-pink);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.plan-header {
  background: var(--brand-light);
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}

.plan-img {
  max-width: 140px;
  height: auto;
}

.plan-body {
  padding: 1.5rem;
}

.plan-speed {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.plan-promo {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 0.5rem;
}

.plan-price .price-amount {
  font-size: 2.5rem;
}

.plan-after {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.plan-features {
  list-style: none;
  margin: 1.5rem 0;
}

.plan-features li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: var(--brand-pink);
  flex-shrink: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: 3rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

.benefit-card {
  background: var(--brand-light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-pink);
  box-shadow: var(--shadow-xl);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--brand-pink);
  stroke-width: 1.5;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 3rem 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.testimonial-rating i {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a1818 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 145, 0.15) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-title i {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo .logo-text {
  color: var(--brand-pink);
}

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact a:hover {
  color: var(--brand-pink);
}

.footer-legal {
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0.35rem 0;
}

.footer-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--brand-pink);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-copy-sep {
    display: none;
  }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.2);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes animate-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-pulse {
  animation: animate-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== UTILITIES ===== */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* Icon Sizes */
.icon-xs {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.icon-md {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}

.icon-lg {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
}

/* Star filled color */
.star-filled {
  fill: #FFB800;
  color: #FFB800;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 640px) {
  .plan-price .price-amount {
    font-size: 2rem;
  }
  
  .featured-price .price-amount {
    font-size: 2.5rem;
  }
}

/* ===== HERO LEAD FORM (Dark Style like Win) ===== */
.hero-lead-form {
  background: linear-gradient(135deg, #2c2a29 0%, #1a1818 100%);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-hero-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-group-hero {
  margin-bottom: 1rem;
}

.form-input-hero {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.form-input-hero::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input-hero:focus {
  outline: none;
  border-color: var(--brand-pink);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 0, 145, 0.2);
}

.form-checkbox-hero {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-checkbox-hero input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--brand-pink);
}

.form-checkbox-hero label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  cursor: pointer;
}

.form-checkbox-hero a {
  color: var(--brand-pink);
  font-weight: 600;
  text-decoration: underline;
}

.btn-hero {
  margin-bottom: 0.75rem;
}

.form-disclaimer-hero {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

@media (min-width: 1024px) {
  .hero-lead-form {
    padding: 2rem;
  }
  
  .form-hero-title {
    font-size: 1.25rem;
  }
}

/* ===== DESKTOP HERO CONTENT ===== */
.hero-desktop-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-desktop-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-desktop-offer {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.offer-speed-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.offer-price-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

.offer-price-text strong {
  font-size: 1.5rem;
  font-weight: 900;
}

.offer-price-text sup {
  font-size: 1rem;
}

/* Ookla Badge Desktop */
.hero-ookla-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.ookla-img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.ookla-text {
  flex: 1;
  color: var(--white);
}

.ookla-text strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.ookla-text p {
  font-size: 0.6875rem;
  opacity: 0.95;
  line-height: 1.3;
}

/* Features Mini Desktop */
.hero-features-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-mini-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
}

/* ===== MOBILE FEATURED CARD ===== */
.featured-card-mobile {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  margin-bottom: 1.5rem;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-pink);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.featured-header-mobile {
  background: var(--brand-light);
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.featured-img-mobile {
  max-width: 200px;
  height: auto;
}

.featured-body-mobile {
  padding: 1.5rem;
}

.featured-speed-mobile {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.featured-promo-mobile {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.featured-price-mobile {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.featured-price-mobile .price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.featured-price-mobile .price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}

.featured-price-mobile .price-decimals {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.featured-price-mobile .price-period {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.featured-after-mobile {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.featured-benefits-mobile {
  list-style: none;
  margin-bottom: 1rem;
}

.featured-benefits-mobile li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-benefits-mobile li:last-child {
  border-bottom: none;
}

.featured-benefits-mobile li i {
  color: var(--brand-pink);
  flex-shrink: 0;
}

.featured-disclaimer-mobile {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
}

/* Mobile Form */
.hero-lead-form-mobile {
  background: linear-gradient(135deg, #2c2a29 0%, #1a1818 100%);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop form stays same, just ensure proper display */
@media (min-width: 1024px) {
  .hero-lead-form {
    max-width: 100%;
  }
}

/* ===== DESKTOP HERO STYLES (NEW) ===== */

/* Desktop Headline */
.hero-desktop-headline {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 0.75rem 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desktop-subline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Desktop Offer Display */
.hero-desktop-offer-display {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.offer-speed-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.offer-price-large {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.price-big {
  font-size: 1.75rem;
  font-weight: 900;
}

.price-big sup {
  font-size: 1.125rem;
  font-weight: 800;
}

/* Compact Ookla Badge */
.hero-ookla-compact {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
  max-width: fit-content;
}

.ookla-img-compact {
  width: 45px;
  height: auto;
  flex-shrink: 0;
}

.ookla-text-compact {
  flex: 1;
  color: var(--white);
}

.ookla-text-compact strong {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  font-weight: 800;
}

.ookla-text-compact p {
  font-size: 0.625rem;
  opacity: 0.95;
  line-height: 1.3;
  margin: 0;
}

/* Quick Features */
.hero-quick-features {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.625rem;
  margin-bottom: 0;
  max-width: fit-content;
}

.quick-feature {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  white-space: nowrap;
}

/* Desktop Form Container */
.hero-lead-form-desktop {
  background: linear-gradient(135deg, #2c2a29 0%, #1a1818 100%);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-lead-form-desktop .form-hero-title {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

/* ===== MOBILE IMPROVEMENTS ===== */

/* Remove image header from mobile card */
.featured-header-mobile {
  display: none;
}

/* Update mobile card body */
.featured-body-mobile {
  padding: 1.5rem;
}

/* Mobile CTA Button */
.btn-mobile-cta {
  margin: 1.5rem 0 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
}

/* Update mobile card to be more compact */
.featured-card-mobile {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 1.5rem;
  position: relative;
  border: 2px solid rgba(255, 0, 145, 0.2);
}

.featured-speed-mobile {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.featured-price-mobile {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  justify-content: center;
}

.featured-price-mobile .price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}

/* Adjust benefits spacing */
.featured-benefits-mobile {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
}

.featured-benefits-mobile li {
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-benefits-mobile li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.featured-disclaimer-mobile {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
}
/* ===== DESKTOP HERO SIMPLE STYLES ===== */

/* Urgency Badge Desktop */
.urgency-badge-desktop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

/* Main Offer Card */
.hero-offer-card {
  max-width: 500px;
  width: 100%;
}

.offer-card-content {
  /* No background, text over image */
}

/* Headline */
.offer-headline {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin: 0 0 1rem 0;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.4);
}

.offer-subline {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Plan Display (like PROMO DUO card) */
.offer-plan-display {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.offer-plan-speed {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.offer-plan-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.price-highlight {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand-pink);
}

.price-highlight sup {
  font-size: 1.25rem;
}

/* Features Row */
.offer-features-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ookla-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ookla-mini img {
  width: 40px;
  height: auto;
}

.ookla-mini span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.features-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.feature-mini-badge {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

/* Form Right Aligned */
.hero-form-right {
  width: 420px;
}

.hero-lead-form-desktop {
  background: linear-gradient(135deg, #2c2a29 0%, #1a1818 100%);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-lead-form-desktop .form-hero-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
/* ===== HERO WIN STYLE - FIXED ===== */

.hero.hero-split {
  background-color: var(--brand-pink);
  background-image: url('../img/hero-bg-woman.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  max-height: none;
  padding: 92px 0 44px;
}

.hero.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(255, 0, 145, 0.18) 0%, rgba(30, 11, 41, 0.42) 52%, rgba(12, 12, 22, 0.72) 100%);
  z-index: 1;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 470px;
}

.infomono {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0;
  padding: 1.5rem;
}

/* Offer Info Card (on image) */
.offer-info-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.offer-headline {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  max-width: 16ch;
}

.offer-subline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
}

.priceCard {
  background: linear-gradient(140deg, #ff45a8 0%, #ff2a98 48%, #df007e 100%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 1.25rem;
  padding: 1rem 1rem 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px rgba(223, 0, 126, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(2px);
}

.priceCard__speedBadge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.375rem 0.75rem;
  background: #121212;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.priceCard__speedValue {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
}

.priceCard__speedUnit {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.9;
}

.priceCard__priceBlock {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.priceCard__priceRow {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.priceCard__currency {
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 0.25rem;
}

.priceCard__amount {
  font-size: 4.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.priceCard__decimals {
  font-size: 1.25rem;
  font-weight: 800;
  top: 0.75rem;
  margin-left: 0.15rem;
  position: relative;
}

.priceCard__period {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.94;
  margin-bottom: 0.5rem;
}

.priceCard__note {
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0.35rem 0 0.7rem;
  opacity: 0.9;
}

.priceCard__bottom {
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 900;
  text-wrap: balance;
}

.ookla-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 1rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ookla-badge img {
  width: 35px;
  height: auto;
}

.ookla-badge span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.3;
}

.features-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.feature-badge {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* RIGHT SIDE - Form */
.hero-right {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 420px);
  gap: 20px;
  justify-content: end;
  align-items: center;
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  min-height: auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero__offerCard.infomono {
  max-width: 420px;
  padding: 0;
}

.hero-offer {
  width: 100%;
  max-width: 420px;
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.lead-card {
  background: linear-gradient(135deg, #2c2a29 0%, #1a1818 100%);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lead-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}

.lead-card .field {
  margin-bottom: 1rem;
}

.lead-card .error {
  display: block;
  min-height: 1rem;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #fca5a5;
}

.lead-card input[type="tel"],
.lead-card input[type="text"] {
  width: 100%;
  height: 52px;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.2s;
}

.lead-card input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.lead-card input:focus {
  outline: none;
  border-color: var(--brand-pink);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 0, 145, 0.2);
}

.lead-card input:focus-visible,
.btn:focus-visible,
.btn-pill:focus-visible,
.header-phone:focus-visible,
.footer a:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.lead-card input[aria-invalid="true"] {
  border-color: #fca5a5;
  box-shadow: 0 0 0 3px rgba(252, 165, 165, 0.2);
}

.lead-card .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.4;
}

.lead-card .checkbox input[type="checkbox"] {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.lead-card .checkbox a {
  color: var(--brand-pink);
  text-decoration: underline;
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-pill {
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-lg {
  width: 100%;
}

.btn-primary.btn-pill {
  background: var(--brand-pink);
  color: var(--white);
}

.btn-primary.btn-pill:hover {
  background: #d6007a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 145, 0.4);
}

.btn-secondary.btn-pill {
  background: #25D366;
  color: var(--white);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.btn-secondary.btn-pill:hover {
  background: #1fb85a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

/* MOBILE */
@media (max-width: 1023px) {
  .hero.hero-split {
    min-height: auto;
    padding: 84px 0 32px;
    background-position: 24% center;
  }

  .hero.hero-split::before {
    background: linear-gradient(105deg, rgba(255, 0, 145, 0.34) 0%, rgba(20, 18, 34, 0.62) 68%, rgba(12, 12, 22, 0.78) 100%);
  }

  .hero__container {
    justify-content: center;
    min-height: auto;
  }

  .hero__right,
  .hero-right {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-content: stretch;
    max-width: 520px;
    margin: 0 auto;
    order: 1;
  }

  .hero__offerCard.infomono {
    max-width: 100%;
  }

  .infomono {
    padding: 0;
    max-width: 100%;
  }

  .offer-info-card {
    border-radius: 1.25rem;
    padding: 1.25rem;
  }

  .offer-headline {
    font-size: 1.625rem;
    max-width: none;
  }

  .priceCard__amount {
    font-size: 3.25rem;
  }

  .priceCard__bottom {
    font-size: 1.1rem;
  }

  .hero-offer {
    max-width: 100%;
  }

  .urgency-pill {
    margin-bottom: 1rem;
  }
}
