/* LUMBRA WEBSITE CSS */

/* --- Design Tokens & Variables --- */
:root {
  /* Exact teardrop colors */
  --droplet-yellow: hsl(62, 81%, 57%);     /* Outermost bright yellow/lime (#e7ec37) */
  --droplet-lime: hsl(79, 58%, 45%);       /* Second layer lime-green (#8cb630) */
  --droplet-green: hsl(108, 46%, 34%);     /* Third layer medium green (#3e7e2e) */
  --droplet-forest: hsl(141, 73%, 19%);    /* Innermost deep forest green (#0d5225) */
  --droplet-cream: hsl(54, 44%, 96%);      /* Teardrop background color (#f9f8ee) */

  /* Main system overrides */
  --bg-primary: var(--droplet-cream);
  --bg-light: hsl(62, 81%, 95%);
  --bg-card: hsl(0, 0%, 100%);
  
  --primary: var(--droplet-forest);
  --primary-light: hsl(141, 55%, 26%);
  --accent: var(--droplet-green);
  --accent-hover: var(--droplet-lime);
  --sage: var(--droplet-yellow);
  
  --text-main: hsl(141, 73%, 12%); /* High-contrast green-black text */
  --text-muted: hsl(141, 35%, 28%);
  --border-light: hsla(141, 73%, 19%, 0.1);
  
  /* Fonts */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacings */
  --section-spacing: clamp(4rem, 8vw, 8rem);
  --container-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease-in-out;
}

/* --- Base Resets & Defaults --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for shrinking header */
  font-size: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

/* --- Grid Utilities --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

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

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

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

.section-padding {
  padding: var(--section-spacing) 0;
}

.bg-light {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-light) 12%, var(--bg-light) 88%, var(--bg-primary) 100%);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--droplet-yellow);
  color: var(--droplet-forest);
  border: 1px solid var(--droplet-yellow);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--droplet-forest);
  border-color: var(--droplet-forest);
  color: white;
  box-shadow: 0 4px 15px rgba(13, 82, 37, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--droplet-forest);
  border: 1px solid var(--droplet-forest);
}

.btn-secondary:hover {
  background-color: hsla(62, 81%, 57%, 0.15);
  border-color: var(--droplet-lime);
  color: var(--droplet-forest);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* --- Header & Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background-color: hsla(54, 44%, 96%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(22, 40, 27, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: center;
  color: var(--primary);
}

.header-logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo-img {
  height: 30px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .desktop-nav a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-main);
    position: relative;
  }

  .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-fast);
  }

  .desktop-nav a:hover::after {
    width: 100%;
  }

  .desktop-nav a.btn-nav {
    background-color: var(--droplet-yellow);
    color: var(--droplet-forest);
    border: 1px solid var(--droplet-yellow);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
  }
  
  .desktop-nav a.btn-nav::after {
    display: none;
  }
  
  .desktop-nav a.btn-nav:hover {
    background-color: var(--droplet-forest);
    border-color: var(--droplet-forest);
    color: white;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

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

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

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

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

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary);
}

.mobile-nav-links .btn-nav {
  font-size: 1.2rem;
  background-color: var(--droplet-yellow);
  color: var(--droplet-forest) !important;
  border: 1px solid var(--droplet-yellow);
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.mobile-nav-links .btn-nav:hover {
  background-color: var(--droplet-forest);
  border-color: var(--droplet-forest);
  color: white !important;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  overflow: hidden;
  color: var(--primary);
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .video-bg { display: none !important; }
  .hero-bg {
    background-image: url('assets/hero_fallback.jpg');
    background-size: cover;
    background-position: center;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, 
    rgba(13, 82, 37, 0.25) 0%, 
    rgba(0, 0, 0, 0.35) 60%, 
    rgba(13, 82, 37, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-tagline-small {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--droplet-yellow); /* verde claro como el del botón */
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(13, 82, 37, 0.7); /* boosted shadow for legibility */
}

.hero-logo-text-wrap {
  width: 95%;
  max-width: clamp(320px, 85vw, 650px);
  margin-bottom: 0.2rem;
}

.hero-logo-text {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Original branding colors preserved, boosted with a soft drop shadow for clarity */
  filter: brightness(0.95) contrast(1.05) drop-shadow(0 2px 10px rgba(13, 82, 37, 0.5));
}

.hero-isologo-wrap {
  margin-bottom: 1.5rem;
}

.hero-isologo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

