/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(239,241,234,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22,34,28,0.07);
}

.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.brand-image{
  width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links li { margin: 0; }

.nav-lnk {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  transition: color 0.2s ease;
}

.nav-lnk:hover { color: var(--c-green); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--c-bg);
  border-bottom: 1px solid rgba(22,34,28,0.08);
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 32px rgba(22,34,28,0.12);
}

.mobile-menu[hidden] { display: none; }

.mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
  padding: 12px 0;
  border-bottom: 1px solid rgba(22,34,28,0.07);
  display: block;
}

.mobile-cta {
  display: block;
  text-align: center;
  margin-top: 16px;
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(22,34,28,0.14);
  border-radius: var(--r-pill);
}

.lang-btn {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(22,34,28,0.55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 9px;
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover { color: var(--c-ink); }

.lang-btn.is-active {
  color: #EFF1EA;
  background: var(--c-green);
}

.lang-switch--mobile {
  align-self: flex-start;
  margin-top: 20px;
}

/*  BUTTONS */
.btn-cta {
  font-size: 15px;
  font-weight: 600;
  color: #EFF1EA;
  background: var(--c-green);
  padding: 10px 24px;
  border-radius: var(--r-pill);
  display: inline-block;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.btn-cta:hover {
  background: #3C8757;
  box-shadow: 0 6px 20px rgba(79,163,107,0.35);
  color: #EFF1EA;
}

.btn-cta:active { transform: scale(0.98); }

.btn-cta--lg {
  font-size: 16px;
  padding: 14px 32px;
}

.btn-cta--full {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-ghost {
  font-weight: 600;
  color: var(--c-ink);
  border: 1.5px solid rgba(22,34,28,0.2);
  padding: 13px 32px;
  border-radius: var(--r-pill);
  display: inline-block;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(79,163,107,0.1);
  border-color: var(--c-green);
  color: var(--c-green);
}

.btn-ghost--sm {
  font-size: 14px;
  padding: 10px 20px;
  color: var(--c-green);
  border-color: rgba(79,163,107,0.4);
}

.btn-ghost--sm:hover {
  background: rgba(79,163,107,0.12);
  border-color: var(--c-green);
  color: var(--c-green);
}

/*  HERO */
.hero-section {
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.h1-hero {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin: 0 0 24px;
}

.hero-lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(22,34,28,0.7);
  margin: 0 0 40px;
  max-width: 520px;
}

.store-badges {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.store-badge-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(22,34,28,0.15);
  transition: transform 0.2s ease;
}

.store-badge-link:hover { transform: translateY(-2px); }
.store-badge-link img { height: 50px; width: auto; display: block; }

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fn-line {
  width: 20px;
  height: 1px;
  background: rgba(22,34,28,0.25);
  flex-shrink: 0;
}

.fn-text {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: rgba(22,34,28,0.42);
  text-transform: uppercase;
}

/* Phone visual */
.phone-visual {
  position: relative;
  display: inline-block;
  width: 100%;
}

.phone-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(22,34,28,0.22), 0 0 0 1px rgba(22,34,28,0.06);
}

/* Floating chips */
.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
}

.chip-a {
  top: 15%;
  left: -76px;
  background: #EFF1EA;
  border-radius: var(--r-pill);
  padding: 9px 18px;
  box-shadow: 0 8px 28px rgba(22,34,28,0.14);
}

.chip-b {
  top: 45%;
  right: -82px;
  background: var(--c-forest);
  border-radius: 10px;
  padding: 8px 16px;
  box-shadow: 0 8px 28px rgba(22,34,28,0.28);
}

.chip-b .chip-data {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--c-green);
  letter-spacing: 0.05em;
}

.chip-c {
  bottom: 18%;
  left: -60px;
  background: #EFF1EA;
  border-radius: var(--r-pill);
  padding: 9px 18px;
  box-shadow: 0 8px 28px rgba(22,34,28,0.14);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}

.phone-mobile {
  margin-top: 48px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.phone-mobile img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(22,34,28,0.18);
}

/*  CÓMO FUNCIONA (3 steps) */
.steps-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step-connector {
  position: absolute;
  top: 31px;
  left: calc(16.67% + 18px);
  right: calc(16.67% + 18px);
  height: 1px;
  background: linear-gradient(to right, var(--c-green), rgba(79,163,107,0.2), var(--c-green));
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
}

.step-circle--dark {
  background: var(--c-forest);
  box-shadow: 0 8px 24px rgba(31,61,49,0.35);
}

.step-circle--green {
  background: var(--c-green);
  box-shadow: 0 8px 28px rgba(79,163,107,0.45);
}

.step-circle__ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(79,163,107,0.25);
}

