/* ===========================================================
   La carga invisible — Landing v2
   Brand palette pulled from the leaf logo:
     terracotta  #B16850
     peach       #DD9272
     sage        #8FA89A
     mist        #BCC9CC
     dusty-blue  #91A3B0
   Fresh feel: Instrument Serif + Manrope, animated mesh
   gradients, floating petals, color-shifting accents.
   =========================================================== */

.lci {
  /* Brand */
  --terracotta:  #B16850;
  --terracotta-d:#8E4F3A;
  --peach:       #DD9272;
  --peach-l:     #ECB497;
  --sage:        #8FA89A;
  --sage-d:      #6D8A7B;
  --mist:        #BCC9CC;
  --dusty:       #91A3B0;
  --dusty-d:     #6F8392;

  /* Neutrals */
  --paper:       #FAF7F2;
  --paper-warm:  #F5EFE5;
  --paper-cool:  #F0F4F3;
  --ink:         #1A1F2E;
  --ink-soft:    #3A4356;
  --muted:       #6B7385;
  --rule:        rgba(26,31,46,.10);
  --rule-strong: rgba(26,31,46,.20);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(26,31,46,.05), 0 2px 10px rgba(26,31,46,.04);
  --shadow-md: 0 6px 18px rgba(26,31,46,.07), 0 16px 36px rgba(26,31,46,.06);
  --shadow-lg: 0 14px 36px rgba(26,31,46,.12), 0 36px 80px rgba(26,31,46,.10);
  --shadow-color: 0 12px 30px rgba(177,104,80,.25);

  /* Fonts */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw:   1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
.lci { font-family: var(--font-body); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; line-height: 1.6; font-weight: 400; }
.lci img { display: block; max-width: 100%; }
.lci p { margin: 0 0 1em; text-wrap: pretty; }
.lci h1, .lci h2, .lci h3, .lci h4 {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.02; text-wrap: balance;
}
.lci a { color: inherit; }
.lci button { font-family: inherit; cursor: pointer; }
.lci-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; }

/* ---------- Eyebrow / labels ---------- */
.lci-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta);
}
.lci-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}

