@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & SYSTEM VARIABLES --- */
:root {
  /* Official Colors */
  --primary-blue: #0F4C81;
  --dark-blue: #08345C;
  --primary-orange: #FF7A00;
  --orange-hover: #E86700;
  --light-gray: #F5F7FA;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  
  /* Additional Premium Colors */
  --accent-light-blue: #EBF3FA;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #128C7E;
  --demo-green: #059669;
  --demo-green-hover: #047857;
  --demo-gray-start: #4B5563;
  --demo-gray-end: #1F2937;
  --border-color: #E2E8F0;
  --shadow-color: rgba(15, 76, 129, 0.08);
  
  /* Gradients */
  --gradient-blue: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  --gradient-orange: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-hover) 100%);
  --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
  --gradient-glass: rgba(255, 255, 255, 0.85);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px var(--shadow-color);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(8, 52, 92, 0.08);
  --shadow-orange: 0 8px 20px rgba(255, 122, 0, 0.25);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);

  /* Fonts */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Max Container Width */
  --container-width: 1200px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-blue);
}

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

ul {
  list-style: none;
}

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

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-orange {
  background-color: rgba(255, 122, 0, 0.1);
  color: var(--primary-orange);
}

.badge-blue {
  background-color: rgba(15, 76, 129, 0.1);
  color: var(--primary-blue);
}

/* Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.section-header h2 span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  gap: 10px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--accent-light-blue);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-demo {
  position: relative !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: #000000 !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 0 !important;
  overflow: visible !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color var(--transition-fast) !important;
}

.btn-demo:hover {
  background: transparent !important;
  color: var(--primary-orange) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
  animation: none !important;
}

/* Underline element */
.btn-demo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
  animation: underline-flow 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 1;
  pointer-events: none;
  transform-origin: left;
}

/* We remove the ::before shimmer */
.btn-demo::before {
  display: none !important;
}

.btn-demo:hover::after {
  background-color: var(--orange-hover);
}

/* Continuous underline flow animation */
@keyframes underline-flow {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: right;
  }
  95% {
    transform: scaleX(0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: left;
  }
}

/* Demo button inside the nav menu (mobile/desktop link style) */
.btn-demo-nav {
  display: inline-block;
  background: linear-gradient(135deg, var(--demo-green) 0%, var(--demo-green-hover) 100%);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.30);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-demo-nav:hover {
  background: var(--demo-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.45);
  color: var(--white) !important;
}

/* --- 1. PROMOTIONAL BAR --- */
.promo-bar {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 8px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1001;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  font-weight: 500;
  animation: pulse-bar 4s infinite alternate;
}

.promo-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.promo-bar .btn-small {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 4px 12px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.promo-bar .btn-small:hover {
  background-color: var(--white);
  color: var(--primary-orange);
}

@keyframes pulse-bar {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.1); }
}

/* --- 2. HEADER --- */
header {
  background: var(--gradient-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 36px; /* Below promo-bar */
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-normal);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-primary);
}

.logo-text-blue {
  color: var(--primary-blue);
}

.logo-text-orange {
  color: var(--primary-orange);
}

.logo-text-gray {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.logo svg {
  width: 32px;
  height: 32px;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

nav a:hover {
  color: var(--primary-orange);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-blue);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 992px) {
  header {
    top: 54px; /* Adjust according to mobile bar height wrap */
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    display: none;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
  }
  
  nav.active {
    display: block;
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .header-cta {
    display: none;
  }
}

/* --- 3. HERO SECTION --- */
.hero {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--primary-orange);
  display: inline-block;
  position: relative;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-orange);
  border-radius: var(--radius-full);
}

.hero-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 580px;
}

.price-callout {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 4px solid var(--primary-orange);
  padding: 16px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 35px;
  display: inline-block;
}