.hero-subtitle-stacked {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--droplet-yellow); /* verde claro como el del botón */
  margin-top: -0.85rem; /* más cerca debajo de lumbra */
  text-shadow: 0 3px 10px rgba(13, 82, 37, 0.75); /* boosted shadow */
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500; /* ligeramente más grueso para legibilidad */
  color: var(--droplet-yellow); /* verde claro como el del botón */
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 3px 12px rgba(13, 82, 37, 0.9); /* boosted shadow marked for easy reading */
}

.testimonio-author-info {
  display: flex;
  flex-direction: column;
}

.testimonios-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonio-btn {
  background-color: var(--primary);
  color: var(--bg-primary);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonio-btn:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

.testimonio-btn svg {
  width: 24px;
  height: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-actions .btn-primary {
  background-color: var(--droplet-yellow);
  color: var(--droplet-forest);
  border-color: var(--droplet-yellow);
  font-weight: 600;
}

.hero-actions .btn-primary:hover {
  background-color: var(--droplet-forest);
  border-color: var(--droplet-forest);
  color: white;
  box-shadow: 0 4px 15px rgba(13, 82, 37, 0.2);
}

.hero-actions .btn-secondary {
  border-color: var(--droplet-yellow);
  color: var(--droplet-yellow);
}

.hero-actions .btn-secondary:hover {
  background-color: var(--droplet-yellow);
  border-color: var(--droplet-yellow);
  color: var(--droplet-forest);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 4rem;
}
/* --- Section Logos --- */
.section-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.75rem;
  display: block;
}

.text-center .section-logo {
  margin-left: auto;
  margin-right: auto;
}

.beneficios-section .section-logo {
  /* Inverts black to white then tints to sage green to match brand palette */
  filter: invert(1) sepia(1) saturate(2) hue-rotate(90deg) brightness(0.75);
}


.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1rem;
  font-variant-ligatures: none;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin: 1.5rem auto;
}

.divider.align-left {
  margin-left: 0;
}

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

/* --- Beneficios Section --- */
.beneficios-section {
  position: relative;
  background: linear-gradient(to bottom, rgba(13, 82, 37, 0.5) 0%, transparent 150px, transparent calc(100% - 150px), hsl(79, 58%, 94%) 100%), 
              linear-gradient(135deg, var(--droplet-yellow) 0%, var(--droplet-lime) 30%, var(--droplet-green) 65%, var(--droplet-forest) 100%);
  color: var(--droplet-forest);
  overflow: hidden;
}

.beneficios-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/forest_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.beneficios-section > .container {
  position: relative;
  z-index: 2;
}

.section-title-white {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--droplet-forest);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-subtitle-gold {
  font-size: 1.25rem;
  color: var(--droplet-forest);
  opacity: 0.85;
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0.05em;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

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

@media (min-width: 992px) {
  .beneficios-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.beneficios-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  box-shadow: 0 8px 32px rgba(13, 82, 37, 0.08);
}

.beneficios-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(13, 82, 37, 0.15);
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.beneficios-item .card-icon {
  background: rgba(13, 82, 37, 0.06);
  color: var(--droplet-forest);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 82, 37, 0.12);
  transition: var(--transition-smooth);
  animation: floatIcon 4s ease-in-out infinite;
}

.beneficios-item:nth-child(even) .card-icon {
  animation-delay: -2s;
}

.beneficios-item .card-icon svg {
  width: 24px;
  height: 24px;
}

.beneficios-item:hover .card-icon {
  background: var(--droplet-forest);
  color: white;
  transform: scale(1.08);
}

.beneficios-item p {
  color: var(--droplet-forest);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--font-sans);
  max-width: 100%;
}

/* --- Abordaje Section --- */
.abordaje-section {
  background: linear-gradient(180deg, hsl(79, 58%, 94%) 0%, hsl(79, 58%, 92%) 50%, hsl(108, 46%, 93%) 100%) !important;
}

.premium-details {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.premium-details summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  cursor: pointer;
}

.premium-details summary::-webkit-details-marker {
  display: none;
}

.summary-thumb {
  width: 60px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(13, 82, 37, 0.06);
  border: 1px solid rgba(13, 82, 37, 0.08);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-details summary:hover .summary-thumb {
  transform: scale(1.05);
}

.premium-details summary h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
}

.premium-details p {
  padding-left: 80px; /* Alinea el texto debajo de la cabecera */
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .premium-details p {
    padding-left: 0; /* En móviles fluye en pantalla completa para leer mejor */
    padding-top: 0.5rem;
  }
}