/* ---------- Buttons ---------- */
.lci-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; letter-spacing: 0.005em;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.lci-btn--primary { background: var(--ink); color: var(--paper); }
.lci-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(26,31,46,.22); background: #0d1220; }
.lci-btn--accent { background: linear-gradient(120deg, var(--terracotta), var(--peach) 90%); color: #fff !important; }
.lci-btn--accent svg { color: #fff; }
.lci-btn--accent:hover { transform: translateY(-3px); box-shadow: var(--shadow-color); color: #fff !important; }
.lci-btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.lci-btn--ghost:hover { border-color: var(--ink); background: rgba(26,31,46,.04); }
.lci-btn--wa { background: #25D366 !important; color: #fff !important; }
.lci-btn--wa svg { color: #fff !important; fill: #fff !important; }
.lci-btn--wa:hover { background: #1ebe5a !important; color: #fff !important; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(37,211,102,.30); }
.lci-btn--sage  { background: var(--sage-d) !important; color: #fff !important; }
.lci-btn--sage svg { color: #fff !important; }
.lci-btn--sage:hover { background: #5b7768 !important; color: #fff !important; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(109,138,123,.32); }
.lci-btn--dusty { background: var(--dusty-d) !important; color: #fff !important; }
.lci-btn--dusty svg { color: #fff !important; }
.lci-btn--dusty:hover { background: #5c6f7e !important; color: #fff !important; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(111,131,146,.32); }
.lci-btn--lg { padding: 18px 32px; font-size: 15px; }
.lci-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
/* Shine sweep on hover */
.lci-btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.30) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s ease;
}
.lci-btn:hover::after { transform: translateX(120%); }

/* ---------- Animated mesh BG (shared) ---------- */
.lci-mesh {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.lci-mesh-blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  mix-blend-mode: multiply; opacity: .55;
  animation: lciFloat 18s ease-in-out infinite;
}
.lci-mesh-blob.b1 { width: 520px; height: 520px; background: var(--peach);     top: -10%; left: -8%; }
.lci-mesh-blob.b2 { width: 460px; height: 460px; background: var(--sage);      bottom: -12%; right: -6%; animation-duration: 24s; animation-delay: -6s; }
.lci-mesh-blob.b3 { width: 380px; height: 380px; background: var(--mist);      top: 30%; right: 18%; animation-duration: 30s; animation-delay: -12s; }
.lci-mesh-blob.b4 { width: 320px; height: 320px; background: var(--terracotta); bottom: 8%; left: 28%; opacity: .35; animation-duration: 26s; animation-delay: -4s; }
@keyframes lciFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.08); }
  66%     { transform: translate(-30px,40px) scale(.94); }
}

/* ---------- Floating petals (decorative) ---------- */
.lci-petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.lci-petal {
  position: absolute; width: 56px; height: 78px;
  background: var(--c, var(--sage)); opacity: .14;
  border-radius: 50% 50% 50% 50% / 90% 90% 10% 10%;
  transform-origin: center;
  animation: lciPetalDrift var(--dur, 22s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}
@keyframes lciPetalDrift {
  0%,100% { transform: translate(0, 0) rotate(var(--r0, 0deg)); }
  50%     { transform: translate(var(--tx, 30px), var(--ty, -30px)) rotate(var(--r1, 25deg)); }
}

/* ---------- HERO ---------- */
.lci-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  padding: clamp(56px, 9vw, 110px) 0 clamp(60px, 9vw, 120px);
}
.lci-hero-grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.lci-hero-copy { position: relative; }
.lci-hero h1 {
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 400; letter-spacing: -0.025em; line-height: 0.92;
  margin-top: 24px;
}
.lci-hero h1 .w-la       { color: var(--ink); }
.lci-hero h1 .w-carga    {
  font-style: italic;
  background: linear-gradient(95deg, var(--terracotta) 0%, var(--peach) 55%, var(--sage) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: lciGradShift 8s ease-in-out infinite;
}
.lci-hero h1 .w-invisible { color: var(--ink); font-style: italic; }
@keyframes lciGradShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.lci-hero-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2vw, 26px); color: var(--ink-soft);
  margin-top: 24px; max-width: 30ch; line-height: 1.35;
}
.lci-hero-meta {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px;
}
.lci-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--rule); border-radius: 999px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--ink-soft);
}
.lci-pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--c, var(--terracotta));
  box-shadow: 0 0 0 0 var(--c, var(--terracotta));
  animation: lciDot 2.2s ease-out infinite;
}
@keyframes lciDot {
  0%   { box-shadow: 0 0 0 0 currentColor; }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.lci-hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero portrait */
.lci-hero-visual { position: relative; }
.lci-hero-portrait {
  position: relative; aspect-ratio: 4/5; width: 100%;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 0%, var(--peach-l), transparent 55%),
    radial-gradient(circle at 100% 60%, var(--mist), transparent 60%),
    linear-gradient(180deg, var(--paper-warm), var(--paper-cool));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.lci-hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.4s cubic-bezier(.2,.6,.2,1);
}
.lci-hero-portrait--loaded img { transform: scale(1); }
.lci-hero-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 50% 100%, rgba(26,31,46,.18), transparent 60%);
  pointer-events: none;
}
.lci-hero-portrait-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: inherit; pointer-events: none;
}

/* Floating logo orbit around portrait */
.lci-hero-orbit {
  position: absolute; pointer-events: none;
  width: 100px; height: 100px; opacity: 0;
  transition: opacity 1.2s ease .4s;
  animation: lciSpin 20s linear infinite;
}
.lci-hero-portrait--loaded .lci-hero-orbit { opacity: 1; }
.lci-hero-orbit img { width: 100%; height: 100%; object-fit: contain; }
.lci-hero-orbit.o1 { top: -32px; left: -28px; width: 110px; height: 110px; animation-duration: 26s; }
.lci-hero-orbit.o2 { bottom: 12%; right: -34px; width: 78px; height: 78px; animation-duration: 32s; animation-direction: reverse; }
@keyframes lciSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.lci-hero-tag {
  position: absolute; left: -22px; bottom: 28px;
  background: var(--ink); color: var(--paper);
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; letter-spacing: 0.01em;
  box-shadow: var(--shadow-md);
}
.lci-hero-tag b {
  font-family: var(--font-body); font-weight: 700; font-style: normal;
  display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--peach-l); margin-bottom: 2px;
}

