/* factu.css — LumeX Factu Landing · Estilos premium
   Mapeo de paleta global con variables y soporte Dark Mode nativo
   ─────────────────────────────────────────────────────────── */

/* ═══ VARIABLES Y DISEÑO GLOBAL ═════════════════════════════ */
:root {
  --fc-ink:      #0A2540;
  --fc-slate:    #5A6B7B;
  --fc-mint:     #00E5A0;
  --fc-aqua:     #00B4D8;
  --fc-bone:     #F6F8F7;
  --fc-mist:     #E8F2EE;
  --fc-line:     #E2E8E5;
  --fc-white:    #FFFFFF;
  --fc-grad:     linear-gradient(135deg, #00E5A0 0%, #00B4D8 100%);
  --fc-r:        12px;
  --fc-r-lg:     20px;
  --fc-shadow:   0 4px 24px rgba(10,37,64,.08);
  --fc-shadow-lg: 0 12px 48px rgba(10,37,64,.14);
}

[data-theme="dark"] {
  --fc-ink:      #F0F4F2;
  --fc-slate:    #A4B5C6;
  --fc-bone:     #07121F;
  --fc-mist:     #0C1B2A;
  --fc-line:     rgba(246,248,247,.12);
  --fc-white: #112638;
  --fc-shadow:    0 4px 24px rgba(0,0,0,.3);
  --fc-shadow-lg: 0 12px 48px rgba(0,0,0,.5);
}

/* Base resets específicos */
.fc-wrap { width: min(1140px, 100% - 48px); margin-inline: auto }
.fc-section { padding: 88px 0 }
.fc-section--mist { background: var(--fc-mist) }
.fc-section--dark { background: #0A2540; color: #fff }

/* ═══ CABECERA DE SECCIÓN ════════════════════════════════════ */
.fc-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Geist Mono', monospace;
  font-size: .72rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--fc-slate);
  margin-bottom: 14px;
}
.fc-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fc-mint); flex-shrink: 0;
  animation: fc-pulse 2.2s ease-in-out infinite;
}
.fc-section--dark .fc-eyebrow { color: rgba(255,255,255,.45) }

@keyframes fc-pulse {
  0%, 100% { opacity: 1; transform: scale(1) }
  50%       { opacity: .35; transform: scale(.7) }
}

.fc-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.04em;
  margin-bottom: 16px;
  color: var(--fc-ink);
}
.fc-section--dark .fc-h2 { color: #fff }
.fc-h2 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400; color: var(--fc-mint);
}
.fc-lede {
  font-size: 1.05rem; color: var(--fc-slate); line-height: 1.68;
  max-width: 560px;
}
.fc-section--dark .fc-lede { color: rgba(255,255,255,.6) }
.fc-section__head { text-align: center; margin-bottom: 56px }
.fc-section__head .fc-lede { margin-inline: auto }

/* ═══ BOTONES ════════════════════════════════════════════════ */
.fc-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fc-mint); color: #0A2540;
  padding: 15px 30px; border-radius: 9px;
  font-weight: 700; font-size: .95rem; letter-spacing: -.01em;
  border: none; transition: transform .15s, box-shadow .15s;
}
.fc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,229,160,.3) }

.fc-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.25); color: #fff;
  padding: 14px 28px; border-radius: 9px;
  font-weight: 500; font-size: .95rem;
  transition: border-color .15s, background .15s;
}
.fc-btn-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06) }

/* ═══ HERO SECTION ═══════════════════════════════════════════ */
.fc-hero {
  background: #0A2540; color: #fff;
  padding: 80px 0 96px; overflow: hidden; position: relative;
}
.fc-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 85% 60%, rgba(0,229,160,.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 30%, rgba(0,180,216,.07) 0%, transparent 60%);
}
.fc-hero__grid {
  width: min(1140px, 100% - 48px); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.fc-hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: .7rem; font-weight: 500; letter-spacing: .1em;
  color: var(--fc-mint); text-transform: uppercase; margin-bottom: 20px;
}
.fc-hero-chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--fc-mint); animation: fc-pulse 1.8s ease-in-out infinite;
}
.fc-h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.045em;
  margin-bottom: 24px; color: #fff;
}
.fc-h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 400;
  background: var(--fc-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fc-hero__lede {
  font-size: 1.1rem; color: rgba(255,255,255,.68);
  max-width: 500px; line-height: 1.7; margin-bottom: 36px;
}
.fc-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap }
.fc-hero__trust {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 32px; font-size: .78rem; color: rgba(255,255,255,.4);
}
.fc-hero__trust-tag {
  border: 1px solid rgba(255,255,255,.12); padding: 4px 11px;
  border-radius: 4px; font-family: 'Geist Mono', monospace; font-size: .67rem;
}

