/* =========================================================
   +golf — finishing styles
   Missing hero refinements + functional ROI calculator
   ========================================================= */

/* ---------- Hero refinements ---------- */
.gold-accent {
  color: var(--gold);
  font-weight: 800;
}
.hero h1 .gold-accent {
  font-style: italic;
  font-weight: 500;
  font-family: 'Cormorant Garamond', 'Inter', serif;
}

.hero__card li .hero__card-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.hero__card-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ---------- ROI Calculator section ---------- */
.section--calc {
  position: relative;
  background: var(--green);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.section--calc::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 2px, transparent 2px 14px),
    radial-gradient(ellipse at 80% 0%, rgba(212,150,58,.14), transparent 55%);
}

.calc__head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px;
}
.calc__eyebrow {
  justify-content: center;
  color: var(--gold);
}
.calc__title {
  color: #fff;
  margin-top: 18px;
}
.calc__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-family: 'Cormorant Garamond', 'Inter', serif;
}
.calc__lede {
  color: rgba(255,255,255,.72);
  margin: 18px auto 0;
}

.calc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 44px);
  max-width: 940px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.calc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.calc-card__head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}
.calc-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,150,58,.14);
  border: 1px solid rgba(212,150,58,.3);
  color: var(--gold);
  flex-shrink: 0;
}
.calc-card__icon svg { width: 26px; height: 26px; }
.calc-card__head h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.calc-card__desc {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Inputs grid */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.calc-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.calc-field__value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.calc-field__value .unit {
  color: var(--gold);
  font-size: .7em;
  margin-left: 2px;
}

/* Range sliders */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--pct, 36%), rgba(255,255,255,.16) var(--pct, 36%));
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  transition: transform .15s var(--t);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* Segmented control */
.calc-seg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 4px;
}
.calc-seg button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 11px 6px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .2s var(--t), color .2s var(--t);
}
.calc-seg button:hover { color: #fff; }
.calc-seg button.is-active {
  background: var(--gold);
  color: var(--green-ink);
}

/* Result */
.calc-result {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(212,150,58,.08);
  border: 1px solid rgba(212,150,58,.28);
  margin-bottom: 30px;
}
.calc-result__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.calc-result__value {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold-soft);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-result__sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  max-width: 46ch;
  margin: 14px auto 0;
  line-height: 1.5;
}

/* Features */
.calc-card__features {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.calc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.calc-feature__icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--gold);
}
.calc-feature__icon svg { width: 17px; height: 17px; }

.calc-card__cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .calc-grid { grid-template-columns: 1fr; gap: 24px; }
  .calc-card__features { gap: 16px; }
}

/* ---------- Why panel bullets (replaces numbered list) ---------- */
.why__panel li .bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---------- Hero Venn diagram ---------- */
.hero__venn {
  align-self: end;
  background: linear-gradient(160deg, #0f3b32 0%, #0a2a23 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 24px 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.hero__venn::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.venn {
  width: 100%;
  height: auto;
  display: block;
}
.venn__caption { text-align: center; margin-top: 4px; }
.venn__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  white-space: nowrap;
}
.venn__tags .vdot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.venn__tagline {
  margin: 12px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,.85);
}
.venn__tagline em { color: var(--gold); font-style: italic; }

/* ---------- Service card variant (emoji / number / tag) ---------- */
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-card__emoji {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #eef3f1;
  border: 1px solid #d0deda;
  line-height: 1;
}
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
}
.service-card__big {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--green);
  background: rgba(14,58,49,.07);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}

/* ---------- Sector card variant (emoji + body) ---------- */
.sector-card__emoji {
  font-size: 30px;
  line-height: 1;
}
.sector-card__body { margin-top: auto; }
.sector-card__body h3 { margin: 0 0 10px; }
.sector-card__body p { margin: 0; }

/* ---------- Contact info links ---------- */
.contact__info li a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
.contact__info li a:hover { color: var(--gold); }

/* ---------- Process columns (¿Cómo funcionamos?) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px;
  box-shadow: 0 4px 20px rgba(14,58,49,.04);
}
.process-col__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.process-col__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #eef3f1;
  border: 1px solid #d0deda;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.process-col__head h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.process-steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.process-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.55;
}
.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}

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

/* ---------- Quiénes somos prose + panel ---------- */
.why__prose p {
  font-size: 16px;
  color: #2d3a35;
  line-height: 1.75;
  margin: 0 0 18px;
}
.why__prose p:last-child { margin-bottom: 0; }
.why__panel-lede {
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}
.why__panel-goal {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 17px;
  color: #fff;
  line-height: 1.5;
}
.why__panel-goal strong { color: var(--gold); font-weight: 700; }