/* Hero dates row */
.lci-hero-dates {
  position: relative; z-index: 3;
  margin-top: clamp(40px, 6vw, 64px); padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 56px);
}
.lci-mini {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rule);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.lci-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0,0,0,0); }
.lci-mini-date {
  font-family: var(--font-display);
  border-radius: 14px; padding: 8px 12px 10px; text-align: center; min-width: 82px;
  color: #fff;
  position: relative;
}
.lci-mini-date.--presencial { background: linear-gradient(160deg, var(--terracotta), var(--peach)); }
.lci-mini-date.--online     { background: linear-gradient(160deg, var(--dusty-d), var(--sage-d)); }
.lci-mini-date b { display: block; font-size: 34px; line-height: 1; font-weight: 400; }
.lci-mini-date small { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 4px; opacity: .9; }
.lci-mini-info { line-height: 1.4; }
.lci-mini-info strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); }
.lci-mini-info span { font-size: 13px; color: var(--muted); }
.lci-mini-cta {
  color: var(--ink); font-weight: 700; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  background: var(--paper); padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--rule); transition: all .25s ease;
  white-space: nowrap;
}
.lci-mini-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }


/* ---------- MARQUEE (scrolling band) ---------- */
.lci-marquee {
  background: var(--ink); color: var(--paper);
  padding: 14px 0; overflow: hidden; position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lci-marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: lciScroll 38s linear infinite;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
}
.lci-marquee-track span {
  display: inline-flex; align-items: center; gap: 40px;
  color: var(--paper); white-space: nowrap;
}
.lci-marquee-track i {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
}
@keyframes lciScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---------- QUOTE ---------- */
.lci-quote {
  position: relative; padding: clamp(80px, 11vw, 160px) 0; overflow: hidden;
  background:
    radial-gradient(60% 70% at 80% 0%, rgba(188,201,204,.30), transparent 65%),
    radial-gradient(50% 60% at 0% 90%, rgba(221,146,114,.18), transparent 60%),
    var(--paper);
}
.lci-quote-inner { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); }
.lci-quote h2 {
  font-size: clamp(34px, 5.5vw, 72px); font-style: italic; font-weight: 400; line-height: 1.1;
}
.lci-quote h2 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(95deg, var(--terracotta), var(--peach) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lci-quote p {
  margin-top: 32px; font-size: clamp(16px, 1.5vw, 19px); color: var(--ink-soft);
  max-width: 62ch; margin-left: auto; margin-right: auto; line-height: 1.75;
}


/* ---------- VIDEO (vertical) ---------- */
.lci-video {
  position: relative; overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 0;
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
}
.lci-video-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.05fr;
  align-items: center; gap: clamp(32px, 5vw, 80px);
}
.lci-video-copy { max-width: 520px; }
.lci-video-copy h2 { font-size: clamp(36px, 4.6vw, 60px); margin-top: 16px; line-height: 1.04; }
.lci-video-copy h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--terracotta), var(--peach) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lci-video-copy > p { margin-top: 20px; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }

.lci-video-bullets { margin: 28px 0 32px; padding: 0; list-style: none; display: grid; gap: 10px; }
.lci-video-bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(255,255,255,.55); backdrop-filter: blur(6px);
  border: 1px solid var(--rule);
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.lci-video-bullets li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--c, var(--terracotta)); margin-top: 1px; }
.lci-video-bullets li strong { font-weight: 700; }

.lci-video-stage {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 600px;
}
.lci-video-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9/16;
  border-radius: 32px; overflow: hidden; background: #0a0810;
  box-shadow: var(--shadow-lg);
}
.lci-video-frame::before {
  content: ""; position: absolute; inset: -4px; z-index: -1;
  background: conic-gradient(from 0deg, var(--terracotta), var(--peach), var(--sage), var(--dusty), var(--terracotta));
  filter: blur(22px); opacity: .45;
  animation: lciSpin 18s linear infinite;
  border-radius: inherit;
}
.lci-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lci-video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(26,31,46,0) 40%, rgba(26,31,46,.55) 100%);
  border: 0; cursor: pointer; transition: opacity .3s ease;
}
.lci-video-play[hidden] { display: none; }
.lci-video-play-btn {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--peach));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(177,104,80,.50);
  transition: transform .2s ease;
  animation: lciPulse 2.4s ease-out infinite;
}
.lci-video-play:hover .lci-video-play-btn { transform: scale(1.08); }
.lci-video-play svg { width: 32px; height: 32px; margin-left: 5px; }