/* Abordaje Illustration */
.illustration-frame {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(22, 40, 27, 0.03);
  display: flex;
  justify-content: center;
}

.illustration-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@keyframes rotateSys {
  to { transform: rotate(360deg); }
}

.illustration-overlay-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background-color: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(22, 40, 27, 0.15);
}

@media (min-width: 576px) {
  .illustration-overlay-card {
    left: auto;
    width: 320px;
    right: 20px;
    bottom: 20px;
  }
}

.illustration-overlay-card .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.illustration-overlay-card .author {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Modalidades Section --- */
.modalidades-section {
  background: linear-gradient(180deg, hsl(108, 46%, 93%) 0%, hsl(108, 46%, 92%) 50%, hsl(141, 73%, 94%) 100%) !important;
}

.switcher-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.switch-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--primary-light);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.switch-btn.active {
  background-color: var(--droplet-yellow);
  color: var(--droplet-forest);
  border-color: var(--droplet-yellow);
  font-weight: 600;
}

.modalidad-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.modalidad-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.visual-placeholder {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.modalidad-desc h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.modalidad-desc p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-block;
  background-color: rgba(197, 148, 63, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.grupal-banner {
  background-color: var(--bg-light);
  border-left: 3px solid var(--accent);
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 576px) {
  .grupal-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.banner-info {
  font-size: 0.9rem;
}

.banner-info strong {
  display: block;
  color: var(--primary);
}

/* --- Sobre Mí Section --- */
.sobre-mi-section {
  background: linear-gradient(180deg, rgba(230, 240, 220, 0.8) 0%, rgba(230, 240, 220, 0.6) 50%, var(--droplet-cream) 100%) !important;
}

.sobre-mi-img {
  display: flex;
  justify-content: center;
  width: 100%;
}

.img-frame {
  position: relative;
  width: 100%;
  max-width: 560px; /* Increased from 440px to make it larger and more impactful */
  aspect-ratio: 4 / 5;
}

.art-backdrop {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent);
  border-radius: 12px;
  z-index: 1;
}

.profile-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Added shadow for more presence */
  z-index: 2;
}

.over-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--bg-card);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(22, 40, 27, 0.05);
  z-index: 3;
}

.over-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
}

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

.lead-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.sobre-mi-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.formation-block {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.formation-block h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.formation-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.formation-block li {
  font-size: 0.95rem;
  color: var(--text-main);
  padding-left: 1.25rem;
  position: relative;
}

.formation-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- Experiencia Online Section --- */
.online-experience-section {
  background: linear-gradient(180deg, var(--droplet-cream) 0%, rgba(230, 240, 220, 0.92) 150px, rgba(230, 240, 220, 0.92) calc(100% - 150px), var(--droplet-cream) 100%), 
              url('assets/forest_bg.png');
  background-size: cover;
  background-position: center;
  padding-top: 5rem;
  padding-bottom: 9rem;
}

.online-exp-header {
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

.online-exp-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.55;
  color: var(--primary);
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.cameras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.camera-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.camera-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 35px rgba(13, 82, 37, 0.08);
  aspect-ratio: 3/2;
  background-color: var(--bg-card);
  border: 1px solid rgba(13, 82, 37, 0.05);
}

.camera-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.camera-img-wrap:hover img {
  transform: scale(1.06);
}

.camera-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Camera Toggle Button & Interactive Diagram --- */
.camera-toggle-btn {
  background: hsla(141, 73%, 19%, 0.04);
  border: 1px solid rgba(13, 82, 37, 0.1);
  cursor: pointer;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  outline: none;
}

.camera-toggle-btn:hover {
  background-color: var(--droplet-yellow);
  border-color: var(--droplet-yellow);
  color: var(--droplet-forest);
}

.camera-toggle-btn[aria-expanded="true"] {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.camera-toggle-icon {
  width: 14px;
  height: 14px;
  color: inherit;
  transition: var(--transition-fast);
}

.camera-toggle-btn:hover .camera-toggle-icon {
  transform: scale(1.08);
}

/* Diagram Container collapsing system */
.camera-diagram-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.camera-diagram-container.show {
  max-height: 350px; /* high enough for expanded view */
  opacity: 1;
  margin-top: 1.5rem;
}

.camera-diagram-wrapper {
  background-color: var(--bg-primary); /* cream */
  border: 1px dashed rgba(13, 82, 37, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  width: 100%;
}

.diagram-setup, .diagram-thumbnail {
  flex: 1;
  max-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary);
}

.diagram-setup svg, .diagram-thumbnail svg {
  width: 100%;
  height: auto;
  stroke: var(--primary);
  fill: none;
}

.diagram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  color: var(--accent);
  transition: transform 0.4s ease;
}

.diagram-arrow-svg {
  width: 100%;
  height: auto;
  stroke: var(--accent);
}

/* Responsive adjustment (stacked on mobile) */
@media (max-width: 768px) {
  .camera-diagram-wrapper {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
  }
  .diagram-arrow {
    transform: rotate(90deg);
    width: 20px;
    margin: 0.25rem 0;
  }
  .diagram-setup, .diagram-thumbnail {
    max-width: 120px;
  }
  .camera-diagram-container.show {
    max-height: 500px; /* larger for stacked mobile */
  }
}

.camera-card h4.camera-subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  text-transform: none;
}