/* Mockup OCR */
.fc-ocr-mockup {
  background: #0d1929; border-radius: 18px; padding: 14px;
  border: 1.5px solid rgba(255,255,255,.08);
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
}
.fc-ocr-header {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}
.fc-ocr-dot { width: 9px; height: 9px; border-radius: 50% }
.fc-ocr-title {
  font-family: 'Geist Mono', monospace; font-size: .62rem;
  color: rgba(255,255,255,.28); margin: 0 auto;
}
.fc-ocr-body {
  display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 14px; padding: 4px;
}

/* Panel del ticket con láser */
.fc-ticket-panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 16px 10px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 220px;
}

/* Divisor de ticket elegante sin envoltura de texto */
.fc-t-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  margin: 6px 0;
  height: 0;
  overflow: hidden;
}
.fc-laser-scan {
  position: absolute; left: 0; right: 0; height: 4px;
  background: #00E5A0; box-shadow: 0 0 12px #00E5A0, 0 0 2px #00E5A0;
  animation: laserScan 3.5s ease-in-out infinite;
  z-index: 2; pointer-events: none;
}
@keyframes laserScan {
  0%, 100% { top: 0% }
  50% { top: 98% }
}
.fc-ticket-content {
  font-family: 'Geist Mono', monospace; font-size: .62rem;
  color: rgba(255,255,255,.75); line-height: 1.5;
  text-align: center;
}
.fc-t-title { font-weight: 700; color: #fff; font-size: .7rem; margin-bottom: 2px }
.fc-t-date { color: rgba(255,255,255,.45); margin-bottom: 6px }
.fc-t-row { display: flex; justify-content: space-between; margin: 2px 0 }
.fc-t-total { display: flex; justify-content: space-between; font-weight: 700; color: var(--fc-mint); font-size: .72rem }

/* Panel de extracción logs */
.fc-extract-panel {
  display: flex; flex-direction: column; gap: 10px;
}
.fc-ext-head {
  font-family: 'Geist Mono', monospace; font-size: .64rem;
  color: var(--fc-mint); text-transform: uppercase; letter-spacing: .06em;
}
.fc-ext-logs {
  background: rgba(0,0,0,.3); border-radius: 6px; padding: 8px 12px;
  font-family: 'Geist Mono', monospace; font-size: .62rem;
  color: #a4b5c6; height: 75px; overflow-y: auto; overflow-x: hidden; box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column; gap: 4px;
}
.fc-log-line {
  line-height: 1.4;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fc-log-line.is-success { color: var(--fc-mint) }
.fc-log-line.is-info { color: var(--fc-aqua) }

.fc-ext-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.fc-ext-item {
  display: flex; justify-content: space-between; font-size: .73rem;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.04); padding-bottom: 4px;
}
.fc-ext-item strong { color: rgba(255,255,255,.85); font-weight: 500 }
.fc-ext-item span {
  font-family: 'Geist Mono', monospace; font-weight: 500; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 130px; display: inline-block; vertical-align: bottom;
}
.fc-ext-item--total { border-bottom: none; padding-bottom: 0 }
.fc-ext-item--total strong { color: var(--fc-mint); font-weight: 700 }
.fc-ext-item--total span { color: var(--fc-mint); font-weight: 700; font-size: .8rem }

@media (max-width: 950px) {
  .fc-hero__grid { grid-template-columns: 1fr; text-align: center }
  .fc-hero__lede { margin-inline: auto }
  .fc-hero__ctas { justify-content: center }
  .fc-hero__trust { justify-content: center }
  .fc-ocr-mockup { max-width: 440px; margin-inline: auto }
}
@media (max-width: 480px) {
  .fc-ocr-body { grid-template-columns: minmax(0, 1fr) }
}

/* ═══ STATS STRIP ═══════════════════════════════════════════ */
.fc-stats {
  background: var(--fc-white); border-top: 1px solid var(--fc-line); border-bottom: 1px solid var(--fc-line);
  padding: 36px 0;
}
.fc-stats__grid {
  width: min(1140px, 100% - 48px); margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.fc-stat__num {
  font-family: 'Geist Mono', monospace; font-size: 2.2rem; font-weight: 800;
  background: var(--fc-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.fc-stat__lbl { font-size: .82rem; color: var(--fc-slate); margin-top: 6px }
@media (max-width: 750px) { .fc-stats__grid { grid-template-columns: repeat(2, 1fr) } }

/* ═══ FEATURES ══════════════════════════════════════════════ */
.fc-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px;
}
.fc-feat {
  background: var(--fc-white); border: 1.5px solid var(--fc-line);
  border-radius: var(--fc-r-lg); padding: 32px;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.fc-feat::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--fc-grad);
}
.fc-feat:hover { transform: translateY(-4px); box-shadow: var(--fc-shadow-lg) }
.fc-feat__icon {
  font-size: 1.8rem; margin-bottom: 14px;
}
.fc-feat h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; color: var(--fc-ink) }
.fc-feat p { font-size: .86rem; color: var(--fc-slate); line-height: 1.65 }
.fc-feat__tag {
  display: inline-block; margin-top: 14px;
  font-family: 'Geist Mono', monospace; font-size: .63rem; letter-spacing: .06em;
  color: var(--fc-slate); background: var(--fc-bone); padding: 3px 9px; border-radius: 4px;
}
.fc-feat__tag.is-new { background: rgba(0,229,160,.12); color: var(--fc-ink) }
@media (max-width: 900px) { .fc-features { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 600px) { .fc-features { grid-template-columns: 1fr } }

/* ═══ CALCULADORA FISCAL INTERACTIVA ════════════════════════ */
.fc-calc-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start;
}

/* Controles Izquierda */
.fc-calc-controls {
  background: var(--fc-white); border: 1.5px solid var(--fc-line);
  border-radius: var(--fc-r-lg); padding: 32px;
  box-shadow: var(--fc-shadow);
}
.fc-calc-title {
  font-size: 1.15rem; font-weight: 700; color: var(--fc-ink);
  margin-bottom: 24px; border-bottom: 1px solid var(--fc-line); padding-bottom: 12px;
}
.fc-slider-group {
  margin-bottom: 28px;
}
.fc-slider-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.fc-slider-header label { font-size: .84rem; font-weight: 600; color: var(--fc-ink) }
.fc-slider-val {
  font-family: 'Geist Mono', monospace; font-size: 1.1rem; font-weight: 700;
  color: var(--fc-mint); background: rgba(0,229,160,.06); border: 1px solid rgba(0,229,160,.2);
  padding: 3px 9px; border-radius: 5px;
}
.fc-range-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px; background: var(--fc-line);
  outline: none; transition: background .15s;
}
.fc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--fc-mint); border: 2.5px solid var(--fc-white);
  box-shadow: 0 2px 6px rgba(0,229,160,.4); cursor: pointer;
  transition: transform .1s;
}
.fc-range-slider::-webkit-slider-thumb:hover { transform: scale(1.15) }
.fc-slider-limits {
  display: flex; justify-content: space-between; font-size: .68rem;
  color: var(--fc-slate); margin-top: 6px; font-family: 'Geist Mono', monospace;
}