/* Floating decorative chips around the phone */
.lci-video-chip {
  position: absolute; z-index: 3;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  animation: lciBob 5s ease-in-out infinite;
}
.lci-video-chip small {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.lci-video-chip-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c, var(--terracotta));
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c, var(--terracotta)) 20%, transparent);
}
.lci-video-chip.c1 { top: 6%; left: -10px; animation-delay: 0s; }
.lci-video-chip.c2 { top: 38%; right: -10px; animation-delay: -1.6s; }
.lci-video-chip.c3 { bottom: 8%; left: -16px; animation-delay: -3.2s; }
@keyframes lciBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) { .lci-video-chip { animation: none; } }
@keyframes lciPulse {
  0%   { box-shadow: 0 18px 40px rgba(177,104,80,.50), 0 0 0 0 rgba(177,104,80,.55); }
  70%  { box-shadow: 0 18px 40px rgba(177,104,80,.50), 0 0 0 28px rgba(177,104,80,0); }
  100% { box-shadow: 0 18px 40px rgba(177,104,80,.50), 0 0 0 0 rgba(177,104,80,0); }
}


/* ---------- Section header ---------- */
.lci-shead { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto clamp(40px, 5vw, 68px); }
.lci-shead h2 { font-size: clamp(38px, 5vw, 64px); margin-top: 16px; line-height: 1.04; }
.lci-shead h2 em { font-style: italic; color: var(--terracotta); }
.lci-shead p { margin-top: 18px; font-size: 17px; color: var(--ink-soft); line-height: 1.7; }


/* ---------- PILLARS ---------- */
.lci-pillars { position: relative; overflow: hidden; padding: clamp(78px, 11vw, 140px) 0; background: var(--paper-cool); }
.lci-pillars-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lci-pillar {
  position: relative; overflow: hidden;
  background: var(--paper); padding: 36px 28px 32px;
  border-radius: 24px;
  border: 1px solid var(--rule);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, border-color .45s ease;
  display: flex; flex-direction: column;
  isolation: isolate;
}
.lci-pillar::before {
  content: ""; position: absolute; inset: auto -40% -40% auto;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--c, var(--terracotta));
  opacity: 0; transform: scale(.6);
  transition: opacity .55s ease, transform .7s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
  filter: blur(8px);
}
.lci-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.lci-pillar:hover::before { opacity: .25; transform: scale(1); }
.lci-pillar-num {
  font-family: var(--font-display); font-style: italic; font-size: 64px;
  line-height: 1; margin-bottom: 18px; font-weight: 400;
  background: linear-gradient(140deg, var(--c, var(--terracotta)), color-mix(in oklab, var(--c, var(--terracotta)) 60%, white));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lci-pillar h3 { font-family: var(--font-display); font-size: 28px; line-height: 1.1; margin-bottom: 10px; font-weight: 400; }
.lci-pillar p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin: 0; }


/* ---------- ABOUT DAVID ---------- */
.lci-about { position: relative; overflow: hidden; padding: clamp(82px, 11vw, 140px) 0; background: var(--paper); }
.lci-about-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.lci-about-img {
  position: relative; aspect-ratio: 4/5; width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 0%, var(--peach-l), transparent 50%),
    radial-gradient(circle at 100% 100%, var(--mist), transparent 55%),
    var(--paper-warm);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.lci-about-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 28%;
  mix-blend-mode: multiply;
}
.lci-about-img--color {
  background: var(--paper-warm);
}
.lci-about-img--color img {
  mix-blend-mode: normal;
  object-position: center top;
}
.lci-about-img-leaf {
  position: absolute; right: -18px; top: -18px; width: 96px; height: 96px; opacity: .9;
  animation: lciSpin 32s linear infinite;
}
.lci-about-img-leaf img { width: 100%; height: 100%; object-fit: contain; }
.lci-about-img-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.lci-about-img-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage-d); }