.step-circle--green .step-circle__ring {
  border-color: rgba(79,163,107,0.4);
}

.step-num {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-green);
}

.step-circle--green .step-num { color: #EFF1EA; }

.step-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 12px;
}

.step-desc {
  font-size: 16px;
  color: rgba(22,34,28,0.65);
  line-height: 1.65;
}

/*  CARDS (shared) */
.card-white {
  background: #fff;
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(22,34,28,0.07);
}

.card-white--lg { padding: 28px 32px; }

.card-dark {
  background: var(--c-forest);
  border-radius: var(--r-card);
  padding: 28px 32px;
  box-shadow: 0 8px 32px rgba(31,61,49,0.3);
  position: relative;
  overflow: hidden;
}

.card-alt {
  background: var(--c-bg-alt);
  border-radius: var(--r-card-lg);
  padding: 40px;
}

.card-forest-lg {
  background: var(--c-forest);
  border-radius: var(--r-card-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(31,61,49,0.3);
}

.card-glass {
  background-image: url("https://ciamo.claraom.ch/src/method-om-card-background.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--r-card);
  padding: 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.card-glass--active {
  background: rgba(79,163,107,0.1);
  border-color: rgba(79,163,107,0.25);
}

/* Lift on hover */
.lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(22,34,28,0.13) !important;
}

/* Card heading */
.card-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0;
  flex: 1;
}

.card-title--lg {
  font-size: 24px;
  margin: 0 0 12px;
}

.card-title--light {
  color: #EFF1EA;
  font-size: 22px;
  margin: 0 0 8px;
}

.card-title--xl {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: #EFF1EA;
  margin: 0 0 12px;
}

.card-body {
  font-size: 15px;
  color: rgba(22,34,28,0.66);
  line-height: 1.65;
  margin: 0;
}

.card-body--sm {
  font-size: 15px;
  color: rgba(239,241,234,0.65);
  line-height: 1.65;
  margin: 0;
}

/* Card header row */
.card-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/*  BADGES / CHIPS (AR, IA tags) */
.badge-ar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-green-dark);
  background: rgba(79,163,107,0.11);
  border: 1px solid rgba(79,163,107,0.3);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-ia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-forest);
  background: rgba(31,61,49,0.1);
  border: 1px solid rgba(31,61,49,0.22);
  padding: 4px 11px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
}

.badge-dot--green { background: var(--c-green); }
.badge-dot--forest { background: var(--c-green-dark); }

/*  POSTURA status pills */
.status-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-pill {
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.status-pill--green {
  background: rgba(79,163,107,0.07);
  border: 1px solid rgba(79,163,107,0.25);
}

.status-pill--amber {
  background: rgba(224,164,88,0.07);
  border: 1px solid rgba(224,164,88,0.28);
}

.status-pill--terra {
  background: rgba(217,105,75,0.07);
  border: 1px solid rgba(217,105,75,0.25);
}

.status-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.status-pill__dot--green  { background: var(--c-green); }
.status-pill__dot--amber  { background: var(--c-amber); }
.status-pill__dot--terra  { background: var(--c-terra); }

.status-pill__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.status-pill__label--green  { color: var(--c-green); }
.status-pill__label--amber  { color: var(--c-amber-dark); }
.status-pill__label--terra  { color: var(--c-terra-dark); }

.status-pill__desc {
  font-size: 13px;
  color: rgba(22,34,28,0.58);
  line-height: 1.5;
}

/*  POSTURA Text Neck meter */
.meter-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(22,34,28,0.45);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.meter-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 64px;
  margin-bottom: 10px;
}