.price-callout .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.price-callout .amount {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.price-callout .amount span {
  color: var(--primary-orange);
  font-size: 1.4rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-bullets svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image-wrapper img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

.floating-badge {
  position: absolute;
  background-color: var(--white);
  color: var(--dark-blue);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.floating-badge-1 {
  bottom: 40px;
  left: -30px;
  animation-delay: 0s;
}

.floating-badge-2 {
  top: 40px;
  right: -20px;
  animation-delay: 1.5s;
}

.floating-badge-1 svg {
  color: var(--primary-orange);
}

.floating-badge-2 svg {
  color: var(--primary-blue);
}

.floating-badge .title {
  font-weight: 700;
  font-size: 0.9rem;
}

.floating-badge .desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-image-wrapper {
    transform: none;
  }
  
  .floating-badge-1 {
    left: 10px;
  }
  
  .floating-badge-2 {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-bullets {
    grid-template-columns: 1fr;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* --- 4. CAPTURE FORM SECTION --- */
.capture-form-section {
  background-color: var(--light-gray);
  padding: 60px 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
}

.form-grid-top {
  text-align: center;
  margin-bottom: 30px;
}

.form-grid-top h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-grid-top p {
  color: var(--text-muted);
}

.capture-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-group input, .form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
  background-color: var(--light-gray);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}

/* Honeypot anti-spam field */
.hnp-field {
  display: none !important;
}

.form-button-container {
  grid-column: span 2;
  margin-top: 10px;
}

.form-button-container .btn {
  width: 100%;
}

.form-note {
  grid-column: span 2;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .form-card {
    padding: 24px;
  }
  
  .capture-form {
    grid-template-columns: 1fr;
  }
  
  .form-group-full, .form-button-container, .form-note {
    grid-column: span 1;
  }
}

/* --- 5. THE PROBLEM --- */
.problem-section {
  background-color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.problem-img-wrapper {
  background: var(--accent-light-blue);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed var(--primary-blue);
}

.problem-img-wrapper svg {
  width: 100%;
  max-width: 320px;
  color: var(--primary-blue);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-icon {
  background-color: rgba(255, 122, 0, 0.1);
  color: var(--primary-orange);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
}

.problem-content h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--dark-blue);
}

.problem-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .problem-img-wrapper {
    order: 2;
  }
}

/* --- 6. BENEFITS SECTION --- */
.benefits-section {
  background-color: var(--light-gray);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 76, 129, 0.3);
}

.benefit-card .icon-wrapper {
  background-color: var(--accent-light-blue);
  color: var(--primary-blue);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.benefit-card:hover .icon-wrapper {
  background-color: var(--primary-blue);
  color: var(--white);
}

.benefit-card .icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

/* --- 7. ALL INCLUDED SECTION --- */
.included-section {
  background-color: var(--white);
}

.pricing-box {
  background: var(--gradient-blue);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.pricing-left {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 40px;
}

.pricing-left .price-tag {
  margin: 20px 0;
}

.pricing-left .price-tag .currency {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 600;
}

.pricing-left .price-tag .val {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-left .price-tag .sub {
  font-size: 1.2rem;
  color: var(--primary-orange);
  font-weight: 600;
}

.pricing-left .tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.pricing-right h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.included-list svg {
  width: 22px;
  height: 22px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .pricing-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 24px;
  }
  
  .pricing-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 0;
    padding-bottom: 30px;
  }
  
  .pricing-left .price-tag .val {
    font-size: 3.5rem;
  }
}

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

/* --- 8. IDEAL FOR --- */
.ideal-section {
  background-color: var(--light-gray);
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ideal-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.ideal-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.ideal-card svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px auto;
  color: var(--primary-blue);
  transition: color var(--transition-normal);
}

.ideal-card:hover svg {
  color: var(--primary-orange);
}

.ideal-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ideal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* --- 9. ADDITIONAL SERVICES (UPSELL) --- */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 35px 25px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon-container {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-light-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card svg {
  width: 26px;
  height: 26px;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 10. TESTIMONIALS --- */
.testimonials-section {
  background-color: var(--light-gray);
}

.testimonials-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-track-container {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 30px;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 20px);
  width: calc(33.333% - 20px);
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.carousel-control {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.carousel-control:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.carousel-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-sm);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  border: none;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--primary-orange);
  width: 24px;
}


.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  color: rgba(15, 76, 129, 0.08);
  font-family: serif;
  line-height: 1;
}

.rating {
  color: var(--primary-orange);
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.rating svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  color: var(--text-dark);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 0.95rem;
  color: var(--dark-blue);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}



/* --- 11. FAQ ACCORDION --- */
.faq-section {
  background-color: var(--white);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
  transition: transform var(--transition-normal);
}

/* Active State */
.faq-item.active {
  border-color: rgba(15, 76, 129, 0.3);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

/* --- 12. ONLINE PAYMENT MODULE --- */
.payment-section {
  background-color: var(--light-gray);
  position: relative;
}

.payment-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.payment-sidebar {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.payment-sidebar h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.payment-sidebar p {
  opacity: 0.85;
  font-size: 0.95rem;
}

.payment-security-badges {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.security-badge svg {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.payment-partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.payment-partner-logos svg {
  height: 24px;
  width: auto;
  opacity: 0.85;
}

.payment-body {
  padding: 40px;
}

/* Tabs for Payment Method Selection */
.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.tab-btn {
  padding: 12px;
  border: 2px solid var(--border-color);
  background: none;
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.tab-btn svg {
  height: 20px;
}

.tab-btn.active {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background-color: rgba(255, 122, 0, 0.05);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

/* Payment Simulated processing animations */
.processing-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.success-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

.success-container h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.success-container p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .payment-wrapper {
    grid-template-columns: 1fr;
  }
  
  .payment-sidebar {
    padding: 30px 24px;
  }
  
  .payment-body {
    padding: 30px 24px;
  }
}

/* --- 13. CTA FINAL --- */
.cta-final-section {
  background: var(--gradient-blue);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-final-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-final-section {
    padding: 80px 0;
  }
  
  .cta-final-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-final-actions .btn {
    width: 100%;
  }
}

/* --- 14. FOOTER --- */
footer {
  background-color: #0d1b2a;
  color: #a0aec0;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #a0aec0;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links button {
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.legal-links button:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- 15. FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-green);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-5px) scale(1.05);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

/* --- 16. LEGAL MODAL OVERLAYS --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal) ease-in-out;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-normal) ease-in-out;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
}

.modal-content h4 {
  font-size: 1.15rem;
  margin: 20px 0 10px 0;
}

.modal-content p, .modal-content ul {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.modal-content ul {
  list-style: disc;
  padding-left: 20px;
}

/* --- 17. SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

/* Estado activo/visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Soporte de retraso escalonado (Stagger Delay) */
.reveal-stagger .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 0.08s);
}

/* ==========================================================================
   NEW CRO & UX OPTIMIZATION STYLES (TUWEBLISTOMX)
   ========================================================================== */

/* Buttons */
.btn-secondary-orange {
  background-color: var(--white);
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.btn-secondary-orange:hover {
  background-color: rgba(255, 122, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.15);
}

/* Trust Bar */
.trust-bar {
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 25px 0;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
}

.trust-item span {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
}

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

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Hero High Impact Block */
.hero-high-impact-block {
  margin: 25px 0 35px 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--primary-orange);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.hero-subheadline {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.hero-subdescription {
  font-size: 1.05rem;
  color: #E2E8F0;
  line-height: 1.6;
  margin-bottom: 22px;
}

.hero-content .badge-orange {
  background-color: rgba(255, 122, 0, 0.2);
  color: #FFA559;
  border: 1px solid rgba(255, 122, 0, 0.35);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Checklist $2,400 section */
.pricing-container-new {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-item-new {
  display: flex;
  gap: 15px;
  padding: 15px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.feature-item-new:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-item-new .icon {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-item-new h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.feature-item-new p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.price-card-new {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.price-card-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.price-card-new .price-value {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1;
}

.price-card-new .price-value span {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-card-new .price-note {
  font-size: 0.9rem;
  color: var(--accent-light-blue);
  margin-bottom: 25px;
}

.price-card-new .btn {
  width: 100%;
}

@media (max-width: 992px) {
  .pricing-container-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

/* Value Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background-color: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--light-gray);
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--dark-blue);
}

.comparison-table td {
  font-size: 0.95rem;
}

/* First Column (Opción de Desarrollo) Highlight */
.comparison-table th:first-child,
.comparison-table td:first-child {
  background-color: rgba(15, 76, 129, 0.03);
  font-weight: 700;
  border-right: 2px solid var(--border-color);
  color: var(--dark-blue);
  font-family: var(--font-primary);
}

.comparison-table th:first-child {
  background-color: rgba(15, 76, 129, 0.06);
}

.comparison-table tr.highlighted-row {
  background-color: rgba(255, 122, 0, 0.04);
  border: 2px solid var(--primary-orange);
}

.comparison-table tr.highlighted-row td {
  font-weight: 600;
  color: var(--dark-blue);
  border-bottom: 2px solid var(--primary-orange);
}

.comparison-table tr.highlighted-row td:first-child {
  border-left: 5px solid var(--primary-orange) !important;
  background-color: rgba(255, 122, 0, 0.09) !important;
  border-right: 2px solid var(--primary-orange);
}

.badge-orange-sm {
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-left: 8px;
  vertical-align: middle;
}

.text-danger {
  color: #EF4444;
  font-weight: 600;
}

.text-success {
  color: #10B981;
  font-weight: 600;
}

/* Emotional Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.problem-content h3 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.problem-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.problem-card-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.problem-card-item .icon {
  font-size: 1.8rem;
  line-height: 1;
}

.problem-card-item h4 {
  font-size: 1.05rem;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.problem-card-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Portafolio Section */
.portfolio-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.portfolio-card-new {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.portfolio-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.portfolio-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--light-gray);
  border-bottom: 1px solid var(--border-color);
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card-new:hover .portfolio-img-wrapper img {
  transform: scale(1.05);
}

.portfolio-body-new {
  padding: 24px;
}

.portfolio-body-new h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.portfolio-body-new p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
  height: 60px;
  overflow: hidden;
}

.portfolio-body-new .btn {
  width: 100%;
  font-size: 0.88rem;
  padding: 10px 20px;
}

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

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

/* Service added new styles */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card-new {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.service-card-new .service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1;
  display: block;
}

.service-card-new h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark-blue);
}

.service-card-new p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.badge-optional {
  align-self: flex-start;
  background-color: rgba(15, 76, 129, 0.08);
  color: var(--primary-blue);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

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

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

/* Section CTA buttons container */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .section-cta {
    flex-direction: column;
    width: 100%;
  }
  .section-cta .btn {
    width: 100%;
  }
}

/* Quick Capture Form Section */
.quick-capture-section {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 60px 0;
  border-top: 4px solid var(--primary-orange);
}

.quick-form-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.quick-form-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: center;
}

.quick-form-card p {
  color: var(--accent-light-blue);
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 15px;
  align-items: end;
}

.quick-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.quick-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light-blue);
}

.quick-form input, .quick-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.quick-form input:focus, .quick-form select:focus {
  border-color: var(--primary-orange);
  background-color: var(--white);
}

.quick-form .btn {
  padding: 12px 24px;
  height: 48px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .quick-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .quick-form .btn {
    width: 100%;
  }
}