.camera-description {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0;
}

@media (max-width: 768px) {
  .cameras-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .cameras-grid::-webkit-scrollbar {
    display: none;
  }
  .camera-card {
    min-width: 75vw;
    scroll-snap-align: center;
  }
}

/* --- Pricing Section --- */
.tarifas-section {
  background: linear-gradient(180deg, var(--droplet-cream) 0%, hsl(62, 81%, 96%) 50%, hsl(62, 81%, 95%) 100%) !important;
  padding-top: clamp(6rem, 10vw, 10rem) !important;
}

.pricing-grid {
  margin-bottom: 4rem;
}

.pricing-card {
  background-color: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.recommended {
  border: 2px solid var(--droplet-lime);
  box-shadow: 0 10px 30px rgba(13, 82, 37, 0.08);
  transform: scale(1.03);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--droplet-lime);
  color: white;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-header h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sessions-num {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  min-height: 80px;
}

.pricing-footer {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- FAQ Accordion --- */
.faq-wrapper {
  margin-top: 6rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-heading {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.faq-item h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

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

/* --- Contacto Section --- */
.contacto-section {
  background: linear-gradient(180deg, hsl(62, 81%, 95%) 0%, hsl(79, 58%, 94%) 50%, var(--droplet-cream) 100%) !important;
}

.contacto-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.contacto-link-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--bg-card);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.contacto-link-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(197, 148, 63, 0.08);
}

.contacto-link-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contacto-link-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contacto-link-item strong {
  font-size: 1.1rem;
  color: var(--primary);
}

.lang-info {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form Styles */
.contacto-form-wrapper {
  background-color: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(22, 40, 27, 0.02);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background-color: var(--bg-primary);
  transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(197, 148, 63, 0.1);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* --- Footer --- */
.main-footer {
  background-color: var(--droplet-cream);
  color: var(--text-main);
  padding: 4rem 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 2rem;
}

/* --- Scroll Animation Fallbacks / Entry-Exit --- */
.animate-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Testimonios Section --- */
.testimonios-section {
  position: relative;
  background: linear-gradient(180deg, hsl(141, 73%, 94%) 0%, rgba(230, 240, 220, 0.8) 100%), url('assets/forest_bg.png');
  background-size: cover;
  background-position: center;
  padding: 7rem 0 6rem 0;
  overflow: hidden;
}

.testimonios-logo-wrap {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonios-logo {
  width: 140px;
  height: auto;
  opacity: 0.9;
  animation: logo-breathing 8s ease-in-out infinite;
}

@keyframes logo-breathing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.025);
    opacity: 1;
  }
}

.testimonios-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #2F4A3A; /* Accent forest green */
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.35;
  font-weight: 400;
}

.testimonios-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #555555;
  max-width: 650px;
  margin: 0 auto 4rem auto;
  line-height: 1.6;
}

.testimonios-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0 3rem 0;
}

/* Mask to fade edges of carousel */
.testimonios-carousel-wrapper::before,
.testimonios-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.testimonios-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #F7F6F2, transparent);
}
.testimonios-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #F7F6F2, transparent);
}

.testimonios-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.testimonios-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.testimonios-group {
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

/* Animation removed for native scroll */

.testimonio-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  width: 420px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(22, 40, 27, 0.03);
  border: 1px solid rgba(13, 82, 37, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  user-select: none;
}

.testimonio-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(22, 40, 27, 0.07);
}

.testimonio-stars {
  color: #C5943F; /* Gold color */
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-align: left;
}

.testimonio-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: #1D1D1D;
  line-height: 1.45;
  margin: 0 0 1rem 0;
  font-weight: 400;
  text-align: left;
}