.meter-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.meter-bar {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.meter-bar--1 { height: 22%; background: var(--c-green); }
.meter-bar--2 { height: 48%; background: var(--c-green-light); }
.meter-bar--3 { height: 73%; background: var(--c-amber); }
.meter-bar--4 { height: 100%; background: var(--c-terra); }

.meter-legend {
  display: flex;
  gap: 5px;
  border-top: 1px solid rgba(22,34,28,0.1);
  padding-top: 8px;
}

.meter-legend__item {
  flex: 1;
  text-align: center;
}

.meter-legend__range {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.meter-legend__label {
  font-size: 11px;
  color: rgba(22,34,28,0.55);
}

.meter-legend__range--1 { color: var(--c-green); }
.meter-legend__range--2 { color: var(--c-green-light); }
.meter-legend__range--3 { color: var(--c-amber); }
.meter-legend__range--4 { color: var(--c-terra); }

/*  EMOCIONES blockquote highlight */
.quote-block {
  background: rgba(31,61,49,0.05);
  border-left: 3px solid var(--c-green);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  margin-top: 16px;
}

.quote-block p {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-green-dark);
  font-style: italic;
}

/* Dark card sub-label */
.card-sublabel {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-green);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/*  PROGRAMAS day progress list */
.prog-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prog-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
}

.prog-item--done {
  background: rgba(79,163,107,0.07);
  border: 1px solid rgba(79,163,107,0.2);
}

.prog-item--active {
  background: #EFF1EA;
  border: 2px solid var(--c-green);
  box-shadow: 0 4px 16px rgba(79,163,107,0.14);
}

.prog-item--locked {
  background: var(--c-bg-alt);
  border: 1px solid rgba(22,34,28,0.08);
}

.prog-item--locked-2 {
  opacity: 0.38;
}

.prog-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prog-dot--done {
  background: var(--c-green);
}

.prog-dot--active {
  border: 2px solid var(--c-green);
}

.prog-dot--active::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  display: block;
}

.prog-dot--locked {
  background: rgba(22,34,28,0.1);
  font-size: 14px;
  line-height: 1;
}

.prog-check {
  color: #EFF1EA;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.prog-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 2px;
}

.prog-status {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-green);
  letter-spacing: 0.07em;
}

.prog-locked-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(22,34,28,0.5);
}

.prog-note {
  font-size: 13px;
  color: rgba(22,34,28,0.45);
  margin: 18px 0 0;
  font-style: italic;
}

/* Focus mode card */
.focus-session {
  background: rgba(79,163,107,0.1);
  border: 1px solid rgba(79,163,107,0.25);
  border-radius: 16px;
  padding: 20px 24px;
}

.focus-label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.focus-timer {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 800;
  color: #EFF1EA;
  letter-spacing: -0.02em;
  line-height: 1;
}

.focus-sub {
  font-size: 14px;
  color: rgba(239,241,234,0.55);
  margin-top: 6px;
}

/*  TABS (Programas / Talleres) */
.tab-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  background: transparent;
  color: rgba(22,34,28,0.6);
  border: 1.5px solid rgba(22,34,28,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.tab-btn[data-active="true"] {
  background: var(--c-green);
  color: #EFF1EA;
  border-color: var(--c-green);
}

.tab-pill {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(22,34,28,0.07);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}

.tab-btn[data-active="true"] .tab-pill {
  background: rgba(239,241,234,0.2);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/*  MÉTODO OM pillars */
#metodo.bg-forest {
  background: url("https://ciamo.claraom.ch/src/method-om-background.png") no-repeat center center / cover;
}

.pillar-wrapper {
  position: relative;
}

.pillar-connector {
  position: absolute;
  top: 40px;
  left: calc(16.67%);
  right: calc(16.67%);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(79,163,107,0.25), rgba(79,163,107,0.25), transparent);
  z-index: 0;
}

.pillar-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  position: relative;
  overflow: hidden;
}