.fc-calc-info-box {
  background: rgba(0,180,216,.05); border: 1.5px solid rgba(0,180,216,.15);
  border-radius: 8px; padding: 14px 16px; display: flex; gap: 10px;
  font-size: .78rem; color: var(--fc-slate); line-height: 1.5;
}
.fc-info-icon { font-size: 1.1rem; line-height: 1 }

/* Resultados Derecha */
.fc-calc-results {
  background: var(--fc-white); border: 1.5px solid var(--fc-line);
  border-radius: var(--fc-r-lg); padding: 32px;
  box-shadow: var(--fc-shadow-lg);
}
.fc-results-title {
  font-size: 1.15rem; font-weight: 700; color: var(--fc-ink);
  margin-bottom: 20px;
}
.fc-results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px;
}
.fc-res-card {
  border-radius: 10px; padding: 16px; display: flex; flex-direction: column;
}
.fc-res-card--revenue {
  background: rgba(0,229,160,.05); border: 1.5px solid rgba(0,229,160,.12);
}
.fc-res-card--expenses {
  background: rgba(0,180,216,.05); border: 1.5px solid rgba(0,180,216,.12);
}
.fc-res-card__lbl { font-size: .74rem; font-weight: 600; color: var(--fc-slate); text-transform: uppercase; letter-spacing: .04em }
.fc-res-card__num {
  font-family: 'Geist Mono', monospace; font-size: 1.45rem; font-weight: 800;
  color: var(--fc-ink); margin: 6px 0 2px;
}
.fc-res-card--revenue .fc-res-card__num { color: #00B4D8 }
.fc-res-card__sub { font-size: .68rem; color: var(--fc-slate) }

/* Desglose de liquidación */
.fc-tax-breakdown {
  border-top: 1px solid var(--fc-line); border-bottom: 1px solid var(--fc-line);
  padding: 20px 0; margin-bottom: 24px;
}
.fc-breakdown-title { font-size: .88rem; font-weight: 700; color: var(--fc-ink); margin-bottom: 16px }
.fc-tax-item { margin-bottom: 16px }
.fc-tax-item:last-child { margin-bottom: 0 }
.fc-tax-item__header {
  display: flex; justify-content: space-between; font-size: .82rem;
  color: var(--fc-slate); margin-bottom: 6px;
}
.fc-tax-item__header strong {
  font-family: 'Geist Mono', monospace; font-size: .95rem; font-weight: 700; color: var(--fc-ink);
}
.fc-tax-bar-bg {
  height: 6px; background: var(--fc-bone); border-radius: 3px; overflow: hidden; margin-bottom: 6px;
}
.fc-tax-bar-fill {
  height: 100%; border-radius: 3px; transition: width .3s ease;
}
.fc-tax-bar-fill--iva { background: var(--fc-mint) }
.fc-tax-bar-fill--irpf { background: var(--fc-aqua) }
.fc-tax-details {
  display: flex; gap: 14px; font-size: .68rem; color: var(--fc-slate);
}

/* Beneficio Neto */
.fc-net-benefit {
  background: var(--fc-bone); border: 1px solid var(--fc-line);
  border-radius: 10px; padding: 20px;
}
.fc-benefit-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px;
}
.fc-benefit-header span { font-size: .86rem; font-weight: 700; color: var(--fc-ink) }
.fc-benefit-header strong {
  font-family: 'Geist Mono', monospace; font-size: 1.5rem; font-weight: 800;
  color: var(--fc-mint);
}
.fc-benefit-sub { font-size: .72rem; color: var(--fc-slate); margin-bottom: 16px }