.testimonio-support {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #5A5A5A;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
  text-align: left;
}

.testimonio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.25rem;
  margin-top: auto;
}

.testimonio-author-info {
  text-align: left;
}

.testimonio-author {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  color: #2F4A3A; /* Accent forest green */
  font-size: 0.95rem;
}

.testimonio-platform {
  display: block;
  font-size: 0.75rem;
  color: #888888;
  margin-top: 2px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(66, 133, 244, 0.06);
  padding: 0.35rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(66, 133, 244, 0.1);
  flex-shrink: 0;
}

.google-icon {
  width: 14px;
  height: 14px;
}

.badge-text {
  font-size: 0.75rem;
  color: #4285F4;
  font-weight: 600;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .testimonios-section {
    padding: 5rem 0 4rem 0;
  }
  .testimonio-card {
    width: 340px;
    padding: 2rem;
  }
  .testimonios-carousel-wrapper::before,
  .testimonios-carousel-wrapper::after {
    width: 50px;
  }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.3);
  color: #FFF;
}

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

/* --- Tablet Mockup UI for Experiencia Online --- */

.tablet-mockup {
  background: var(--bg-primary); /* #f9f7f1 */
  border-radius: 28px;
  box-shadow: 
    0 0 0 8px #c8b7a6, /* The outer tablet frame (copper/gold color) */
    0 0 0 10px rgba(0,0,0,0.1), /* thin border */
    0 25px 50px -12px rgba(0,0,0,0.4); /* deep shadow */
  padding: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto;
  position: relative;
  font-family: var(--font-sans);
}

.tablet-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Header */
.tablet-header {
  text-align: center;
  margin-bottom: 1rem;
}

.tablet-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.tablet-title span {
  color: #799a73; /* Lumbra green */
}

.tablet-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.tablet-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a8b0a5;
}

/* Columns */
.tablet-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tablet-col {
  background: rgba(245, 243, 237, 0.7);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.col-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #556c50; /* dark green */
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.col-title {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 500;
}

.col-image-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eae8e1;
}

.col-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.col-footer {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.leaf-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #799a73;
}

/* Video Grid for Cam 3 */
.video-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: transparent !important;
}

.video-feed {
  position: relative;
  width: 100%;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.video-feed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(40, 50, 40, 0.75);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Toolbar */
.tablet-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.tool-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e2dfd5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tool-btn:hover {
  background: #d4d0c4;
  transform: scale(1.05);
}

.tool-btn svg {
  width: 22px;
  height: 22px;
}

.tool-btn.end-call {
  background: #c94b32;
  color: white;
  transform: scale(1.1);
}

.tool-btn.end-call:hover {
  background: #b04029;
  transform: scale(1.15);
}

/* Tablet Descriptions (outside tablet) */
.tablet-descriptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.desc-item h5 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.desc-item p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .tablet-columns {
    grid-template-columns: 1fr;
  }
  
  .tablet-descriptions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tablet-mockup {
    padding: 1.5rem;
  }
  
  .video-feed {
    height: 200px;
  }
}

/* --- Session Process Layout (Pricing Redesign) --- */

.session-process-layout {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pricing-banner {
  background: var(--bg-primary); /* Use a soft cream */
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.pricing-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 500;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.process-step {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  gap: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  align-items: flex-start;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef2ed; /* soft green */
  color: #799a73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.step-connector {
  display: flex;
  justify-content: center;
  height: 40px;
}

.step-connector .line {
  width: 2px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #d4dbd1 0, #d4dbd1 6px, transparent 6px, transparent 12px);
}

@media (max-width: 600px) {
  .process-step {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
}

/* --- Single Price Card Layout --- */

.single-price-card {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.spc-left {
  flex: 0 0 40%;
  background: var(--bg-primary); /* Use Lumbra's soft cream/beige */
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.spc-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.08), rgba(0,0,0,0));
}

.spc-price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.spc-currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-right: 0.2rem;
}

.spc-amount {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}

.spc-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #556c50; /* Lumbra green */
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spc-duration svg {
  width: 18px;
  height: 18px;
}

.spc-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.spc-btn {
  width: 100%;
}

.spc-right {
  flex: 0 0 60%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spc-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.spc-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.spc-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef2ed;
  color: #799a73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.spc-step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.spc-step-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .single-price-card {
    flex-direction: column;
  }
  .spc-left::after {
    display: none;
  }
  .spc-left {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .spc-right {
    padding: 2.5rem 1.5rem;
  }
}