/* Per-pillar avatar image (falls back to the OMx monogram if it fails to load) */
.pillar-avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.pillar-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  /* color: #EFF1EA; */
  color: #000000;
  margin: 0 0 8px;
}

.pillar-sub {
  font-size: 13px;
  /* color: var(--c-green); */
  color: #000000;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.pillar-body {
  font-size: 15px;
  /* color: rgba(239,241,234,0.72); */
  color: #000000;
  line-height: 1.68;
}

/*  BENEFICIOS */
.benefit-card {
  border-radius: var(--r-card);
  padding: 36px;
}

.benefit-card--alt { background: var(--c-bg-alt); }

.benefit-card--green {
  background: rgba(79,163,107,0.08);
  border: 1px solid rgba(79,163,107,0.2);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 1;
}

.benefit-icon--dark { background: var(--c-forest); }
.benefit-icon--green { background: var(--c-green); }

.benefit-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 12px;
}

.benefit-body {
  font-size: 15px;
  color: rgba(22,34,28,0.65);
  line-height: 1.7;
}

/*  CREDIBILIDAD */
.cred-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.cred-badge {
  background: var(--c-bg-alt);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: left;
}

.cred-badge__title {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cred-badge__sub {
  font-size: 13px;
  color: rgba(22,34,28,0.55);
}

/*  CONTACT FORM */
.form-card {
  background: #EFF1EA;
  border-radius: var(--r-card-lg);
  padding: 48px;
  box-shadow: 0 8px 40px rgba(22,34,28,0.1);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 7px;
}

.form-label-opt {
  font-weight: 400;
  color: rgba(22,34,28,0.4);
}

.form-fld {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(22,34,28,0.15);
  border-radius: 12px;
  font-size: 15px;
  background: #EFF1EA;
  color: var(--c-ink);
  font-family: var(--f-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-fld:focus {
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(79,163,107,0.18);
}

.form-fld::placeholder { color: rgba(22,34,28,0.35); }

textarea.form-fld {
  resize: vertical;
  min-height: 100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row { margin-bottom: 16px; }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.form-consent label {
  font-size: 14px;
  color: rgba(22,34,28,0.62);
  line-height: 1.6;
  cursor: pointer;
}

/* Form error message */
.form-error {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-terra);
  margin: 0 0 16px;
}

.form-error[hidden] { display: none; }

@media (max-width: 860px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
}

/* Success panel */
.success-panel {
  background: #EFF1EA;
  border-radius: var(--r-card-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(22,34,28,0.1);
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(79,163,107,0.1);
  border: 2px solid var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--c-green);
  line-height: 1;
}

.success-title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 12px;
}

.success-body {
  font-size: 16px;
  color: rgba(22,34,28,0.62);
  line-height: 1.65;
}

/*  FAQ ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-faq-item] {
  border-bottom: 1px solid rgba(22,34,28,0.1);
}

[data-faq-btn] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.3;
}

.faq-chev {
  display: inline-flex;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(22,34,28,0.5);
  transition: transform 0.3s ease;
}

[data-faq-item].faq-open .faq-chev { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}

[data-faq-item].faq-open .faq-body { max-height: 600px; }

.faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 16px;
  color: rgba(22,34,28,0.68);
  line-height: 1.72;
}

.faq-answer a {
  color: var(--c-green);
  font-weight: 500;
}

/*  SPINE NODE (pulse) */
.spine-nd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}

/*  FOOTER */
.site-footer {
  background: var(--c-forest);
  padding: 80px 0 40px;
}

.footer-brand { margin-bottom: 16px; }

.footer-brand-image{
  width: 150px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(239,241,234,0.58);
  line-height: 1.7;
  margin: 0 0 20px;
}

.footer-made {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(239,241,234,0.35);
  text-transform: uppercase;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(239,241,234,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 15px;
  color: rgba(239,241,234,0.68);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--c-green); }

.footer-bottom {
  border-top: 1px solid rgba(239,241,234,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 14px;
  color: rgba(239,241,234,0.38);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(239,241,234,0.38);
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: rgba(239,241,234,0.7); }

/*  IMAGE wrappers */
.img-card {
  display: flex;
  align-items: end;
  justify-content: end;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(22,34,28,0.15);
  background: var(--c-bg-alt);
}

.img-card img { height: 75vh; }

/*  TALLERES section */
.retiro-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-amber);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/*  HERO copy eyebrow mb */
.hero-eyebrow { margin-bottom: 20px; }

/*  Section intro block (eyebrow + heading) */
.section-intro { text-align: center; margin-bottom: 72px; }
.section-intro .eyebrow { margin-bottom: 14px; }

.section-intro--sm { margin-bottom: 52px; }

/*  HERO — 3-verb subheadline + Swiss badge */
.hero-lead--verbs {
  font-size: 20px;
  font-weight: 500;
  color: rgba(22,34,28,0.82);
  line-height: 1.55;
}

.hero-swiss__logo{
  width: 200px;
}

/*  Left-aligned section heading (Text Neck) */
.s-h2--left { text-align: left; }

/*  TEXT NECK */
.textneck-body {
  font-size: 17px;
  color: rgba(22,34,28,0.7);
  line-height: 1.72;
  margin: 0 0 18px;
  max-width: 540px;
}

.textneck-body em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-dark);
}