.fc-pie-visual {
  display: flex; height: 24px; border-radius: 5px; overflow: hidden;
  font-family: 'Geist Mono', monospace; font-size: .64rem; font-weight: 600;
  color: #fff; text-align: center; line-height: 24px;
}
.fc-pie-segment { transition: flex .3s ease }
.fc-pie-segment--benefit { background: var(--fc-mint); color: #0A2540 }
.fc-pie-segment--taxes { background: #5A6B7B }
.fc-pie-segment--expenses { background: var(--fc-aqua) }

@media (max-width: 900px) {
  .fc-calc-layout { grid-template-columns: 1fr }
}

/* ═══ PRECIOS ═══════════════════════════════════════════════ */
.fc-price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; max-width: 860px; margin-inline: auto; margin-top: 16px;
  align-items: stretch;
}
.fc-price-card {
  background: var(--fc-white); border: 1.5px solid var(--fc-line);
  border-radius: var(--fc-r-lg); padding: 38px 32px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  color: var(--fc-ink);
}
.fc-price-card:hover { transform: translateY(-4px); box-shadow: var(--fc-shadow-lg) }
.fc-price-card.is-feat {
  border-color: var(--fc-mint); background: #0d1929; color: #fff;
  transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,229,160,.18);
}
.fc-price-tag {
  font-family: 'Geist Mono', monospace; font-size: .66rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--fc-slate); margin-bottom: 10px;
}
.fc-price-card.is-feat .fc-price-tag { color: var(--fc-mint) }
.fc-price-card h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 2px }
.fc-price-card.is-feat h3 { color: #fff }
.fc-price-promo {
  font-family: 'Geist Mono', monospace; font-size: .64rem; font-weight: 700;
  color: var(--fc-mint); background: rgba(0,229,160,.1); border-radius: 4px;
  padding: 3px 8px; display: inline-block; align-self: flex-start; margin: 8px 0 12px;
}
.fc-price-num {
  font-size: 3rem; font-weight: 800; letter-spacing: -.05em;
  color: var(--fc-ink); line-height: 1; margin: 6px 0 4px;
}
.fc-price-num small { font-size: .95rem; font-weight: 400; letter-spacing: 0 }
.fc-price-card.is-feat .fc-price-num { background: var(--fc-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.fc-price-standard { font-size: .74rem; color: var(--fc-slate); margin-bottom: 22px }

.fc-price-list { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px }
.fc-price-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .845rem; line-height: 1.4; color: var(--fc-slate) }
.fc-price-list li::before { content: '✓'; color: var(--fc-mint); font-weight: 700; margin-top: 1px; flex-shrink: 0 }
.fc-price-card.is-feat .fc-price-list li { color: rgba(255,255,255,.8) }

.fc-price-cta {
  display: block; text-align: center;
  padding: 14px; border-radius: 9px;
  font-weight: 700; font-size: .92rem;
  background: var(--fc-ink); color: #fff;
  transition: background .2s;
}
.fc-price-cta:hover { background: #1a3a5c }
.fc-price-card.is-feat .fc-price-cta { background: var(--fc-mint); color: var(--fc-ink) }
.fc-price-card.is-feat .fc-price-cta:hover { background: #00c98d }

@media (max-width: 750px) {
  .fc-price-grid { grid-template-columns: 1fr; max-width: 420px }
  .fc-price-card.is-feat { transform: none }
}

/* ═══ FAQ ═══════════════════════════════════════════════════ */
.fc-faq { max-width: 740px; margin-inline: auto }
.fc-faq-item { border-bottom: 1px solid var(--fc-line) }
.fc-faq-item:first-child { border-top: 1px solid var(--fc-line) }
.fc-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; cursor: pointer; width: 100%; text-align: left;
  font-size: .95rem; font-weight: 600; color: var(--fc-ink);
  background: none; border: none; font-family: inherit;
}
.fc-faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--fc-bone); color: var(--fc-slate); font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s, color .25s;
}
.fc-faq-item.is-open .fc-faq-icon { transform: rotate(45deg); background: var(--fc-mint); color: var(--fc-ink) }
.fc-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease }
.fc-faq-item.is-open .fc-faq-a { grid-template-rows: 1fr }
.fc-faq-a-inner { overflow: hidden }
.fc-faq-a-inner p { padding-bottom: 20px; font-size: .87rem; color: var(--fc-slate); line-height: 1.7 }