.lci-about h2 { font-size: clamp(36px, 4.6vw, 60px); margin-top: 18px; }
.lci-about-roles {
  margin: 10px 0 0; font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta);
}
.lci-about-bio { margin-top: 24px; font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); }
.lci-about-bio p { margin-bottom: 18px; }
.lci-about-bio strong { color: var(--ink); font-weight: 700; }
.lci-about-pull {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.4;
  padding: 22px 26px; margin: 22px 0 0;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(177,104,80,.10), rgba(143,168,154,.16));
  color: var(--ink);
}
.lci-about-pull span {
  background: linear-gradient(95deg, var(--terracotta), var(--peach) 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Specialization tags */
.lci-about-tags {
  margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px;
}
.lci-about-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  background: var(--paper-cool); color: var(--ink);
  border: 1px solid var(--rule);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.lci-about-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c, var(--terracotta));
}
.lci-about-tag:hover { transform: translateY(-2px); border-color: var(--c, var(--terracotta)); background: var(--paper); }

.lci-about-credentials {
  margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.lci-cred b {
  display: block; font-family: var(--font-display); font-size: 44px; line-height: 1; font-weight: 400;
  background: linear-gradient(140deg, var(--c, var(--terracotta)), color-mix(in oklab, var(--c, var(--terracotta)) 60%, var(--ink)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lci-cred span { display: block; margin-top: 6px; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }


/* ---------- KINTU — three worlds ---------- */
.lci-kintu {
  margin-top: clamp(60px, 8vw, 96px);
  padding: clamp(36px, 5vw, 56px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(177,104,80,.06), rgba(143,168,154,.10) 50%, rgba(145,163,176,.10));
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.lci-kintu::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px;
  background: url('assets/logo-leaves.webp') center/contain no-repeat;
  opacity: .08;
  animation: lciSpin 60s linear infinite;
  pointer-events: none;
}
.lci-kintu-head { position: relative; z-index: 2; max-width: 720px; }
.lci-kintu-head h3 {
  font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400; line-height: 1.1; margin-top: 14px; color: var(--ink);
}
.lci-kintu-head p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; max-width: 60ch; }
.lci-kintu-head p em {
  font-style: italic;
  background: linear-gradient(95deg, var(--terracotta), var(--peach) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lci-kintu-grid {
  position: relative; z-index: 2;
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.lci-kintu-card {
  position: relative;
  padding: 26px 24px;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--c, var(--terracotta));
  transition: transform .35s ease, box-shadow .35s ease;
}
.lci-kintu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lci-kintu-num {
  display: inline-block;
  font-family: var(--font-display); font-style: italic; font-size: 18px;
  font-weight: 400; color: var(--c, var(--terracotta));
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lci-kintu-card h4 {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  line-height: 1.2; margin: 0 0 6px; color: var(--ink);
}
.lci-kintu-card p { margin: 0 0 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.lci-kintu-meta {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c, var(--terracotta));
  padding-top: 10px; border-top: 1px dashed var(--rule);
}


/* ---------- OFFERS ---------- */
.lci-offers { position: relative; overflow: hidden; padding: clamp(80px, 11vw, 140px) 0; background: var(--paper-cool); }
.lci-offers-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.lci-offer {
  position: relative;
  background: var(--paper);
  padding: 0;
  border-radius: 28px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
  overflow: hidden;
  isolation: isolate;
}
.lci-offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Banner / header */
.lci-offer-banner {
  position: relative;
  padding: 26px clamp(24px, 3vw, 36px) 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--peach) 100%);
  overflow: hidden;
}
.lci-offer.--online .lci-offer-banner {
  background: linear-gradient(135deg, var(--dusty-d) 0%, var(--sage-d) 100%);
}
.lci-offer-banner::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.lci-offer-banner::after {
  content: ""; position: absolute; right: -110px; bottom: -100px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.lci-offer-mode {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(255,255,255,.18);
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.lci-offer-mode svg { width: 14px; height: 14px; }
.lci-offer-title { position: relative; z-index: 2; margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lci-offer-title h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 3.2vw, 40px); line-height: 1.0; color: #fff;
  letter-spacing: -0.01em;
}
.lci-offer-title-meta { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: .85; line-height: 1.4; text-align: right; font-weight: 600; }

/* Date row */
.lci-offer-date {
  position: relative; z-index: 2;
  display: flex; gap: 18px; align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.lci-offer-datebox {
  text-align: center; min-width: 76px;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 8px 14px 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.lci-offer-datebox b { display: block; font-family: var(--font-display); font-size: 36px; line-height: 1; font-weight: 400; color: var(--ink); }
.lci-offer-datebox small { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 4px; color: var(--muted); font-weight: 700; }
.lci-offer-when { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.92); }
.lci-offer-when strong { display: block; font-size: 16px; color: #fff; margin-bottom: 4px; font-weight: 700; }

/* Body */
.lci-offer-body {
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 36px) clamp(28px, 3vw, 36px);
  display: flex; flex-direction: column; flex: 1;
}
.lci-offer-details { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.lci-offer-details li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
}
.lci-offer-details li svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  padding: 3px; border-radius: 50%;
  background: rgba(177,104,80,.12); color: var(--terracotta);
}
.lci-offer.--online .lci-offer-details li svg { background: rgba(143,168,154,.16); color: var(--sage-d); }
.lci-offer-details li strong { color: var(--ink); font-weight: 700; }

/* Price row */
.lci-offer-price {
  margin-top: auto; padding-top: 24px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  border-top: 1px dashed var(--rule);
  margin-top: 28px;
}
.lci-offer-price-num { font-family: var(--font-display); font-size: 54px; font-weight: 400; line-height: 1; color: var(--ink); }
.lci-offer-price-num small { font-size: 20px; font-family: var(--font-body); font-weight: 600; color: var(--muted); margin-right: 4px; vertical-align: top; }
.lci-offer-price-num .currency { font-size: 14px; font-family: var(--font-body); font-weight: 700; color: var(--muted); margin-left: 6px; letter-spacing: 0.05em; }
.lci-offer-price-label { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-align: right; line-height: 1.5; font-weight: 700; }

.lci-offer-ctas { margin-top: 22px; display: grid; gap: 10px; }
.lci-offer-foot { margin-top: 18px; font-size: 12.5px; color: var(--muted); line-height: 1.5; text-align: center; }
.lci-offer-foot strong { color: var(--ink); }
.lci-offer-foot a { color: var(--terracotta); text-decoration: none; font-weight: 700; border-bottom: 1px solid currentColor; }
.lci-offer.--online .lci-offer-foot a { color: var(--sage-d); }


/* ---------- WHO ---------- */
.lci-who { position: relative; overflow: hidden; padding: clamp(80px, 11vw, 140px) 0; background: var(--paper); }
.lci-who-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.lci-who h2 { font-size: clamp(34px, 4.4vw, 56px); margin-top: 18px; }
.lci-who h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--terracotta), var(--peach) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lci-who p { margin-top: 22px; color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.lci-who-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lci-who-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: var(--paper-cool); border-radius: 16px;
  font-size: 16px; line-height: 1.5; color: var(--ink);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  border: 1px solid transparent;
}
.lci-who-list li:hover { transform: translateX(4px); background: var(--paper); border-color: rgba(177,104,80,.30); }
.lci-who-list li svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  padding: 4px; border-radius: 50%;
  background: rgba(177,104,80,.12); color: var(--terracotta);
}


/* ---------- FAQ ---------- */
.lci-faq { position: relative; overflow: hidden; padding: clamp(80px, 11vw, 140px) 0; background: var(--paper-cool); }
.lci-faq-list { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.lci-faq-item {
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.lci-faq-item[open] { border-color: rgba(177,104,80,.30); box-shadow: var(--shadow-sm); }
.lci-faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
  position: relative;
}
.lci-faq-item summary::-webkit-details-marker { display: none; }
.lci-faq-item summary::after {
  content: ""; position: absolute; right: 26px; top: 50%;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--peach));
  transform: translateY(-50%);
  transition: transform .3s ease;
}
.lci-faq-item summary::before {
  content: "+"; position: absolute; right: 33px; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 18px; font-family: var(--font-body); font-weight: 400; z-index: 1;
  transition: transform .3s ease;
}
.lci-faq-item[open] summary::before { content: "−"; }
.lci-faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.lci-faq-answer { padding: 0 26px 26px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; max-width: 62ch; }


/* ---------- FINAL CTA ---------- */
.lci-final {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  padding: clamp(80px, 11vw, 150px) 0;
}
.lci-final-aurora {
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(35% 45% at 80% 20%, rgba(221,146,114,.45), transparent 60%),
    radial-gradient(35% 45% at 15% 75%, rgba(143,168,154,.40), transparent 60%),
    radial-gradient(30% 40% at 60% 90%, rgba(145,163,176,.35), transparent 60%),
    radial-gradient(30% 35% at 30% 15%, rgba(177,104,80,.35), transparent 60%);
  animation: lciAurora 16s ease-in-out infinite alternate;
  filter: blur(10px);
}
@keyframes lciAurora {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-3%, 4%) scale(1.05); }
}
.lci-final-inner { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.lci-final .lci-eyebrow { color: var(--peach-l); }
.lci-final h2 { color: var(--paper); font-size: clamp(44px, 6.5vw, 90px); margin-top: 20px; letter-spacing: -0.02em; }
.lci-final h2 em {
  font-style: italic;
  background: linear-gradient(95deg, var(--peach), var(--mist) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lci-final p { margin-top: 22px; font-size: 18px; color: rgba(250,247,242,.78); line-height: 1.75; max-width: 56ch; margin-left: auto; margin-right: auto; }
.lci-final-ctas { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lci-final-ctas .lci-btn--primary { background: var(--paper); color: var(--ink); }
.lci-final-ctas .lci-btn--primary:hover { background: #fff; }
.lci-final-foot {
  margin-top: 50px; padding-top: 32px; border-top: 1px solid rgba(250,247,242,.16);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
  font-size: 13px; color: rgba(250,247,242,.65); letter-spacing: 0.02em;
}
.lci-final-foot span { display: inline-flex; align-items: center; gap: 8px; }
.lci-final-foot a { color: var(--peach-l); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.lci-final-foot a:hover { border-color: var(--peach-l); }
.lci-final-foot img { height: 26px; opacity: .9; }


/* ---------- STICKY BAR ---------- */
.lci-sticky {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: rgba(26,31,46,.96); color: var(--paper);
  backdrop-filter: blur(12px);
  border-radius: 999px; padding: 10px 10px 10px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px rgba(26,31,46,.30);
  max-width: 720px; margin: 0 auto;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.lci-sticky.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lci-sticky-label { font-size: 13px; flex: 1; line-height: 1.3; }
.lci-sticky-label b { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 400; }
.lci-sticky-label span { color: rgba(250,247,242,.6); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.lci-sticky .lci-btn { padding: 11px 18px; font-size: 13.5px; }


/* ---------- REVEAL on scroll ---------- */
.lci-reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.lci-reveal.is-in { opacity: 1; transform: translateY(0); }
.lci-reveal[data-d="1"] { transition-delay: .08s; }
.lci-reveal[data-d="2"] { transition-delay: .16s; }
.lci-reveal[data-d="3"] { transition-delay: .24s; }
.lci-reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .lci-reveal, .lci-reveal[data-d] { opacity: 1; transform: none; transition: none; }
  .lci-mesh-blob, .lci-petal, .lci-final-aurora, .lci-hero-orbit, .lci-video-frame::before, .lci-video-play-btn, .lci-pill::before, .lci-marquee-track, .lci-offer::before, .w-carga { animation: none !important; }
}


/* ---------- Responsive ---------- */

/* Wide tablet / small desktop — pillars don't squeeze, refine spacing */
@media (max-width: 1100px) {
  .lci-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .lci-hero h1 { font-size: clamp(48px, 8vw, 92px); }
}

/* Tablet — main 2-col layouts collapse */
@media (max-width: 900px) {
  .lci-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lci-hero-visual { max-width: 460px; margin: 0 auto; }
  .lci-hero-portrait { aspect-ratio: 4/4.4; border-radius: 160px 160px 20px 20px; }
  .lci-hero-tag { left: -12px; padding: 10px 16px; font-size: 16px; }
  .lci-hero-dates { grid-template-columns: 1fr; }
  .lci-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .lci-about-img { max-width: 440px; margin: 0 auto; }
  .lci-video-layout { grid-template-columns: 1fr; gap: 28px; }
  .lci-video-stage { min-height: 0; margin-top: 8px; }
  .lci-video-copy { margin: 0 auto; text-align: left; max-width: 100%; }
  .lci-video-frame { width: min(100%, 320px); }
  .lci-video-chip { font-size: 12px; padding: 10px 12px; }
  .lci-video-chip.c1 { left: 0; top: 4%; }
  .lci-video-chip.c2 { right: 0; }
  .lci-video-chip.c3 { left: -4px; bottom: 4%; }
  .lci-offers-grid { grid-template-columns: 1fr; gap: 20px; }
  .lci-offer-title { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lci-offer-title-meta { text-align: left; }
  .lci-who-grid { grid-template-columns: 1fr; gap: 28px; }
  .lci-final h2 { font-size: clamp(40px, 7vw, 64px); }
}

/* Phone */
@media (max-width: 640px) {
  .lci { --gutter: 20px; }
  .lci-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .lci-pillar { padding: 28px 22px 26px; }
  .lci-pillar-num { font-size: 48px; margin-bottom: 14px; }
  .lci-hero { padding: 44px 0 60px; }
  .lci-hero h1 { font-size: clamp(46px, 14vw, 72px); }
  .lci-hero-sub { font-size: 18px; margin-top: 18px; }
  .lci-hero-meta { gap: 8px; }
  .lci-pill { font-size: 11.5px; padding: 7px 12px; }
  .lci-hero-cta { gap: 10px; }
  .lci-hero-cta .lci-btn { flex: 1 1 auto; min-width: 0; }

  .lci-marquee { padding: 11px 0; }
  .lci-marquee-track { font-size: 14px; gap: 28px; }
  .lci-marquee-track span { gap: 28px; }

  .lci-quote h2 { font-size: clamp(28px, 8vw, 44px); }
  .lci-quote p { font-size: 15.5px; }

  .lci-shead h2 { font-size: clamp(30px, 8vw, 44px); }

  .lci-about-img { max-width: 100%; border-radius: 18px; }
  .lci-about-roles { font-size: 12px; letter-spacing: 0.10em; }

  .lci-offer { border-radius: 22px; }
  .lci-offer-banner { padding: 22px 22px 20px; }
  .lci-offer-title h3 { font-size: 28px; }
  .lci-offer-datebox { min-width: 64px; padding: 6px 10px 8px; }
  .lci-offer-datebox b { font-size: 30px; }
  .lci-offer-when { font-size: 13px; }
  .lci-offer-when strong { font-size: 14.5px; }
  .lci-offer-body { padding: 22px; }
  .lci-offer-price-num { font-size: 44px; }
  .lci-offer-details li { font-size: 14px; }

  .lci-who-list li { padding: 16px 18px; font-size: 15px; }

  .lci-faq-item summary { padding: 18px 50px 18px 20px; font-size: 18px; }
  .lci-faq-item summary::after { right: 18px; width: 24px; height: 24px; }
  .lci-faq-item summary::before { right: 24px; font-size: 16px; }
  .lci-faq-answer { padding: 0 20px 22px; font-size: 14.5px; }

  .lci-final h2 { font-size: clamp(36px, 10vw, 56px); }
  .lci-final p { font-size: 16px; }
  .lci-final-ctas { flex-direction: column; align-items: stretch; }
  .lci-final-ctas .lci-btn { width: 100%; }
  .lci-final-foot { gap: 18px; font-size: 12px; flex-direction: column; align-items: center; }

  .lci-sticky { padding: 8px 8px 8px 14px; gap: 8px; bottom: 10px; left: 10px; right: 10px; }
  .lci-sticky-label b { font-size: 14px; }
  .lci-sticky-label span { display: none; }
  .lci-sticky .lci-btn { padding: 10px 14px; font-size: 12px; }

  .lci-mini { grid-template-columns: auto 1fr; gap: 12px; padding: 14px; }
  .lci-mini-cta { grid-column: 1 / -1; text-align: center; margin-top: 2px; }
  .lci-mini-info strong { font-size: 18px; }
  .lci-mini-info span { font-size: 12px; }
}

/* Tiny phones */
@media (max-width: 380px) {
  .lci-hero h1 { font-size: 44px; }
  .lci-offer-title h3 { font-size: 24px; }
  .lci-offer-price-num { font-size: 38px; }
  .lci-offer-ctas .lci-btn { font-size: 13px; padding: 14px 16px; }
}