.textneck-stats {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.textneck-stat {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 4px 20px rgba(22,34,28,0.06);
}

.textneck-stat__value {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-green-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.textneck-stat__label {
  font-size: 13px;
  color: rgba(22,34,28,0.6);
  line-height: 1.4;
}

/*  TESTIMONIOS */
.testi-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(22,34,28,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi-card--feature {
  background: var(--c-forest);
  box-shadow: 0 12px 44px rgba(31,61,49,0.28);
}

.testi-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #EFF1EA;
  background: rgba(79,163,107,0.18);
  border: 1px solid rgba(79,163,107,0.42);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}

.testi-metric__badge {
  font-weight: 700;
  color: var(--c-green-light);
}

.testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(22,34,28,0.75);
  margin: 0 0 24px;
  flex: 1;
}

.testi-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 0.6;
  color: var(--c-green);
  opacity: 0.4;
  margin-bottom: 10px;
}

.testi-card--feature .testi-quote { color: rgba(239,241,234,0.9); }
.testi-card--feature .testi-quote::before { color: var(--c-green-light); opacity: 0.6; }

.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-forest);
  background: var(--c-bg-alt);
}

.testi-avatar--green { background: var(--c-green); color: #EFF1EA; }

.testi-person { display: flex; flex-direction: column; }

.testi-name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
}

.testi-role {
  font-size: 13px;
  color: rgba(22,34,28,0.55);
  margin-top: 2px;
}

.testi-card--feature .testi-name { color: #EFF1EA; }
.testi-card--feature .testi-role { color: rgba(239,241,234,0.6); }
.testi-card--feature .testi-avatar { color: var(--c-forest); }

.testi-caption {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(22,34,28,0.42);
  line-height: 1.5;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(22,34,28,0.1);
}

.testi-card--feature .testi-caption {
  color: rgba(239,241,234,0.5);
  border-top-color: rgba(239,241,234,0.15);
}

/*  MÉTODO OM — intro, benefit line, trust phrase */
.metodo-intro {
  font-size: 17px;
  color: rgba(239,241,234,0.72);
  line-height: 1.72;
  max-width: 620px;
  margin: 0 auto;
}

.metodo-intro em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-green-light);
}

.pillar-benefit {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-green-light);
  line-height: 1.45;
  margin-bottom: 14px;
}

.metodo-trust {
  text-align: center;
  max-width: 660px;
  margin: 56px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(239,241,234,0.12);
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(239,241,234,0.82);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .h1-hero { font-size: 36px !important; line-height: 1.1 !important; }
  .phone-visual { overflow: visible; }
  .chip { display: none; }

  .s-h2--left { text-align: center; }
  .textneck-body { margin-left: auto; margin-right: auto; }
  .metodo-trust { font-size: 16px; }
}