/* ═══ CONTACTO ══════════════════════════════════════════════ */
.fc-cta-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.fc-cta-info .fc-h2 { margin-bottom: 16px }
.fc-cta-info p { color: var(--fc-slate); line-height: 1.68; margin-bottom: 28px }
.fc-cta-guarantee {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: rgba(0,229,160,.06);
  border: 1px solid rgba(0,229,160,.2); border-radius: 10px;
  font-size: .82rem; color: var(--fc-slate); line-height: 1.5;
}
.fc-cta-guarantee__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px }

.fc-cform {
  background: var(--fc-white); border: 1px solid var(--fc-line);
  border-radius: var(--fc-r-lg); padding: 38px; box-shadow: var(--fc-shadow);
  color: var(--fc-ink);
}
.fc-cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.fc-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px }
.fc-field label { font-size: .8rem; font-weight: 600; color: var(--fc-ink) }
.fc-field input, .fc-field select, .fc-field textarea {
  padding: 12px 15px; border: 1.5px solid var(--fc-line); border-radius: 8px;
  font-size: .93rem; font-family: inherit; color: var(--fc-ink);
  background: var(--fc-white); outline: none; transition: border-color .15s;
}
.fc-field input:focus, .fc-field select:focus, .fc-field textarea:focus { border-color: var(--fc-mint) }
.fc-field textarea { resize: vertical; min-height: 90px }
.fc-cform-submit {
  width: 100%; background: var(--fc-mint); color: #0A2540;
  padding: 14px; border-radius: 9px; border: none;
  font-size: .95rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.fc-cform-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(0,229,160,.3) }
.fc-cform-notice { font-size: .73rem; color: var(--fc-slate); text-align: center; margin-top: 8px }
.fc-cform-success { display: none; text-align: center; padding: 20px 0 }
.fc-cform-success.is-show { display: block }
.fc-cform-success__icon { font-size: 3rem; margin-bottom: 12px }
.fc-cform-success h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--fc-mint) }
.fc-cform-success p { font-size: .87rem; color: var(--fc-slate); line-height: 1.6 }

@media (max-width: 900px) {
  .fc-cta-layout { grid-template-columns: 1fr }
  .fc-cform { padding: 26px }
  .fc-cform-row { grid-template-columns: 1fr }
}
